Home
last modified time | relevance | path

Searched refs:temp (Results 201 – 225 of 241) sorted by relevance

12345678910

/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c1108 PCRE2_SPTR temp = ptr - 1; in internal_dfa_match() local
1109 if (temp < mb->start_used_ptr) mb->start_used_ptr = temp; in internal_dfa_match()
1111 if (utf) { BACKCHAR(temp); } in internal_dfa_match()
1113 GETCHARTEST(d, temp); in internal_dfa_match()
1133 PCRE2_SPTR temp = ptr + 1; in internal_dfa_match() local
1135 if (utf) { FORWARDCHARTEST(temp, mb->end_subject); } in internal_dfa_match()
1137 mb->last_used_ptr = temp; in internal_dfa_match()
/PHP-7.4/ext/oci8/tests/
H A Dbug43497.phpt60 // Read all XML data using explicit LOB locator but without freeing the temp lobs
/PHP-7.4/main/
H A Dsnprintf.c442 char temp[EXPONENT_LENGTH]; /* for exponent conversion */ in php_conv_fp() local
449 …p = ap_php_conv_10((wide_int) decimal_point, FALSE, &exponent_is_negative, &temp[EXPONENT_LENGTH],… in php_conv_fp()
/PHP-7.4/
H A Drun-tests.php2575 $temp = "";
2593 $temp .= preg_quote(substr($wanted_re, $startOffset, $start - $startOffset), '/');
2596 $temp .= '(' . substr($wanted_re, $start + 2, $end - $start - 2) . ')';
2600 $wanted_re = $temp;
3434 $temp = array_intersect(array('XFAIL', 'XLEAK', 'FAIL', 'WARN'), $type);
3435 $type = reset($temp);
/PHP-7.4/tests/output/
H A Dsapi_windows_vt100_support_winko_err.phpt95 Invalid stream (php://temp):
H A Dsapi_windows_vt100_support_winko_in-err.phpt95 Invalid stream (php://temp):
H A Dsapi_windows_vt100_support_winko_in-out-err.phpt95 Invalid stream (php://temp):
H A Dsapi_windows_vt100_support_winko_in-out.phpt95 Invalid stream (php://temp):
H A Dsapi_windows_vt100_support_winko_out-err.phpt95 Invalid stream (php://temp):
H A Dsapi_windows_vt100_support_winko_out.phpt95 Invalid stream (php://temp):
H A Dsapi_windows_vt100_support_winok_err.phpt95 Invalid stream (php://temp):
H A Dsapi_windows_vt100_support_winok_in-err.phpt95 Invalid stream (php://temp):
H A Dsapi_windows_vt100_support_winok_in-out-err.phpt95 Invalid stream (php://temp):
H A Dsapi_windows_vt100_support_winok_in-out.phpt95 Invalid stream (php://temp):
H A Dsapi_windows_vt100_support_winok_out-err.phpt95 Invalid stream (php://temp):
H A Dsapi_windows_vt100_support_winok_out.phpt95 Invalid stream (php://temp):
/PHP-7.4/ext/standard/tests/file/
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
H A Dfwrite_variation3.phpt41 // create temp file and fill it content of type $file_content_type
H A Dfwrite_variation3-win32.phpt41 // create temp file and fill it content of type $file_content_type
H A Dreadfile_basic-win32.phpt19 $file_prefix = "readfile_basic"; // temp files created with this prefix
21 // the content that is filled into the temp files as created
H A Dreadfile_basic.phpt19 $file_prefix = "readfile_basic"; // temp files created with this prefix
21 // the content that is filled into the temp files as created
/PHP-7.4/ext/sqlite3/
H A Dsqlite3.c1685 zend_string *temp = zend_string_alloc(ZSTR_LEN(param->name) + 1, 0); in register_bound_parameter_to_sqlite() local
1686 ZSTR_VAL(temp)[0] = ':'; in register_bound_parameter_to_sqlite() local
1687 memmove(ZSTR_VAL(temp) + 1, ZSTR_VAL(param->name), ZSTR_LEN(param->name) + 1); in register_bound_parameter_to_sqlite()
1688 param->name = temp; in register_bound_parameter_to_sqlite()
/PHP-7.4/ext/pdo/
H A Dpdo_stmt.c355 zend_string *temp = zend_string_alloc(ZSTR_LEN(param->name) + 1, 0); in really_register_bound_param() local
356 ZSTR_VAL(temp)[0] = ':'; in really_register_bound_param() local
357 memmove(ZSTR_VAL(temp) + 1, ZSTR_VAL(param->name), ZSTR_LEN(param->name) + 1); in really_register_bound_param()
358 param->name = temp; in really_register_bound_param()

Completed in 68 milliseconds

12345678910