Home
last modified time | relevance | path

Searched refs:temp (Results 176 – 200 of 248) sorted by relevance

12345678910

/PHP-8.3/ext/standard/tests/file/
H A Dfile_put_contents_variation8.phpt57 // TODO Cleanup temp files?
H A Drealpath_variation-win32-mb.phpt19 // create a temp file
H A Drealpath_variation-win32.phpt19 // create a temp file
H A Dumask_variation2.phpt16 // temp filename used
18 // temp dir used
29 // creating temp file
38 // delete temp file created here
42 // create temp dir
50 // delete temp dir created
H A Dtempnam_variation3.phpt58 echo "temp dir\n";
H A Dtempnam_variation1-win32-mb.phpt35 echo "temp dir\n";
H A Dtempnam_variation1-win32.phpt35 echo "temp dir\n";
H A Dtouch_variation5-win32.phpt141 $temp = stat($path);
142 return $temp['atime'];
H A Dtouch_variation5.phpt141 $temp = stat($path);
142 return $temp['atime'];
H A Dtouch_variation6-win32.phpt147 $temp = stat($path);
148 return $temp['atime'];
H A Dreadlink_realpath_variation1-win32.phpt20 // create a temp file
H A Dreadlink_realpath_variation1.phpt17 // create a temp file
H A Dsymlink_link_linkinfo_is_link_variation9.phpt15 // temp file used
H A Dtempnam_variation1.phpt39 echo "temp dir\n";
/PHP-8.3/ext/imap/tests/
H A Dimap_close_variation4.phpt22 $stream_id = setup_test_mailbox('imapclosevar4', 3, $mailbox); // set up temp mailbox with 3 messag…
H A Dimap_fetch_overview_variation5.phpt19 $stream_id = setup_test_mailbox('imapfetchoverviewvar5', 3, $mailbox, false); // set up temp mailbo…
/PHP-8.3/Zend/Optimizer/
H A Dzend_inference.c554 if (temp <= b) { in minOR()
555 a = temp; in minOR()
560 if (temp <= d) { in minOR()
561 c = temp; in minOR()
578 if (temp >= a) { in maxOR()
579 b = temp; in maxOR()
584 d = temp; in maxOR()
602 a = temp; in minAND()
607 c = temp; in minAND()
625 b = temp; in maxAND()
[all …]
/PHP-8.3/ext/standard/tests/strings/
H A Dmd5_file.phpt59 // remove temp files
H A Dsha1_file.phpt66 // remove temp files
/PHP-8.3/.github/scripts/windows/
H A Dtest_task.bat136 …q --offline --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-targe…
/PHP-8.3/ext/hash/
H A Dhash.c994 unsigned char *computed_salt, *digest, *temp, *result, *K1, *K2 = NULL; in PHP_FUNCTION() local
1033 temp = emalloc(ops->digest_size); in PHP_FUNCTION()
1073 memcpy(temp, digest, ops->digest_size); in PHP_FUNCTION()
1085 php_hash_string_xor(temp, temp, digest, ops->digest_size); in PHP_FUNCTION()
1088 memcpy(result + ((i - 1) * ops->digest_size), temp, ops->digest_size); in PHP_FUNCTION()
1099 efree(temp); in PHP_FUNCTION()
/PHP-8.3/Zend/
H A Dzend_virtual_cwd.c1216 char *temp; in virtual_chdir_file() local
1235 temp = (char *) do_alloca(length+1, use_heap); in virtual_chdir_file()
1236 memcpy(temp, path, length); in virtual_chdir_file()
1237 temp[length] = 0; in virtual_chdir_file()
1239 fprintf (stderr, "Changing directory to %s\n", temp); in virtual_chdir_file()
1241 retval = p_chdir(temp); in virtual_chdir_file()
1242 free_alloca(temp, use_heap); in virtual_chdir_file()
/PHP-8.3/ext/phar/
H A Dphar.c1667 php_stream *temp; in phar_open_from_fp() local
1682 if (!(temp = php_stream_fopen_tmpfile())) { in phar_open_from_fp()
1696 php_stream_close(temp); in phar_open_from_fp()
1707 php_stream_close(temp); in phar_open_from_fp()
1710 php_stream_close(temp); in phar_open_from_fp()
1717 fp = temp; in phar_open_from_fp()
1730 php_stream *temp; in phar_open_from_fp() local
1737 if (!(temp = php_stream_fopen_tmpfile())) { in phar_open_from_fp()
1745 php_stream_close(temp); in phar_open_from_fp()
1752 php_stream_close(temp); in phar_open_from_fp()
[all …]
H A Dutil.c119 zend_off_t temp, eoffset; in phar_seek_efp() local
141 temp = eoffset + entry->uncompressed_filesize + offset; in phar_seek_efp()
144 temp = eoffset + position + offset; in phar_seek_efp()
147 temp = eoffset + offset; in phar_seek_efp()
150 temp = 0; in phar_seek_efp()
153 if (temp > eoffset + (zend_off_t) entry->uncompressed_filesize) { in phar_seek_efp()
157 if (temp < eoffset) { in phar_seek_efp()
161 return php_stream_seek(fp, temp, SEEK_SET); in phar_seek_efp()
/PHP-8.3/ext/gd/libgd/
H A Dgd_bmp.c1063 int temp = (index >> (8 - (j * info->depth))) & ((1 << info->depth) - 1); in bmp_read_rle() local
1064 if (im->open[temp]) { in bmp_read_rle()
1065 im->open[temp] = 0; in bmp_read_rle()
1067 gdImageSetPixel(im, xpos, row, temp); in bmp_read_rle()

Completed in 118 milliseconds

12345678910