Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 25 of 242) sorted by last modified time

12345678910

/php-src/ext/mbstring/
H A Dmbstring.c6627 unsigned char *temp = mime_header_decode_encoded_word(p, e, outcode, &buf, &state); in mb_mime_header_decode() local
6628 if (temp) { in mb_mime_header_decode()
6629 p = temp; in mb_mime_header_decode()
/php-src/ext/gmp/
H A Dgmp.c129 #define FREE_GMP_TEMP(temp) \ argument
130 if (temp.is_used) { \
131 mpz_clear(temp.num); \
137 temp.is_used = 0; \
139 mpz_init(temp.num); \
141 mpz_clear(temp.num); \
157 mpz_clear(temp.num); \
172 mpz_clear(temp.num); \
349 gmp_temp_t temp; in shift_operator_helper() local
351 FETCH_GMP_ZVAL(gmpnum_op, op1, temp, 1); in shift_operator_helper()
[all …]
/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/lexbor/lexbor/html/tokenizer/
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()
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()
/php-src/ext/dom/lexbor/lexbor/html/
H A Dtokenizer.h68 const lxb_char_t *temp; member
/php-src/ext/tidy/
H A Dtidy.c573 zval attribute, children, temp; in tidy_add_node_default_properties() local
692 tidy_instantiate(tidy_ce_node, &temp); in tidy_add_node_default_properties()
693 newobj = Z_TIDY_P(&temp); in tidy_add_node_default_properties()
700 add_next_index_zval(&children, &temp); in tidy_add_node_default_properties()
/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/ext/standard/tests/file/
H A Dbug39551.phpt6 $bucket = stream_bucket_new(fopen('php://temp', 'w+'), '');
12 $bucket = stream_bucket_new(fopen('php://temp', 'w+'), '');
19 stream_filter_append($s = fopen('php://temp', 'r+'), 'bucketfault');
/php-src/ext/bcmath/libbcmath/src/
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()
/php-src/ext/phar/
H A Dutil.c119 zend_off_t temp, eoffset; in phar_seek_efp() local
141 temp = eoffset + entry->uncompressed_filesize + offset; in phar_seek_efp()
144 temp = eoffset + position + offset; in phar_seek_efp()
147 temp = eoffset + offset; in phar_seek_efp()
150 temp = 0; in phar_seek_efp()
153 if (temp > eoffset + (zend_off_t) entry->uncompressed_filesize) { in phar_seek_efp()
157 if (temp < eoffset) { in phar_seek_efp()
161 return php_stream_seek(fp, temp, SEEK_SET); in phar_seek_efp()
H A Dphar.c1667 php_stream *temp; in phar_open_from_fp() local
1682 if (!(temp = php_stream_fopen_tmpfile())) { in phar_open_from_fp()
1696 php_stream_close(temp); in phar_open_from_fp()
1707 php_stream_close(temp); in phar_open_from_fp()
1710 php_stream_close(temp); in phar_open_from_fp()
1717 fp = temp; in phar_open_from_fp()
1730 php_stream *temp; in phar_open_from_fp() local
1737 if (!(temp = php_stream_fopen_tmpfile())) { in phar_open_from_fp()
1745 php_stream_close(temp); in phar_open_from_fp()
1752 php_stream_close(temp); in phar_open_from_fp()
[all …]
H A Dstream.c408 zend_off_t temp; in phar_stream_seek() local
418 temp = data->zero + entry->uncompressed_filesize + offset; in phar_stream_seek()
421 temp = data->zero + data->position + offset; in phar_stream_seek()
424 temp = data->zero + offset; in phar_stream_seek()
427 temp = 0; in phar_stream_seek()
429 if (temp > data->zero + (zend_off_t) entry->uncompressed_filesize) { in phar_stream_seek()
433 if (temp < data->zero) { in phar_stream_seek()
437 res = php_stream_seek(data->fp, temp, SEEK_SET); in phar_stream_seek()
/php-src/ext/opcache/
H A Dzend_accelerator_blacklist.c222 zend_regexp_list *temp, *it = blacklist->regexp_list; in zend_accel_blacklist_shutdown() local
225 temp = it; in zend_accel_blacklist_shutdown()
227 free(temp); in zend_accel_blacklist_shutdown()
/php-src/ext/spl/tests/
H A Dgh13685.phpt47 Cannot read from file php://temp
52 Cannot read from file php://temp
/php-src/ext/standard/
H A Dmath.c1033 zval temp; in PHP_FUNCTION() local
1053 _php_math_basetozval(number, (int)frombase, &temp); in PHP_FUNCTION()
1054 result = _php_math_zvaltobase(&temp, (int)tobase); in PHP_FUNCTION()
H A Dstring.c5962 char temp; local
5980 temp = str[n_left];
5982 str[rnd_idx] = temp;
H A Darray.c3220 zval *zv, temp; local
3264 ZVAL_COPY_VALUE(&temp, &hash->arPacked[n_left]);
3266 ZVAL_COPY_VALUE(&hash->arPacked[rnd_idx], &temp);
3292 ZVAL_COPY_VALUE(&temp, &hash->arPacked[n_left]);
3294 ZVAL_COPY_VALUE(&hash->arPacked[rnd_idx], &temp);
H A Dfile.c294 while (temp && *temp) { in PHP_FUNCTION()
296 *temp = '_'; in PHP_FUNCTION()
298 temp++; in PHP_FUNCTION()
328 while (temp && *temp) { in PHP_FUNCTION()
330 *temp = '_'; in PHP_FUNCTION()
332 temp++; in PHP_FUNCTION()
1960 char *tptr = temp; in php_fgetcsv()
2045 temp = new_temp; in php_fgetcsv()
2173 comp_end = (char *)php_fgetcsv_lookup_trailing_spaces(temp, tptr - temp); in php_fgetcsv()
2183 ZVAL_STRINGL(&z_tmp, temp, comp_end - temp); in php_fgetcsv()
[all …]
/php-src/ext/sqlite3/
H A Dsqlite3.c1665 zend_string *temp = zend_string_alloc(ZSTR_LEN(param->name) + 1, 0); in register_bound_parameter_to_sqlite() local
1666 ZSTR_VAL(temp)[0] = ':'; in register_bound_parameter_to_sqlite() local
1667 memmove(ZSTR_VAL(temp) + 1, ZSTR_VAL(param->name), ZSTR_LEN(param->name) + 1); in register_bound_parameter_to_sqlite()
1668 param->name = temp; in register_bound_parameter_to_sqlite()
/php-src/ext/pdo/
H A Dpdo_stmt.c319 zend_string *temp = zend_string_alloc(ZSTR_LEN(param->name) + 1, 0); in really_register_bound_param() local
320 ZSTR_VAL(temp)[0] = ':'; in really_register_bound_param() local
321 memmove(ZSTR_VAL(temp) + 1, ZSTR_VAL(param->name), ZSTR_LEN(param->name) + 1); in really_register_bound_param()
322 param->name = temp; in really_register_bound_param()
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c1112 PCRE2_SPTR temp = ptr - 1; in internal_dfa_match() local
1113 if (temp < mb->start_used_ptr) mb->start_used_ptr = temp; in internal_dfa_match()
1115 if (utf) { BACKCHAR(temp); } in internal_dfa_match()
1117 GETCHARTEST(d, temp); in internal_dfa_match()
1137 PCRE2_SPTR temp = ptr + 1; in internal_dfa_match() local
1139 if (utf) { FORWARDCHARTEST(temp, mb->end_subject); } in internal_dfa_match()
1141 mb->last_used_ptr = temp; in internal_dfa_match()
H A Dpcre2_compile.c10794 PCRE2_UCHAR *temp = (PCRE2_UCHAR *)codestart; in pcre2_compile() local
10795 if (PRIV(auto_possessify)(temp, &cb) != 0) errorcode = ERR80; in pcre2_compile()
/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…

Completed in 208 milliseconds

12345678910