/PHP-7.1/Zend/ |
H A D | zend_smart_str.h | 27 #define smart_str_appends(dest, src) \ argument 29 #define smart_str_appendc(dest, c) \ argument 30 smart_str_appendc_ex((dest), (c), 0) 33 #define smart_str_append(dest, src) \ argument 34 smart_str_append_ex((dest), (src), 0) 37 #define smart_str_sets(dest, src) \ argument 86 ZSTR_LEN(dest->s) = new_len; in smart_str_appendc_ex() 91 memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); in smart_str_appendl_ex() 92 ZSTR_LEN(dest->s) = new_len; in smart_str_appendl_ex() 118 smart_str_free(dest); in smart_str_setl() [all …]
|
H A D | zend_API.h | 1069 *dest = 1; in zend_parse_arg_bool() 1071 *dest = 0; in zend_parse_arg_bool() 1074 *dest = 0; in zend_parse_arg_bool() 1090 *dest = 0; in zend_parse_arg_long() 1108 *dest = 0.0; in zend_parse_arg_double() 1120 *dest = NULL; in zend_parse_arg_str() 1135 *dest = NULL; in zend_parse_arg_string() 1147 (*dest && UNEXPECTED(CHECK_NULL_PATH(ZSTR_VAL(*dest), ZSTR_LEN(*dest))))) { in zend_parse_arg_path_str() 1174 *dest = arg; in zend_parse_arg_array() 1209 *dest = arg; in zend_parse_arg_object() [all …]
|
/PHP-7.1/ext/standard/ |
H A D | php_smart_string.h | 82 #define smart_string_appends(dest, src) \ argument 85 #define smart_string_appendc(dest, c) \ argument 86 smart_string_appendc_ex((dest), (c), 0) 91 #define smart_string_append(dest, src) \ argument 92 smart_string_append_ex((dest), (src), 0) 101 (dest)->len = __nl; \ 102 ((unsigned char *) (dest)->c)[(dest)->len - 1] = (ch); \ 141 (dest)->len = (nlen); \ 142 (dest)->a = (nlen) + 1; \ 143 (dest)->c = (char *) (src); \ [all …]
|
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() 220 zend_string *dest; in PHP_FUNCTION() local [all …]
|
/PHP-7.1/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 | 19 $dest = dirname(realpath(__FILE__)) . '/imagefilledpolygon.png'; 43 imagepng($image, $dest); 46 $image_in = imagecreatefrompng($dest); 67 $dest = dirname(realpath(__FILE__)) . '/imagefilledpolygon.png'; 68 @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.1/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.1/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.1/win32/build/ |
H A D | mkdist.php | 166 $fp = fopen($dest, "w"); 216 fclose($dest); 276 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.1/ext/gd/libgd/ |
H A D | gd_jpeg.c | 754 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in init_destination() local 759 dest->pub.next_output_byte = dest->buffer; in init_destination() 760 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in init_destination() 789 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in empty_output_buffer() local 791 if (gdPutBuf (dest->buffer, OUTPUT_BUF_SIZE, dest->outfile) != (size_t) OUTPUT_BUF_SIZE) { in empty_output_buffer() 795 dest->pub.next_output_byte = dest->buffer; in empty_output_buffer() 813 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in term_destination() local 817 if (datacount > 0 && ((size_t)gdPutBuf (dest->buffer, datacount, dest->outfile) != datacount)) { in term_destination() 831 my_dest_ptr dest; in jpeg_gdIOCtx_dest() local 843 dest = (my_dest_ptr) cinfo->dest; in jpeg_gdIOCtx_dest() [all …]
|
/PHP-7.1/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.1/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.1/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()
|