Home
last modified time | relevance | path

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

123456789

/PHP-5.3/ext/phar/
H A Dphar.c1606 php_stream *temp; local
1621 if (!(temp = php_stream_fopen_tmpfile())) {
1635 php_stream_close(temp);
1646 php_stream_close(temp);
1649 php_stream_close(temp);
1656 fp = temp;
1665 php_stream *temp; local
1672 if (!(temp = php_stream_fopen_tmpfile())) {
1680 php_stream_close(temp);
1687 php_stream_close(temp);
[all …]
H A Dutil.c127 off_t temp, eoffset; in phar_seek_efp() local
149 temp = eoffset + entry->uncompressed_filesize + offset; in phar_seek_efp()
152 temp = eoffset + position + offset; in phar_seek_efp()
155 temp = eoffset + offset; in phar_seek_efp()
158 temp = 0; in phar_seek_efp()
162 if (temp > eoffset + (off_t) entry->uncompressed_filesize) { in phar_seek_efp()
166 if (temp < eoffset) { in phar_seek_efp()
170 return php_stream_seek(fp, temp, SEEK_SET); in phar_seek_efp()
/PHP-5.3/ext/standard/
H A Darray.c1765 Bucket **elems, *temp; in php_array_data_shuffle() local
1779 for (j = 0, temp = hash->pListHead; temp; temp = temp->pListNext) in php_array_data_shuffle()
1780 elems[j++] = temp; in php_array_data_shuffle()
1785 temp = elems[n_left]; in php_array_data_shuffle()
1787 elems[rnd_idx] = temp; in php_array_data_shuffle()
1804 temp = hash->pListHead; in php_array_data_shuffle()
1806 while (temp != NULL) { in php_array_data_shuffle()
1807 temp->nKeyLength = 0; in php_array_data_shuffle()
1808 temp->h = j++; in php_array_data_shuffle()
1809 temp = temp->pListNext; in php_array_data_shuffle()
[all …]
H A Dmath.c1067 zval **number, temp; in PHP_FUNCTION() local
1085 if(_php_math_basetozval(*number, frombase, &temp) == FAILURE) { in PHP_FUNCTION()
1088 result = _php_math_zvaltobase(&temp, tobase TSRMLS_CC); in PHP_FUNCTION()
H A Dimage.c1297 char *arg1, *temp; in PHP_FUNCTION() local
1384 spprintf(&temp, 0, "width=\"%d\" height=\"%d\"", result->width, result->height); in PHP_FUNCTION()
1385 add_index_string(return_value, 3, temp, 0); in PHP_FUNCTION()
/PHP-5.3/ext/standard/tests/file/
H A Dtempnam_variation1-win32.phpt39 echo "temp dir\n";
H A Dtempnam_variation3.phpt56 echo "temp dir\n";
H A Dtouch_variation5-win32.phpt147 $temp = stat($path);
148 return $temp['atime'];
H A Dtouch_variation6-win32.phpt153 $temp = stat($path);
154 return $temp['atime'];
H A Dsymlink_link_linkinfo_is_link_variation6.phpt45 // temp file used
H A Dtempnam_variation1.phpt43 echo "temp dir\n";
H A Dreadlink_realpath_variation1.phpt24 // create a temp file
H A Dreadlink_realpath_variation2.phpt20 // create temp dir
H A Dstat_basic-win32.phpt21 /* creating temp directory and file */
H A Dsymlink_link_linkinfo_is_link_variation9.phpt27 // temp file used
/PHP-5.3/ext/imap/tests/
H A Dimap_fetch_overview_variation5.phpt23 $stream_id = setup_test_mailbox('', 3, $mailbox, 'notSimple'); // set up temp mailbox with 3 msgs
H A Dimap_fetchbody_variation3.phpt24 $stream_id = setup_test_mailbox('', 1); // set up temp mailbox with 1 simple msg
/PHP-5.3/TSRM/
H A Dtsrm_virtual_cwd.c1382 char *temp; in virtual_chdir_file() local
1401 temp = (char *) tsrm_do_alloca(length+1, use_heap); in virtual_chdir_file()
1402 memcpy(temp, path, length); in virtual_chdir_file()
1403 temp[length] = 0; in virtual_chdir_file()
1405 fprintf (stderr, "Changing directory to %s\n", temp); in virtual_chdir_file()
1407 retval = p_chdir(temp TSRMLS_CC); in virtual_chdir_file()
1408 tsrm_free_alloca(temp, use_heap); in virtual_chdir_file()
/PHP-5.3/
H A Drun-tests.php1889 $temp = "";
1907 $temp = $temp . preg_quote(substr($wanted_re, $startOffset, ($start - $startOffset)), '/');
1910 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';
1914 $wanted_re = $temp;
2682 $temp = array_intersect(array('XFAIL', 'FAIL'), $type);
2683 $type = reset($temp);
/PHP-5.3/ext/exif/
H A Dtest.txt19 //$file = '/t/temp/kodak-dc4800.tif';
20 //$file = '/t/temp/canon-ixus.jpg';
21 //$file = '/t/temp/test2.jpg';
/PHP-5.3/ext/standard/tests/strings/
H A Dmd5_file.phpt69 // remove temp files
H A Dsha1_file.phpt67 // remove temp files
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dparse.y90 create_table ::= CREATE(X) temp(T) TABLE nm(Y). { in CREATE()
93 %type temp {int}
94 temp(A) ::= TEMP. {A = 1;} in temp() function
95 temp(A) ::= . {A = 0;} in temp() function
271 cmd ::= CREATE(X) temp(T) VIEW nm(Y) AS select(S). {
799 trigger_decl ::= temp(T) TRIGGER nm(B) trigger_time(C) trigger_event(D)
/PHP-5.3/ext/standard/tests/array/
H A Dsort_variation2.phpt79 // sort the array, retain a temp. copy of input array for next iteration
/PHP-5.3/ext/mssql/
H A Dphp_mssql.c1031 DBDATETIME temp; local
1033 … dbconvert(NULL, SQLDATETIM4, dbdata(mssql_ptr->link,offset), -1, SQLDATETIME, (LPBYTE) &temp, -1);
1034 dbdatecrack(mssql_ptr->link, &dateinfo, &temp);
1111 DBDATETIME temp; local
1113 … dbconvert(NULL, SQLDATETIM4, dbdata(mssql_ptr->link,offset), -1, SQLDATETIME, (LPBYTE) &temp, -1);
1114 dbdatecrack(mssql_ptr->link, &dateinfo, &temp);

Completed in 96 milliseconds

123456789