/PHP-7.2/Zend/ |
H A D | zend_smart_str.h | 28 #define smart_str_appends(dest, src) \ argument 30 #define smart_str_appendc(dest, c) \ argument 31 smart_str_appendc_ex((dest), (c), 0) 34 #define smart_str_append(dest, src) \ argument 35 smart_str_append_ex((dest), (src), 0) 38 #define smart_str_sets(dest, src) \ argument 105 ZSTR_LEN(dest->s) = new_len; in smart_str_appendc_ex() 110 memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); in smart_str_appendl_ex() 111 ZSTR_LEN(dest->s) = new_len; in smart_str_appendl_ex() 137 smart_str_free(dest); in smart_str_setl() [all …]
|
H A D | zend_smart_string.h | 110 dest->len = smart_string_alloc(dest, 1, persistent); in smart_string_appendc_ex() 111 dest->c[dest->len - 1] = ch; in smart_string_appendc_ex() 115 size_t new_len = smart_string_alloc(dest, len, persistent); in smart_string_appendl_ex() 116 memcpy(dest->c + dest->len, str, len); in smart_string_appendl_ex() 117 dest->len = new_len; in smart_string_appendl_ex() 124 smart_string_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); in smart_string_append_long_ex() 130 smart_string_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); in smart_string_append_unsigned_ex() 133 static zend_always_inline void smart_string_setl(smart_string *dest, char *src, size_t len) { in smart_string_setl() argument 134 dest->len = len; in smart_string_setl() 135 dest->a = len + 1; in smart_string_setl() [all …]
|
H A D | zend_API.h | 1129 *dest = 1; in zend_parse_arg_bool() 1131 *dest = 0; in zend_parse_arg_bool() 1134 *dest = 0; in zend_parse_arg_bool() 1150 *dest = 0; in zend_parse_arg_long() 1168 *dest = 0.0; in zend_parse_arg_double() 1180 *dest = NULL; in zend_parse_arg_str() 1195 *dest = NULL; in zend_parse_arg_string() 1207 (*dest && UNEXPECTED(CHECK_NULL_PATH(ZSTR_VAL(*dest), ZSTR_LEN(*dest))))) { in zend_parse_arg_path_str() 1234 *dest = arg; in zend_parse_arg_array() 1269 *dest = arg; in zend_parse_arg_object() [all …]
|
/PHP-7.2/ext/standard/ |
H A D | uuencode.c | 72 zend_string *dest; in php_uuencode() local 78 p = ZSTR_VAL(dest); in php_uuencode() 127 dest = zend_string_truncate(dest, p - ZSTR_VAL(dest), 0); in php_uuencode() 128 return dest; in php_uuencode() 136 zend_string *dest; in php_uudecode() local 139 p = ZSTR_VAL(dest); in php_uudecode() 190 ZSTR_VAL(dest)[ZSTR_LEN(dest)] = '\0'; in php_uudecode() local 192 return dest; in php_uudecode() 195 zend_string_free(dest); in php_uudecode() 221 zend_string *dest; in PHP_FUNCTION() local [all …]
|
/PHP-7.2/ext/gd/tests/ |
H A D | bug66005.phpt | 9 $dest = imagecreatetruecolor(150, 50); 10 $transparent = imagecolorallocatealpha($dest, 255, 255, 255, 127); 11 imagealphablending($dest, false); 12 imagefill($dest, 1, 1, $transparent); 13 imagesavealpha($dest, true); 24 imagecopy($dest, $png_palette, 0, 0, 0, 0, 50, 50); 25 imagecopy($dest, $png_24, 50, 0, 0, 0, 50, 50); 26 imagecopy($dest, $png_full, 100, 0, 0, 0, 50, 50); 29 test_image_equals_file(__DIR__ . '/bug66005.png', $dest);
|
H A D | bug24155.phpt | 12 $dest = dirname(realpath(__FILE__)) . '/bug24155.png'; 13 @unlink($dest); 18 imagepng($im, $dest); 20 $im2 = imagecreatefrompng($dest); 27 @unlink($dest);
|
H A D | bug27582_1.phpt | 10 $dest = dirname(realpath(__FILE__)) . '/bug27582.png'; 11 @unlink($dest); 18 imagepng($im, $dest); 20 $im2 = imagecreatefrompng($dest); 24 @unlink($dest);
|
H A D | bug36697-mb.phpt | 11 $dest = dirname(__FILE__) . "/36697私はガラスを食べられます.gif"; 19 imagegif($im, $dest); 21 $im = imagecreatefromgif($dest); 25 @unlink($dest);
|
H A D | bug36697.phpt | 11 $dest = dirname(__FILE__) . "/36697.gif"; 19 imagegif($im, $dest); 21 $im = imagecreatefromgif($dest); 25 @unlink($dest);
|
H A D | imagefilledpolygon_basic.phpt | 18 $dest = dirname(realpath(__FILE__)) . '/imagefilledpolygon.png'; 42 imagepng($image, $dest); 45 $image_in = imagecreatefrompng($dest); 66 $dest = dirname(realpath(__FILE__)) . '/imagefilledpolygon.png'; 67 @unlink($dest);
|
H A D | imagepolygon_basic.phpt | 20 $dest = dirname(realpath(__FILE__)) . '/imagepolygon.png'; 41 imagepng($image, $dest); 55 $dest = dirname(realpath(__FILE__)) . '/imagepolygon.png'; 56 @unlink($dest);
|
/PHP-7.2/ext/standard/tests/file/ |
H A D | stream_copy_to_stream.phpt | 13 $dest = fopen($new_file, 'w'); 15 fclose($src); fclose($dest); 25 $dest = fopen($new_file, 'w'); 27 fclose($src); fclose($dest); 40 $dest = fopen($new_file, 'w'); 42 fclose($src); fclose($dest); 55 $dest = fopen($new_file, 'w'); 57 fclose($src); fclose($dest); 72 fclose($src); fclose($dest); 88 fclose($src); fclose($dest); [all …]
|
H A D | copy_variation8.phpt | 10 /* Prototype: bool copy ( string $source, string $dest ); 11 Description: Makes a copy of the file source to dest. 50 foreach($dests as $dest) { 53 var_dump( copy($symlink, $dest) ); 54 var_dump( file_exists($dest) ); 55 var_dump( is_link($dest) ); //expected: bool(false) 56 var_dump( is_file($dest) ); //expected: bool(true) 58 unlink("$dest"); 60 var_dump( copy($hardlink, $dest) ); 61 var_dump( file_exists($dest) ); [all …]
|
H A D | copy_variation12.phpt | 10 /* Prototype: bool copy ( string $source, string $dest ); 11 Description: Makes a copy of the file source to dest. 23 $dest = $file_path."/copy_copy_variation12"; 25 var_dump( copy($src_dir, $dest) ); 27 var_dump( file_exists($dest) ); 30 var_dump( filesize($dest) );
|
H A D | bug38086.phpt | 13 $dest = fopen($new_file, 'w'); 14 var_dump(stream_copy_to_stream($src, $dest)); 15 fclose($src); fclose($dest); 27 $dest = fopen($new_file, 'w'); 28 var_dump(stream_copy_to_stream($src, $dest, 10000)); 29 fclose($src); fclose($dest);
|
H A D | copy_variation12-win32.phpt | 10 /* Prototype: bool copy ( string $source, string $dest ); 11 Description: Makes a copy of the file source to dest. 23 $dest = $file_path."/copy_copy_variation12"; 25 var_dump( copy($src_dir, $dest) ); 27 var_dump( file_exists($dest) );
|
H A D | copy_variation16-win32.phpt | 10 /* Prototype: bool copy ( string $source, string $dest ); 11 Description: Makes a copy of the file source to dest. 50 foreach($dests as $dest) { 57 var_dump( copy($src_file_name, $dest) ); 60 var_dump( file_exists($dest) ); 62 if( file_exists($dest) ){ 64 print($dest); 68 var_dump( filesize($dest) ); 71 unlink("$dest");
|
H A D | copy_variation6-win32.phpt | 10 /* Prototype: bool copy ( string $source, string $dest ); 11 Description: Makes a copy of the file source to dest. 48 foreach($dests as $dest) { 52 var_dump( copy($src_file_name, $dest) ); 55 var_dump( file_exists($dest) ); 57 if( file_exists($dest) ) { 59 print($dest); 67 var_dump( filesize($dest) ); 70 unlink("$dest");
|
/PHP-7.2/ext/zip/tests/ |
H A D | bug40228-mb.phpt | 7 $dest = dirname(__FILE__); 8 $arc_name = $dest . "/bug40228私はガラスを食べられます.zip"; 11 $zip->extractTo($dest); 12 if (is_dir($dest . '/test/empty')) { 14 rmdir($dest . '/test/empty'); 15 rmdir($dest . '/test');
|
H A D | bug40228.phpt | 7 $dest = dirname(__FILE__); 8 $arc_name = $dest . "/bug40228.zip"; 11 $zip->extractTo($dest); 12 if (is_dir($dest . '/test/empty')) { 14 rmdir($dest . '/test/empty'); 15 rmdir($dest . '/test');
|
/PHP-7.2/win32/build/ |
H A D | mkdist.php | 167 $fp = fopen($dest, "w"); 217 fclose($dest); 277 copy($src, $dist_dir . '/' . $dest); 349 $dest = "$dist_dir/$dll[0]"; variable 352 if (!file_exists("$dest") || !is_dir("$dest")) { 353 if (!mkdir("$dest", 0777, true)) { 397 function copy_dir($source, $dest) argument 399 if (!is_dir($dest)) { 400 if (!mkdir($dest)) { 411 $fd = $dest . '/' . $f; [all …]
|
/PHP-7.2/ext/gd/libgd/ |
H A D | gd_jpeg.c | 777 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in init_destination() local 782 dest->pub.next_output_byte = dest->buffer; in init_destination() 783 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in init_destination() 812 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in empty_output_buffer() local 814 if (gdPutBuf (dest->buffer, OUTPUT_BUF_SIZE, dest->outfile) != (size_t) OUTPUT_BUF_SIZE) { in empty_output_buffer() 818 dest->pub.next_output_byte = dest->buffer; in empty_output_buffer() 836 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in term_destination() local 840 if (datacount > 0 && ((size_t)gdPutBuf (dest->buffer, datacount, dest->outfile) != datacount)) { in term_destination() 854 my_dest_ptr dest; in jpeg_gdIOCtx_dest() local 866 dest = (my_dest_ptr) cinfo->dest; in jpeg_gdIOCtx_dest() [all …]
|
/PHP-7.2/ext/bz2/ |
H A D | bz2.c | 549 zend_string_free(dest); in PHP_FUNCTION() 554 ZSTR_LEN(dest) = dest_len; in PHP_FUNCTION() 555 ZSTR_VAL(dest)[ZSTR_LEN(dest)] = '\0'; in PHP_FUNCTION() local 556 RETURN_NEW_STR(dest); in PHP_FUNCTION() 566 zend_string *dest; in PHP_FUNCTION() local 594 bzs.next_out = ZSTR_VAL(dest); in PHP_FUNCTION() 606 dest = zend_string_safe_realloc(dest, 1, bzs.avail_out+1, (size_t) size, 0); in PHP_FUNCTION() 615 zend_string_free(dest); in PHP_FUNCTION() 620 dest = zend_string_safe_realloc(dest, 1, (size_t)size, 1, 0); in PHP_FUNCTION() 623 RETVAL_STR(dest); in PHP_FUNCTION() [all …]
|
/PHP-7.2/ext/mbstring/libmbfl/mbfl/ |
H A D | mbfl_memory_device.c | 298 mbfl_memory_device_devcat(mbfl_memory_device *dest, mbfl_memory_device *src) in mbfl_memory_device_devcat() argument 303 if ((dest->pos + src->pos) >= dest->length) { in mbfl_memory_device_devcat() 305 int newlen = dest->length + src->pos + MBFL_MEMORY_DEVICE_ALLOC_SIZE; in mbfl_memory_device_devcat() 311 tmp = (unsigned char *)mbfl_realloc((void *)dest->buffer, newlen*sizeof(unsigned char)); in mbfl_memory_device_devcat() 315 dest->length = newlen; in mbfl_memory_device_devcat() 316 dest->buffer = tmp; in mbfl_memory_device_devcat() 320 w = &dest->buffer[dest->pos]; in mbfl_memory_device_devcat() 322 dest->pos += n; in mbfl_memory_device_devcat()
|
/PHP-7.2/ext/com_dotnet/ |
H A D | com_misc.c | 98 PHP_COM_DOTNET_API int php_com_safearray_get_elem(VARIANT *array, VARIANT *dest, LONG dim1) in php_com_safearray_get_elem() argument 132 VariantInit(dest); in php_com_safearray_get_elem() 137 SafeArrayGetElement(V_ARRAY(array), indices, dest); in php_com_safearray_get_elem() 139 V_VT(dest) = vt; in php_com_safearray_get_elem() 143 SafeArrayGetElement(V_ARRAY(array), indices, &dest->lVal); in php_com_safearray_get_elem()
|