Home
last modified time | relevance | path

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

12345678910

/php-src/.github/scripts/windows/
H A Dtest_task.bat136 …q --offline --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-targe…
/php-src/Zend/Optimizer/
H A Dzend_inference.c554 if (temp <= b) { in minOR()
555 a = temp; in minOR()
560 if (temp <= d) { in minOR()
561 c = temp; in minOR()
578 if (temp >= a) { in maxOR()
579 b = temp; in maxOR()
584 d = temp; in maxOR()
602 a = temp; in minAND()
607 c = temp; in minAND()
625 b = temp; in maxAND()
[all …]
/php-src/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-src/Zend/
H A Dzend_virtual_cwd.c1216 char *temp; in virtual_chdir_file() local
1235 temp = (char *) do_alloca(length+1, use_heap); in virtual_chdir_file()
1236 memcpy(temp, path, length); in virtual_chdir_file()
1237 temp[length] = 0; in virtual_chdir_file()
1239 fprintf (stderr, "Changing directory to %s\n", temp); in virtual_chdir_file()
1241 retval = p_chdir(temp); in virtual_chdir_file()
1242 free_alloca(temp, use_heap); in virtual_chdir_file()
/php-src/ext/bcmath/libbcmath/src/
H A Ddivmod.c47 bc_num temp; in bc_divmod() local
57 bc_init_num(&temp); in bc_divmod()
60 bc_divide(num1, num2, &temp, 0); in bc_divmod()
62 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.c42 bc_num temp = (bc_num) safe_pemalloc(1, sizeof(bc_struct) + length, scale, persistent); in _bc_new_num_ex() local
43 temp->n_sign = PLUS; in _bc_new_num_ex()
44 temp->n_len = length; in _bc_new_num_ex()
45 temp->n_scale = scale; in _bc_new_num_ex()
46 temp->n_refs = 1; in _bc_new_num_ex()
48 temp->n_ptr = (char *) safe_pemalloc(1, length, scale, persistent); in _bc_new_num_ex()
49 temp->n_value = temp->n_ptr; in _bc_new_num_ex()
50 memset(temp->n_ptr, 0, length + scale); in _bc_new_num_ex()
51 return temp; in _bc_new_num_ex()
H A Doutput.c81 stk_rec *digits, *temp; in bc_out_num() local
138 temp = (stk_rec *) emalloc(sizeof(stk_rec)); in bc_out_num()
139 temp->digit = bc_num2long(cur_dig); in bc_out_num()
140 temp->next = digits; in bc_out_num()
141 digits = temp; in bc_out_num()
149 temp = digits; in bc_out_num()
152 (*out_char)(ref_str[(int) temp->digit]); in bc_out_num()
154 bc_out_long(temp->digit, max_o_digit->n_len, 1, out_char); in bc_out_num()
156 efree(temp); in bc_out_num()
H A Draise.c44 bc_num temp, power; in bc_raise() local
75 temp = bc_copy_num(power); in bc_raise()
85 bc_multiply(temp, power, &temp, calcscale); in bc_raise()
92 bc_divide(BCG(_one_), temp, result, rscale); in bc_raise()
93 bc_free_num (&temp); in bc_raise()
96 *result = temp; in bc_raise()
H A Draisemod.c38 bc_num power, exponent, modulus, parity, temp; in bc_raisemod() local
64 temp = bc_copy_num(BCG(_one_)); in bc_raisemod()
69 bc_free_num (&temp); in bc_raisemod()
70 temp = bc_new_num (1, scale); in bc_raisemod()
75 bc_multiply(temp, power, &temp, scale); in bc_raisemod()
76 (void) bc_modulo(temp, modulus, &temp, scale); in bc_raisemod()
89 *result = temp; in bc_raisemod()
H A Drecmul.c53 bc_num temp = (bc_num) emalloc(sizeof(bc_struct)); in new_sub_num() local
55 temp->n_sign = PLUS; in new_sub_num()
56 temp->n_len = length; in new_sub_num()
57 temp->n_scale = scale; in new_sub_num()
58 temp->n_refs = 1; in new_sub_num()
59 temp->n_ptr = NULL; in new_sub_num()
60 temp->n_value = value; in new_sub_num()
61 return temp; in new_sub_num()
/php-src/ext/bz2/tests/
H A Dbug75776.phpt9 $temp = fopen('php://temp', 'r+');
10 stream_filter_append($temp, 'bzip2.compress', STREAM_FILTER_WRITE);
11 fwrite($temp, $text);
13 rewind($temp);
15 var_dump(bin2hex(stream_get_contents($temp)));
16 var_dump(ftell($temp));
18 fclose($temp);
/php-src/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-src/ext/curl/tests/
H A Dbug48207.phpt13 * Test documentation: http://wiki.php.net/qa/temp/ext/curl
H A Dbug52827.phpt7 $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_setopt_array_basic.phpt13 * Documentation: http://wiki.php.net/qa/temp/ext/curl
/php-src/ext/dom/lexbor/lexbor/html/
H A Dtokenizer.h68 const lxb_char_t *temp; member
/php-src/ext/dom/lexbor/lexbor/html/tokenizer/
H A Dstate_rawtext.c170 tkz->temp = data; in lxb_html_tokenizer_state_rawtext_end_tag_open()
253 tkz->token->begin = tkz->temp; in lxb_html_tokenizer_state_rawtext_end_tag_name()
298 tkz->token->begin = tkz->temp; in lxb_html_tokenizer_state_rawtext_end_tag_name()
H A Dstate_rcdata.c179 tkz->temp = data; in lxb_html_tokenizer_state_rcdata_end_tag_open()
262 tkz->token->begin = tkz->temp; in lxb_html_tokenizer_state_rcdata_end_tag_name()
H A Dstate_script.c270 tkz->temp = data; in lxb_html_tokenizer_state_script_data_end_tag_open()
354 tkz->token->begin = tkz->temp; in lxb_html_tokenizer_state_script_data_end_tag_name()
397 tkz->token->begin = tkz->temp; in lxb_html_tokenizer_state_script_data_end_tag_name()
678 tkz->temp = data; in lxb_html_tokenizer_state_script_data_escaped_end_tag_open()
764 tkz->token->begin = tkz->temp; in lxb_html_tokenizer_state_script_data_escaped_end_tag_name()
808 tkz->token->begin = tkz->temp; in lxb_html_tokenizer_state_script_data_escaped_end_tag_name()
/php-src/ext/dom/lexbor/lexbor/html/tree/insertion_mode/
H A Din_body.c214 lxb_dom_node_t *node, *temp; in lxb_html_tree_insertion_mode_in_body_body() local
224 temp = lxb_html_tree_open_elements_find_reverse(tree, LXB_TAG_TEMPLATE, in lxb_html_tree_insertion_mode_in_body_body()
226 if (temp != NULL) { in lxb_html_tree_insertion_mode_in_body_body()
455 lxb_dom_node_t *node, *temp; in lxb_html_tree_insertion_mode_in_body_form() local
458 temp = lxb_html_tree_open_elements_find_reverse(tree, LXB_TAG_TEMPLATE, in lxb_html_tree_insertion_mode_in_body_form()
461 if (tree->form != NULL && temp == NULL) { in lxb_html_tree_insertion_mode_in_body_form()
480 if (temp == NULL) { in lxb_html_tree_insertion_mode_in_body_form()
/php-src/ext/dom/tests/
H A Dcanonicalization_special_nodes.phpt14 <temp xmlns=""/>
30 <temp></temp>
35 <temp></temp>

Completed in 53 milliseconds

12345678910