Home
last modified time | relevance | path

Searched refs:dest (Results 1 – 25 of 103) sorted by relevance

12345

/PHP-5.5/ext/standard/
H A Dphp_smart_str.h81 #define smart_str_appends(dest, src) \ argument
84 #define smart_str_appendc(dest, c) \ argument
85 smart_str_appendc_ex((dest), (c), 0)
90 #define smart_str_append(dest, src) \ argument
91 smart_str_append_ex((dest), (src), 0)
102 (dest)->len = __nl; \
103 ((unsigned char *) (dest)->c)[(dest)->len - 1] = (ch); \
190 (dest)->len = (nlen); \
191 (dest)->a = (nlen) + 1; \
192 (dest)->c = (char *) (src); \
[all …]
H A Duuencode.c68 PHPAPI int php_uuencode(char *src, int src_len, char **dest) /* {{{ */ in php_uuencode() argument
74 p = *dest = safe_emalloc((size_t) ceil(src_len * 1.38), 1, 46); in php_uuencode()
123 return (p - *dest); in php_uuencode()
127 PHPAPI int php_uudecode(char *src, int src_len, char **dest) /* {{{ */ in php_uudecode() argument
132 p = *dest = safe_emalloc((size_t) ceil(src_len * 0.75), 1, 1); in php_uudecode()
171 if ((len = total_len > (p - *dest))) { in php_uudecode()
181 *(*dest + total_len) = '\0'; in php_uudecode()
186 efree(*dest); in php_uudecode()
H A Dphp_uuencode.h27 PHPAPI int php_uudecode(char *src, int src_len, char **dest);
28 PHPAPI int php_uuencode(char *src, int src_len, char **dest);
/PHP-5.5/ext/standard/tests/file/
H A Dstream_copy_to_stream.phpt13 $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 Dcopy_variation8.phpt10 /* 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 Dcopy_variation12.phpt11 /* Prototype: bool copy ( string $source, string $dest );
12 Description: Makes a copy of the file source to dest.
24 $dest = $file_path."/copy_copy_variation12";
26 var_dump( copy($src_dir, $dest) );
28 var_dump( file_exists($dest) );
31 var_dump( filesize($dest) );
H A Dbug38086.phpt13 $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 Dcopy_variation12-win32.phpt10 /* 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 Dcopy_variation16-win32.phpt10 /* 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 Dcopy_variation6-win32.phpt10 /* 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");
H A Dcopy_variation6.phpt10 /* 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) );
58 print($dest);
66 var_dump( filesize($dest) );
69 unlink("$dest");
H A Dcopy_variation16.phpt10 /* 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) );
63 print($dest);
67 var_dump( filesize($dest) );
70 unlink("$dest");
/PHP-5.5/ext/zip/tests/
H A Dbug40228.phpt7 $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-5.5/win32/build/
H A Dmkdist.php145 $fp = fopen($dest, "w");
195 fclose($dest);
254 copy($src, $dist_dir . '/' . $dest);
331 $dest = "$dist_dir/$dll[0]"; variable
334 if (!file_exists("$dest") || !is_dir("$dest")) {
335 if (!mkdir("$dest", 0777, true)) {
363 function copy_dir($source, $dest) argument
365 if (!is_dir($dest)) {
366 if (!mkdir($dest)) {
377 $fd = $dest . '/' . $f;
[all …]
/PHP-5.5/ext/gd/tests/
H A Dbug22544.phpt11 $dest = dirname(realpath(__FILE__)) . '/bug22544.png';
12 @unlink($dest);
18 imagePng($image, $dest);
19 echo md5_file($dest) . "\n";
20 @unlink($dest);
H A Dbug27582_1.phpt10 $dest = dirname(realpath(__FILE__)) . '/bug27582.png';
11 @unlink($dest);
18 imagepng($im, $dest);
20 $im2 = imagecreatefrompng($dest);
24 @unlink($dest);
H A Dbug24155.phpt12 $dest = dirname(realpath(__FILE__)) . '/bug24155.png';
13 @unlink($dest);
18 imagepng($im, $dest);
20 $im2 = imagecreatefrompng($dest);
27 @unlink($dest);
H A Dbug36697.phpt11 $dest = dirname(__FILE__) . "/36697.gif";
19 imagegif($im, $dest);
21 $im = imagecreatefromgif($dest);
25 @unlink($dest);
H A Dimagefilledpolygon_basic.phpt19 $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 Dimagepolygon_basic.phpt20 $dest = dirname(realpath(__FILE__)) . '/imagepolygon.png';
41 imagepng($image, $dest);
55 $dest = dirname(realpath(__FILE__)) . '/imagepolygon.png';
56 @unlink($dest);
H A Dimagedashedline_basic.phpt21 $dest = dirname(realpath(__FILE__)) . '/imagedashedline.png';
37 imagepng($image, $dest);
53 $dest = dirname(realpath(__FILE__)) . '/imagedashedline.png';
54 @unlink($dest);
/PHP-5.5/ext/gd/libgd/
H A Dgd_jpeg.c754 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-5.5/ext/bz2/
H A Dbz2.c515 dest = emalloc(dest_len + 1); in PHP_FUNCTION()
528 efree(dest); in PHP_FUNCTION()
533 dest = erealloc(dest, dest_len + 1); in PHP_FUNCTION()
534 dest[dest_len] = 0; in PHP_FUNCTION()
535 RETURN_STRINGL(dest, dest_len, 0); in PHP_FUNCTION()
544 char *source, *dest; in PHP_FUNCTION() local
576 dest = safe_erealloc(dest, 1, bzs.avail_out+1, (size_t) size ); in PHP_FUNCTION()
577 bzs.next_out = dest + size; in PHP_FUNCTION()
582 dest = safe_erealloc(dest, 1, (size_t) size, 1); in PHP_FUNCTION()
583 dest[size] = '\0'; in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_memory_device.c276 mbfl_memory_device_devcat(mbfl_memory_device *dest, mbfl_memory_device *src) in mbfl_memory_device_devcat() argument
281 if ((dest->pos + src->pos) >= dest->length) { in mbfl_memory_device_devcat()
283 int newlen = dest->length + src->pos + MBFL_MEMORY_DEVICE_ALLOC_SIZE; in mbfl_memory_device_devcat()
284 …unsigned char *tmp = (unsigned char *)mbfl_realloc((void *)dest->buffer, newlen*sizeof(unsigned ch… in mbfl_memory_device_devcat()
288 dest->length = newlen; in mbfl_memory_device_devcat()
289 dest->buffer = tmp; in mbfl_memory_device_devcat()
293 w = &dest->buffer[dest->pos]; in mbfl_memory_device_devcat()
295 dest->pos += n; in mbfl_memory_device_devcat()
/PHP-5.5/ext/com_dotnet/
H A Dcom_misc.c95 PHP_COM_DOTNET_API int php_com_safearray_get_elem(VARIANT *array, VARIANT *dest, LONG dim1 TSRMLS_D… in php_com_safearray_get_elem() argument
129 VariantInit(dest); in php_com_safearray_get_elem()
134 SafeArrayGetElement(V_ARRAY(array), indices, dest); in php_com_safearray_get_elem()
136 V_VT(dest) = vt; in php_com_safearray_get_elem()
140 SafeArrayGetElement(V_ARRAY(array), indices, &dest->lVal); in php_com_safearray_get_elem()

Completed in 55 milliseconds

12345