Home
last modified time | relevance | path

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

/PHP-7.0/ext/intl/collator/
H A Dcollator_is_numeric.c34 static double collator_u_strtod(const UChar *nptr, UChar **endptr) /* {{{ */ in collator_u_strtod() argument
106 if (endptr != NULL) { in collator_u_strtod()
107 *endptr = (UChar *)u; in collator_u_strtod()
113 if (endptr != NULL) { in collator_u_strtod()
114 *endptr = (UChar *)nptr; in collator_u_strtod()
128 static zend_long collator_u_strtol(nptr, endptr, base) in collator_u_strtol() argument
130 UChar **endptr;
141 if (endptr != NULL) {
142 *endptr = NULL;
215 if (endptr != NULL)
[all …]
/PHP-7.0/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.c4428 if (endptr != NULL) { in zend_hex_strtod()
4429 *endptr = str; in zend_hex_strtod()
4453 if (endptr != NULL) { in zend_hex_strtod()
4454 *endptr = any ? s - 1 : str; in zend_hex_strtod()
4468 if (endptr != NULL) { in zend_oct_strtod()
4469 *endptr = str; in zend_oct_strtod()
4488 if (endptr != NULL) { in zend_oct_strtod()
4489 *endptr = any ? s - 1 : str; in zend_oct_strtod()
4503 if (endptr != NULL) { in zend_bin_strtod()
4504 *endptr = str; in zend_bin_strtod()
[all …]
/PHP-7.0/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.0/sapi/phpdbg/
H A Dphpdbg_list.c240 char *bufptr, *endptr; in phpdbg_compile_file() local
265 for (line = 0, bufptr = data.buf - 1, endptr = data.buf + data.len; ++bufptr < endptr;) { in phpdbg_compile_file()
271 dataptr->line[line] = endptr - data.buf; in phpdbg_compile_file()
338 char *bufptr, *endptr; in phpdbg_compile_string() local
348 …for (line = 0, bufptr = dataptr->buf - 1, endptr = dataptr->buf + dataptr->len; ++bufptr < endptr;… in phpdbg_compile_string()
354 dataptr->line[line] = endptr - dataptr->buf; in phpdbg_compile_string()
/PHP-7.0/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.0/ext/session/
H A Dsession.c766 char *endptr = NULL; in PHP_INI_MH() local
772 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
773 if (endptr && (*endptr == '\0')) { in PHP_INI_MH()
906 const char *endptr = val + vallen; in PS_SERIALIZER_DECODE_FUNC() local
915 &session_vars, (const unsigned char **)&val, (const unsigned char *)endptr, &var_hash); in PS_SERIALIZER_DECODE_FUNC()
969 const char *endptr = val + vallen;
978 for (p = val; p < endptr; ) {
983 if (namelen < 0 || namelen > PS_BIN_MAX || (p + namelen) >= endptr) {
1065 const char *endptr = val + vallen;
1076 while (p < endptr) {
[all …]
/PHP-7.0/ext/ftp/
H A Dftp.c767 char *endptr, delimiter; in ftp_pasv() local
789 sin6->sin6_port = htons((unsigned short) strtoul(ptr, &endptr, 10)); in ftp_pasv()
790 if (ptr == endptr || *endptr != delimiter) { in ftp_pasv()
/PHP-7.0/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 110 milliseconds