Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 25 of 219) sorted by path

123456789

/PHP-5.5/
H A DNEWS348 . Fixed bug #66048 (temp. directory is cached during multiple requests).
1843 . Implemented FR #60524 (specify temp dir by php.ini). (ALeX Kazik).
7493 - Fixed bug #41304 (compress.zlib temp files left). (Dmitry)
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.c1368 char *temp; in virtual_chdir_file() local
1387 temp = (char *) tsrm_do_alloca(length+1, use_heap); in virtual_chdir_file()
1388 memcpy(temp, path, length); in virtual_chdir_file()
1389 temp[length] = 0; in virtual_chdir_file()
1391 fprintf (stderr, "Changing directory to %s\n", temp); in virtual_chdir_file()
1393 retval = p_chdir(temp TSRMLS_CC); in virtual_chdir_file()
1394 tsrm_free_alloca(temp, use_heap); in virtual_chdir_file()
/PHP-5.5/ext/bcmath/libbcmath/
H A Dconfigure675 eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
1108 eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
/PHP-5.5/ext/bcmath/libbcmath/src/
H A Ddivmod.c51 bc_num temp; in bc_divmod() local
59 bc_init_num(&temp TSRMLS_CC); in bc_divmod()
62 bc_divide (num1, num2, &temp, scale TSRMLS_CC); in bc_divmod()
64 quotient = bc_copy_num (temp); in bc_divmod()
65 bc_multiply (temp, num2, &temp, rscale TSRMLS_CC); in bc_divmod()
66 bc_sub (num1, temp, rem, rscale); in bc_divmod()
67 bc_free_num (&temp); in bc_divmod()
H A Dinit.c51 bc_num temp; local
57 temp = _bc_Free_list;
58 _bc_Free_list = temp->n_next;
61 if (temp == NULL) bc_out_of_memory ();
64 temp->n_sign = PLUS;
65 temp->n_len = length;
66 temp->n_scale = scale;
67 temp->n_refs = 1;
71 temp->n_value = temp->n_ptr;
72 memset (temp->n_ptr, 0, length+scale);
[all …]
H A Doutput.c97 stk_rec *digits, *temp; in bc_out_num() local
155 temp = (stk_rec *) emalloc (sizeof(stk_rec)); in bc_out_num()
156 if (temp == NULL) bc_out_of_memory(); in bc_out_num()
157 temp->digit = bc_num2long (cur_dig); in bc_out_num()
158 temp->next = digits; in bc_out_num()
159 digits = temp; in bc_out_num()
169 temp = digits; in bc_out_num()
172 (*out_char) (ref_str[ (int) temp->digit]); in bc_out_num()
174 bc_out_long (temp->digit, max_o_digit->n_len, 1, out_char); in bc_out_num()
175 efree (temp); in bc_out_num()
H A Draise.c49 bc_num temp, power; in bc_raise() local
93 temp = bc_copy_num (power); in bc_raise()
104 bc_multiply (temp, power, &temp, calcscale TSRMLS_CC); in bc_raise()
112 bc_divide (BCG(_one_), temp, result, rscale TSRMLS_CC); in bc_raise()
113 bc_free_num (&temp); in bc_raise()
118 *result = temp; in bc_raise()
H A Draisemod.c48 bc_num power, exponent, parity, temp; in bc_raisemod() local
58 temp = bc_copy_num (BCG(_one_)); in bc_raisemod()
83 bc_multiply (temp, power, &temp, rscale TSRMLS_CC); in bc_raisemod()
84 (void) bc_modulo (temp, mod, &temp, scale TSRMLS_CC); in bc_raisemod()
96 *result = temp; in bc_raisemod()
H A Drecmul.c58 bc_num temp; local
62 temp = _bc_Free_list;
63 _bc_Free_list = temp->n_next;
68 if (temp == NULL) bc_out_of_memory ();
71 temp->n_sign = PLUS;
72 temp->n_len = length;
73 temp->n_scale = scale;
74 temp->n_refs = 1;
75 temp->n_ptr = NULL;
76 temp->n_value = value;
[all …]
/PHP-5.5/ext/calendar/
H A Dfrench.c101 long int temp; in SdnToFrench() local
110 temp = (sdn - FRENCH_SDN_OFFSET) * 4 - 1; in SdnToFrench()
111 *pYear = temp / DAYS_PER_4_YEARS; in SdnToFrench()
112 dayOfYear = (temp % DAYS_PER_4_YEARS) / 4; in SdnToFrench()
H A Dgregor.c147 long int temp; in SdnToGregorian() local
154 temp = (sdn + GREGOR_SDN_OFFSET) * 4 - 1; in SdnToGregorian()
157 century = temp / DAYS_PER_400_YEARS; in SdnToGregorian()
160 temp = ((temp % DAYS_PER_400_YEARS) / 4) * 4 + 3; in SdnToGregorian()
161 year = (century * 100) + (temp / DAYS_PER_4_YEARS); in SdnToGregorian()
162 dayOfYear = (temp % DAYS_PER_4_YEARS) / 4 + 1; in SdnToGregorian()
165 temp = dayOfYear * 5 - 3; in SdnToGregorian()
166 month = temp / DAYS_PER_5_MONTHS; in SdnToGregorian()
167 day = (temp % DAYS_PER_5_MONTHS) / 5 + 1; in SdnToGregorian()
H A Djulian.c164 long int temp; in SdnToJulian() local
174 temp = sdn * 4 + (JULIAN_SDN_OFFSET * 4 - 1); in SdnToJulian()
178 long yearl = temp / DAYS_PER_4_YEARS; in SdnToJulian()
184 dayOfYear = (temp % DAYS_PER_4_YEARS) / 4 + 1; in SdnToJulian()
187 temp = dayOfYear * 5 - 3; in SdnToJulian()
188 month = temp / DAYS_PER_5_MONTHS; in SdnToJulian()
189 day = (temp % DAYS_PER_5_MONTHS) / 5 + 1; in SdnToJulian()
/PHP-5.5/ext/curl/tests/
H A Dbug48207.phpt13 * Test documentation: http://wiki.php.net/qa/temp/ext/curl
H A Dbug52827.phpt13 $s = fopen('php://temp/maxmemory=1024','wb+');
H A Dcurl_error_basic.phpt22 * Documentation: http://wiki.php.net/qa/temp/ext/curl
H A Dcurl_multi_init_basic.phpt13 * Test documentation: http://wiki.php.net/qa/temp/ext/curl
H A Dcurl_multi_init_param.phpt13 * Test documentation: http://wiki.php.net/qa/temp/ext/curl
H A Dcurl_multi_select_basic1.phpt14 * Test documentation: http://wiki.php.net/qa/temp/ext/curl
H A Dcurl_setopt_array_basic.phpt14 * Documentation: http://wiki.php.net/qa/temp/ext/curl
/PHP-5.5/ext/dom/tests/
H A Ddom007.phpt13 <!ELEMENT course (title, description, temp*)>
17 <!ELEMENT temp (#PCDATA)>
18 <!ATTLIST temp vid ID #REQUIRED>
32 <temp vid="c7">
33 </temp>
/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/gd/libgd/
H A Dgd_webp.c67 unsigned char *read, *temp; in gdImageCreateFromWebpCtx() local
75 temp = gdRealloc(filedata, size+GD_WEBP_ALLOC_STEP); in gdImageCreateFromWebpCtx()
76 if (temp) { in gdImageCreateFromWebpCtx()
77 filedata = temp; in gdImageCreateFromWebpCtx()
78 read = temp + size; in gdImageCreateFromWebpCtx()
/PHP-5.5/ext/gd/tests/
H A Dbug43073.phpt27 $temp = $cos_t * $x + $sin_t * $y;
29 $x = $temp;
H A Dbug43073_1.phpt27 $temp = $cos_t * $x + $sin_t * $y;
29 $x = $temp;
H A Dimagegd2_nullbyte_injection.phpt22 $temp = $tempdir. "/test" . $userinput .".tmp";
25 imagegd2($image, $temp);

Completed in 64 milliseconds

123456789