Home
last modified time | relevance | path

Searched refs:endptr (Results 1 – 14 of 14) sorted by relevance

/PHP-7.4/ext/intl/collator/
H A Dcollator_is_numeric.c23 static double collator_u_strtod(const UChar *nptr, UChar **endptr) /* {{{ */ in collator_u_strtod() argument
95 if (endptr != NULL) { in collator_u_strtod()
96 *endptr = (UChar *)u; in collator_u_strtod()
102 if (endptr != NULL) { in collator_u_strtod()
103 *endptr = (UChar *)nptr; in collator_u_strtod()
117 static zend_long collator_u_strtol(nptr, endptr, base) in collator_u_strtol() argument
119 UChar **endptr;
130 if (endptr != NULL) {
131 *endptr = NULL;
204 if (endptr != NULL)
[all …]
/PHP-7.4/Zend/
H A Dzend_strtod.h29 ZEND_API double zend_hex_strtod(const char *str, const char **endptr);
30 ZEND_API double zend_oct_strtod(const char *str, const char **endptr);
31 ZEND_API double zend_bin_strtod(const char *str, const char **endptr);
H A Dzend_strtod.c4423 ZEND_API double zend_hex_strtod(const char *str, const char **endptr) in zend_hex_strtod() argument
4449 if (endptr != NULL) { in zend_hex_strtod()
4450 *endptr = any ? s - 1 : str; in zend_hex_strtod()
4456 ZEND_API double zend_oct_strtod(const char *str, const char **endptr) in zend_oct_strtod() argument
4464 if (endptr != NULL) { in zend_oct_strtod()
4465 *endptr = str; in zend_oct_strtod()
4484 if (endptr != NULL) { in zend_oct_strtod()
4485 *endptr = any ? s - 1 : str; in zend_oct_strtod()
4491 ZEND_API double zend_bin_strtod(const char *str, const char **endptr) in zend_bin_strtod() argument
4522 if (NULL != endptr) { in zend_bin_strtod()
[all …]
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_script_run.c85 PRIV(script_run)(PCRE2_SPTR ptr, PCRE2_SPTR endptr, BOOL utf) in PRIV()
100 if (ptr >= endptr) return TRUE; in PRIV()
102 if (ptr >= endptr) return TRUE; in PRIV()
429 if (ptr >= endptr) return TRUE; in PRIV()
435 (void)endptr; in PRIV()
H A Dpcre2_newline.c79 PRIV(is_newline)(PCRE2_SPTR ptr, uint32_t type, PCRE2_SPTR endptr, in PRIV()
98 *lenptr = (ptr < endptr - 1 && ptr[1] == CHAR_LF)? 2 : 1; in PRIV()
119 *lenptr = (ptr < endptr - 1 && ptr[1] == CHAR_LF)? 2 : 1; in PRIV()
H A Dpcre2_match.c388 PCRE2_SPTR endptr = p + length; in match_ref() local
399 while (p < endptr) in match_ref()
H A Dpcre2_jit_compile.c10048 static PCRE2_SPTR SLJIT_FUNC do_script_run(PCRE2_SPTR ptr, PCRE2_SPTR endptr) in do_script_run() argument
10050 if (PRIV(script_run)(ptr, endptr, FALSE)) in do_script_run()
10051 return endptr; in do_script_run()
10057 static PCRE2_SPTR SLJIT_FUNC do_script_run_utf(PCRE2_SPTR ptr, PCRE2_SPTR endptr) in do_script_run_utf() argument
10059 if (PRIV(script_run)(ptr, endptr, TRUE)) in do_script_run_utf()
10060 return endptr; in do_script_run_utf()
H A Dpcre2_compile.c2187 check_posix_syntax(PCRE2_SPTR ptr, PCRE2_SPTR ptrend, PCRE2_SPTR *endptr) in check_posix_syntax() argument
2203 *endptr = ptr; in check_posix_syntax()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_list.c239 char *bufptr, *endptr; in phpdbg_compile_file() local
267 for (line = 0, bufptr = data.buf - 1, endptr = data.buf + data.len; ++bufptr < endptr;) { in phpdbg_compile_file()
275 dataptr->line[line] = endptr - data.buf; in phpdbg_compile_file()
327 char *bufptr, *endptr; in phpdbg_compile_string() local
337 …for (line = 0, bufptr = dataptr->buf - 1, endptr = dataptr->buf + dataptr->len; ++bufptr < endptr;… in phpdbg_compile_string()
343 dataptr->line[line] = endptr - dataptr->buf; in phpdbg_compile_string()
/PHP-7.4/ext/standard/
H A Dformatted_print.c350 char *endptr; in php_sprintf_getnumber() local
351 register zend_long num = ZEND_STRTOL(*buffer, &endptr, 10); in php_sprintf_getnumber()
354 if (endptr != NULL) { in php_sprintf_getnumber()
355 i = (endptr - *buffer); in php_sprintf_getnumber()
357 *buffer = endptr; in php_sprintf_getnumber()
H A Dhtml.c749 char *endptr; in process_numeric_entity() local
761 code_l = ZEND_STRTOL(*buf, &endptr, hexadecimal ? 16 : 10); in process_numeric_entity()
763 *buf = endptr; in process_numeric_entity()
/PHP-7.4/ext/session/
H A Dsession.c721 char *endptr = NULL; in PHP_INI_MH() local
725 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
726 if (endptr && (*endptr == '\0') in PHP_INI_MH()
741 char *endptr = NULL; in PHP_INI_MH() local
746 if (endptr && (*endptr == '\0') in PHP_INI_MH()
854 const char *endptr = val + vallen; in PS_SERIALIZER_DECODE_FUNC() local
913 const char *endptr = val + vallen; in PS_SERIALIZER_DECODE_FUNC() local
921 for (p = val; p < endptr; ) { in PS_SERIALIZER_DECODE_FUNC()
983 const char *endptr = val + vallen; in PS_SERIALIZER_DECODE_FUNC() local
994 while (p < endptr) { in PS_SERIALIZER_DECODE_FUNC()
[all …]
/PHP-7.4/ext/ftp/
H A Dftp.c829 char *endptr, delimiter; in ftp_pasv() local
851 sin6->sin6_port = htons((unsigned short) strtoul(ptr, &endptr, 10)); in ftp_pasv()
852 if (ptr == endptr || *endptr != delimiter) { in ftp_pasv()
/PHP-7.4/ext/mbstring/
H A Dmbstring.c1391 char *endptr = NULL; in PHP_INI_MH() local
1407 c = strtol(ZSTR_VAL(new_value), &endptr, 0); in PHP_INI_MH()
1408 if (*endptr == '\0') { in PHP_INI_MH()

Completed in 137 milliseconds