Home
last modified time | relevance | path

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

123456789

/PHP-5.5/ext/phar/
H A Dutil.c123 off_t temp, eoffset; in phar_seek_efp() local
145 temp = eoffset + entry->uncompressed_filesize + offset; in phar_seek_efp()
148 temp = eoffset + position + offset; in phar_seek_efp()
151 temp = eoffset + offset; in phar_seek_efp()
154 temp = 0; in phar_seek_efp()
157 if (temp > eoffset + (off_t) entry->uncompressed_filesize) { in phar_seek_efp()
161 if (temp < eoffset) { in phar_seek_efp()
165 return php_stream_seek(fp, temp, SEEK_SET); in phar_seek_efp()
/PHP-5.5/ext/standard/
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.c1298 char *temp; in php_getimagesize_from_stream() local
1371 spprintf(&temp, 0, "width=\"%d\" height=\"%d\"", result->width, result->height); in php_getimagesize_from_stream()
1372 add_index_string(return_value, 3, temp, 0); in php_getimagesize_from_stream()
/PHP-5.5/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.5/ext/standard/tests/file/
H A Dis_writable_variation1.phpt58 "$file_path/is_writable_variation1" // temp directory, exp: bool(true)
H A Dreadlink_realpath_variation1.phpt24 // create a temp file
H A Dstat_basic-win32.phpt21 /* creating temp directory and file */
H A Dreadlink_realpath_variation2.phpt20 // create temp dir
H A Dsymlink_link_linkinfo_is_link_variation9.phpt27 // temp file used
H A Dfwrite_variation1-win32.phpt41 // create the temp file with content of type $file_content_type
H A Dfwrite_variation1.phpt40 // create the temp file with content of type $file_content_type
H A Dlstat_stat_basic.phpt24 /* creating temp directory and file */
H A Dfwrite_variation2-win32.phpt41 // create temp file and fill the data of type $file_content_type
H A Dfwrite_variation2.phpt41 // create temp file and fill the data of type $file_content_type
/PHP-5.5/ext/standard/tests/strings/
H A Dmd5_file.phpt69 // remove temp files
H A Dsha1_file.phpt67 // remove temp files
/PHP-5.5/ext/imap/tests/
H A Dimap_fetchbody_variation3.phpt24 $stream_id = setup_test_mailbox('', 1); // set up temp mailbox with 1 simple msg
H A Dimap_fetch_overview_variation2.phpt23 $stream_id = setup_test_mailbox('', 1, $mailbox, 'notSimple'); // set up temp mailbox with 1 msg
H A Dimap_fetchbody_variation2.phpt24 $stream_id = setup_test_mailbox('', 1); // set up temp mailbox with 1 simple msg
H A Dimap_fetchheader_variation2.phpt22 $stream_id = setup_test_mailbox('', 1, $mailbox, 'notSimple'); // set up temp mailbox with 1 msg
/PHP-5.5/ext/standard/tests/array/
H A Dsort_variation2.phpt79 // sort the array, retain a temp. copy of input array for next iteration
/PHP-5.5/ext/mssql/
H A Dphp_mssql.c1036 DBDATETIME temp; local
1038 … dbconvert(NULL, SQLDATETIM4, dbdata(mssql_ptr->link,offset), -1, SQLDATETIME, (LPBYTE) &temp, -1);
1039 dbdatecrack(mssql_ptr->link, &dateinfo, &temp);
1116 DBDATETIME temp; local
1118 … dbconvert(NULL, SQLDATETIM4, dbdata(mssql_ptr->link,offset), -1, SQLDATETIME, (LPBYTE) &temp, -1);
1119 dbdatecrack(mssql_ptr->link, &dateinfo, &temp);
/PHP-5.5/ext/oci8/tests/
H A Dbug43497.phpt63 // Read all XML data using explicit LOB locator but without freeing the temp lobs
/PHP-5.5/main/
H A Dsnprintf.c445 char temp[EXPONENT_LENGTH]; /* for exponent conversion */ in php_conv_fp() local
452 …p = ap_php_conv_10((wide_int) decimal_point, FALSE, &exponent_is_negative, &temp[EXPONENT_LENGTH],… in php_conv_fp()
/PHP-5.5/ext/sqlite3/
H A Dsqlite3.c1396 char *temp = emalloc(++param->name_len + 1); local
1397 temp[0] = ':';
1398 memmove(temp+1, param->name, param->name_len);
1399 param->name = temp;

Completed in 84 milliseconds

123456789