Home
last modified time | relevance | path

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

12345678910

/PHP-7.4/
H A DNEWS735 . Fixed bug #73060 (php failed with error after temp folder cleaned up).
2478 . Fixed bug #75031 (support append mode in temp/memory streams). (adsr)
/PHP-7.4/Zend/tests/
H A Dbug68887.phpt5 fclose(fopen("php://temp","w+"));
7 fclose(fopen("php://temp","w+"));
9 fclose(fopen("php://temp","w+"));
H A Dbug70398.phpt6 define("FILE_STREAM", fopen("php://temp", "r"));
8 define("FILE_STREAMS", array(fopen("php://temp", "r")));
/PHP-7.4/Zend/
H A Dzend_virtual_cwd.c1210 char *temp; in virtual_chdir_file() local
1229 temp = (char *) do_alloca(length+1, use_heap); in virtual_chdir_file()
1230 memcpy(temp, path, length); in virtual_chdir_file()
1231 temp[length] = 0; in virtual_chdir_file()
1233 fprintf (stderr, "Changing directory to %s\n", temp); in virtual_chdir_file()
1235 retval = p_chdir(temp); in virtual_chdir_file()
1236 free_alloca(temp, use_heap); in virtual_chdir_file()
/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/bcmath/libbcmath/src/
H A Ddivmod.c50 bc_num temp; in bc_divmod() local
58 bc_init_num(&temp); in bc_divmod()
61 bc_divide (num1, num2, &temp, 0); in bc_divmod()
63 quotient = bc_copy_num (temp); in bc_divmod()
64 bc_multiply (temp, num2, &temp, rscale); in bc_divmod()
65 bc_sub (num1, temp, rem, rscale); in bc_divmod()
66 bc_free_num (&temp); in bc_divmod()
H A Dinit.c46 bc_num temp; local
52 temp = (bc_num) safe_pemalloc (1, sizeof(bc_struct)+length, scale, persistent);
53 temp->n_sign = PLUS;
54 temp->n_len = length;
55 temp->n_scale = scale;
56 temp->n_refs = 1;
58 temp->n_ptr = (char *) safe_pemalloc (1, length, scale, persistent);
59 temp->n_value = temp->n_ptr;
60 memset (temp->n_ptr, 0, length+scale);
61 return temp;
H A Doutput.c96 stk_rec *digits, *temp; in bc_out_num() local
154 temp = (stk_rec *) emalloc (sizeof(stk_rec)); in bc_out_num()
155 temp->digit = bc_num2long (cur_dig); in bc_out_num()
156 temp->next = digits; in bc_out_num()
157 digits = temp; in bc_out_num()
167 temp = digits; in bc_out_num()
170 (*out_char) (ref_str[ (int) temp->digit]); in bc_out_num()
172 bc_out_long (temp->digit, max_o_digit->n_len, 1, out_char); in bc_out_num()
173 efree (temp); in bc_out_num()
H A Draise.c48 bc_num temp, power; in bc_raise() local
92 temp = bc_copy_num (power); in bc_raise()
103 bc_multiply (temp, power, &temp, calcscale); in bc_raise()
111 bc_divide (BCG(_one_), temp, result, rscale); in bc_raise()
112 bc_free_num (&temp); in bc_raise()
117 *result = temp; in bc_raise()
H A Draisemod.c48 bc_num temp; in _bc_truncate() local
50 temp = bc_new_num ((*num)->n_len, 0); in _bc_truncate()
51 temp->n_sign = (*num)->n_sign; in _bc_truncate()
54 *num = temp; in _bc_truncate()
65 bc_num power, exponent, modulus, parity, temp; in bc_raisemod() local
76 temp = bc_copy_num (BCG(_one_)); in bc_raisemod()
104 bc_free_num (&temp); in bc_raisemod()
105 temp = bc_new_num (1, scale); in bc_raisemod()
114 bc_multiply (temp, power, &temp, rscale); in bc_raisemod()
115 (void) bc_modulo (temp, modulus, &temp, scale); in bc_raisemod()
[all …]
H A Drecmul.c58 bc_num temp; local
60 temp = (bc_num) emalloc (sizeof(bc_struct));
62 temp->n_sign = PLUS;
63 temp->n_len = length;
64 temp->n_scale = scale;
65 temp->n_refs = 1;
66 temp->n_ptr = NULL;
67 temp->n_value = value;
68 return temp;
/PHP-7.4/ext/bz2/tests/
H A Dbug75776.phpt11 $temp = fopen('php://temp', 'r+');
12 stream_filter_append($temp, 'bzip2.compress', STREAM_FILTER_WRITE);
13 fwrite($temp, $text);
15 rewind($temp);
17 var_dump(bin2hex(stream_get_contents($temp)));
18 var_dump(ftell($temp));
20 fclose($temp);
/PHP-7.4/ext/calendar/
H A Dfrench.c101 zend_long 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 zend_long 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 zend_long 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-7.4/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_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-7.4/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-7.4/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()
H A Dgd_webp.c49 unsigned char *read, *temp; in gdImageCreateFromWebpCtx() local
51 temp = gdRealloc(filedata, size+GD_WEBP_ALLOC_STEP); in gdImageCreateFromWebpCtx()
52 if (temp) { in gdImageCreateFromWebpCtx()
53 filedata = temp; in gdImageCreateFromWebpCtx()
54 read = temp + size; in gdImageCreateFromWebpCtx()
/PHP-7.4/ext/gd/tests/
H A Dbug43073.phpt51 $temp = $cos_t * $x + $sin_t * $y;
53 $x = $temp;

Completed in 59 milliseconds

12345678910