Home
last modified time | relevance | path

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

/PHP-7.1/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.1/Zend/
H A Dzend_strtod.h31 ZEND_API double zend_hex_strtod(const char *str, const char **endptr);
32 ZEND_API double zend_oct_strtod(const char *str, const char **endptr);
33 ZEND_API double zend_bin_strtod(const char *str, const char **endptr);
H A Dzend_strtod.c4420 ZEND_API double zend_hex_strtod(const char *str, const char **endptr) in zend_hex_strtod() argument
4446 if (endptr != NULL) { in zend_hex_strtod()
4447 *endptr = any ? s - 1 : str; in zend_hex_strtod()
4453 ZEND_API double zend_oct_strtod(const char *str, const char **endptr) in zend_oct_strtod() argument
4461 if (endptr != NULL) { in zend_oct_strtod()
4462 *endptr = str; in zend_oct_strtod()
4481 if (endptr != NULL) { in zend_oct_strtod()
4482 *endptr = any ? s - 1 : str; in zend_oct_strtod()
4488 ZEND_API double zend_bin_strtod(const char *str, const char **endptr) in zend_bin_strtod() argument
4519 if (NULL != endptr) { in zend_bin_strtod()
[all …]
/PHP-7.1/ext/pcre/pcrelib/
H A Dpcre_newline.c74 PRIV(is_newline)(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR endptr, int *lenptr, in PRIV()
93 case CHAR_CR: *lenptr = (ptr < endptr - 1 && ptr[1] == CHAR_LF)? 2 : 1; in PRIV()
110 *lenptr = (ptr < endptr - 1 && ptr[1] == CHAR_LF)? 2 : 1; in PRIV()
H A Dpcre_exec.c208 PCRE_PUCHAR endptr = p + length; in match_ref() local
209 while (p < endptr) in match_ref()
H A Dpcre_compile.c3931 check_posix_syntax(const pcre_uchar *ptr, const pcre_uchar **endptr) in check_posix_syntax() argument
3945 *endptr = ptr; in check_posix_syntax()
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_list.c241 char *bufptr, *endptr; in phpdbg_compile_file() local
266 for (line = 0, bufptr = data.buf - 1, endptr = data.buf + data.len; ++bufptr < endptr;) { in phpdbg_compile_file()
272 dataptr->line[line] = endptr - data.buf; in phpdbg_compile_file()
339 char *bufptr, *endptr; in phpdbg_compile_string() local
349 …for (line = 0, bufptr = dataptr->buf - 1, endptr = dataptr->buf + dataptr->len; ++bufptr < endptr;… in phpdbg_compile_string()
355 dataptr->line[line] = endptr - dataptr->buf; in phpdbg_compile_string()
/PHP-7.1/ext/session/
H A Dsession.c652 char *endptr = NULL; in PHP_INI_MH() local
654 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
655 if (endptr && (*endptr == '\0') in PHP_INI_MH()
670 char *endptr = NULL; in PHP_INI_MH() local
673 if (endptr && (*endptr == '\0') in PHP_INI_MH()
770 const char *endptr = val + vallen; in PS_SERIALIZER_DECODE_FUNC() local
833 const char *endptr = val + vallen;
841 for (p = val; p < endptr; ) {
917 const char *endptr = val + vallen;
927 while (p < endptr) {
[all …]
/PHP-7.1/ext/standard/
H A Dformatted_print.c343 char *endptr; in php_sprintf_getnumber() local
344 register zend_long num = ZEND_STRTOL(&buffer[*pos], &endptr, 10); in php_sprintf_getnumber()
347 if (endptr != NULL) { in php_sprintf_getnumber()
348 i = (endptr - &buffer[*pos]); in php_sprintf_getnumber()
H A Dhtml.c796 char *endptr; in process_numeric_entity() local
808 code_l = ZEND_STRTOL(*buf, &endptr, hexadecimal ? 16 : 10); in process_numeric_entity()
810 *buf = endptr; in process_numeric_entity()
/PHP-7.1/ext/ftp/
H A Dftp.c772 char *endptr, delimiter; in ftp_pasv() local
794 sin6->sin6_port = htons((unsigned short) strtoul(ptr, &endptr, 10)); in ftp_pasv()
795 if (ptr == endptr || *endptr != delimiter) { in ftp_pasv()
/PHP-7.1/ext/mbstring/
H A Dmbstring.c1376 char *endptr = NULL; in PHP_INI_MH() local
1392 c = strtol(ZSTR_VAL(new_value), &endptr, 0); in PHP_INI_MH()
1393 if (*endptr == '\0') { in PHP_INI_MH()

Completed in 84 milliseconds