Home
last modified time | relevance | path

Searched refs:temp (Results 151 – 175 of 241) sorted by relevance

12345678910

/PHP-7.4/ext/hash/sha3/generic64lc/
H A DKeccakP-1600-opt64.c421 unsigned char temp[8]; in KeccakP1600_ExtractAndAddLanes() local
429 fromWordToBytes(temp, ((const UINT64*)state)[i]); in KeccakP1600_ExtractAndAddLanes()
431 output[i*8+j] = input[i*8+j] ^ temp[j]; in KeccakP1600_ExtractAndAddLanes()
/PHP-7.4/appveyor/
H A Dtest_task.bat103 …w 1000 --set-timeout 120 -g FAIL,XFAIL,BORK,WARN,LEAK,SKIP --temp-source c:\tests_tmp --temp-targe…
/PHP-7.4/ext/standard/tests/file/
H A Drename_variation.phpt45 // clean the temp dir and file
H A Dlstat_stat_variation20.phpt24 $fp = fopen("$file_path/lstat_stat_variation20.tmp", "w"); // temp file
27 // temp link
H A Dumask_variation1.phpt20 // temp filename used
22 // temp dir used
33 // creating temp file
42 // delete temp file created here
46 // create temp dir
54 // delete temp dir created
H A Dsymlink_link_linkinfo_is_link_variation5.phpt33 // create temp dir
H A Dis_readable_variation1.phpt46 "$file_path/is_readable_variation1" // temp directory, exp: bool(true)
H A Dumask_variation2.phpt20 // temp filename used
22 // temp dir used
33 // creating temp file
42 // delete temp file created here
46 // create temp dir
54 // delete temp dir created
H A Drealpath_variation-win32-mb.phpt23 // create a temp file
H A Drealpath_variation-win32.phpt23 // create a temp file
H A Dtempnam_variation3-win32.phpt21 echo "Failed, cannot create temp dir $filepath\n";
/PHP-7.4/ext/imap/tests/
H A Dimap_fetch_overview_error.phpt25 $stream_id = setup_test_mailbox('', 2, $mailbox, 'notSimple'); // set up temp mailbox with 2 msgs
H A Dimap_fetchbody_error.phpt25 $stream_id = setup_test_mailbox('', 1); // set up temp mailbox with 1 simple msg
H A Dimap_fetchbody_variation6.phpt24 $stream_id = setup_test_mailbox('', 3); // set up temp mailbox with simple msgs
H A Dimap_fetchheader_basic.phpt18 $stream_id = setup_test_mailbox('', 1, $mailbox, 'multiPart'); // setup temp mailbox with 1 msg
H A Dimap_fetchheader_variation5.phpt23 $stream_id = setup_test_mailbox('', 3, $mailbox, 'notSimple'); // set up temp mailbox with 3 msgs
H A Dimap_close_variation4.phpt25 $stream_id = setup_test_mailbox('', 3, $mailbox); // set up temp mailbox with 3 messages
H A Dimap_fetch_overview_variation6.phpt22 $stream_id = setup_test_mailbox('', 0, $mailbox); // setup temp mailbox
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug69362.phpt50 // Create temp user with leading single quote
H A Dbug62479.phpt50 // Create temp user with space in password
/PHP-7.4/ext/standard/tests/dir/
H A Ddir_basic-win32-mb.phpt50 // delete temp files
H A Ddir_basic.phpt44 // delete temp files
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_inference.c322 if (temp <= b) { in minOR()
323 a = temp; in minOR()
328 if (temp <= d) { in minOR()
329 c = temp; in minOR()
346 if (temp >= a) { in maxOR()
347 b = temp; in maxOR()
352 d = temp; in maxOR()
370 a = temp; in minAND()
375 c = temp; in minAND()
393 b = temp; in maxAND()
[all …]
/PHP-7.4/ext/hash/
H A Dhash.c727 unsigned char *computed_salt, *digest, *temp, *result, *K1, *K2 = NULL; in PHP_FUNCTION() local
769 temp = emalloc(ops->digest_size); in PHP_FUNCTION()
809 memcpy(temp, digest, ops->digest_size); in PHP_FUNCTION()
821 php_hash_string_xor(temp, temp, digest, ops->digest_size); in PHP_FUNCTION()
824 memcpy(result + ((i - 1) * ops->digest_size), temp, ops->digest_size); in PHP_FUNCTION()
835 efree(temp); in PHP_FUNCTION()
/PHP-7.4/ext/tidy/
H A Dtidy.c851 zval temp; in tidy_doc_update_properties() local
860 ZVAL_STRINGL(&temp, (char*)output.bp, output.size-1); in tidy_doc_update_properties()
861 zend_hash_str_update(obj->std.properties, "value", sizeof("value") - 1, &temp); in tidy_doc_update_properties()
870 ZVAL_STRINGL(&temp, (char*)obj->ptdoc->errbuf->bp, obj->ptdoc->errbuf->size-1); in tidy_doc_update_properties()
871 zend_hash_str_update(obj->std.properties, "errorBuffer", sizeof("errorBuffer") - 1, &temp); in tidy_doc_update_properties()
881 zval attribute, children, temp; in tidy_add_default_properties() local
935 tidy_instanciate(tidy_ce_node, &temp); in tidy_add_default_properties()
936 newobj = Z_TIDY_P(&temp); in tidy_add_default_properties()
943 add_next_index_zval(&children, &temp); in tidy_add_default_properties()

Completed in 68 milliseconds

12345678910