Home
last modified time | relevance | path

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

/PHP-5.3/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 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-5.3/win32/
H A Dstrtoi64.c8 PHPAPI int64_t _strtoi64(const char *nptr, char **endptr, int base) in _strtoi64() argument
46 if (endptr != NULL) { in _strtoi64()
47 *endptr = (char *)(any ? s - 1 : nptr); in _strtoi64()
117 if (endptr != NULL) { in _strtoi64()
118 *endptr = (char *)(any ? s - 1 : nptr); in _strtoi64()
H A Dphp_strtoi64.h5 PHPAPI int64_t _strtoi64(const char *nptr, char **endptr, int base);
/PHP-5.3/Zend/
H A Dzend_strtod.h31 ZEND_API double zend_hex_strtod(const char *str, char **endptr);
32 ZEND_API double zend_oct_strtod(const char *str, char **endptr);
H A Dzend_strtod.c2591 ZEND_API double zend_hex_strtod(const char *str, char **endptr) in zend_hex_strtod() argument
2617 if (endptr != NULL) { in zend_hex_strtod()
2618 *endptr = (char *)(any ? s - 1 : str); in zend_hex_strtod()
2624 ZEND_API double zend_oct_strtod(const char *str, char **endptr) in zend_oct_strtod() argument
2645 if (endptr != NULL) { in zend_oct_strtod()
2646 *endptr = (char *)(any ? s - 1 : str); in zend_oct_strtod()
/PHP-5.3/ext/pcre/pcrelib/
H A Dpcre_newline.c76 PRIV(is_newline)(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR endptr, int *lenptr, in PRIV()
95 case CHAR_CR: *lenptr = (ptr < endptr - 1 && ptr[1] == CHAR_LF)? 2 : 1; in PRIV()
112 *lenptr = (ptr < endptr - 1 && ptr[1] == CHAR_LF)? 2 : 1; in PRIV()
H A Dpcre_compile.c2717 check_posix_syntax(const pcre_uchar *ptr, const pcre_uchar **endptr) in check_posix_syntax() argument
2730 *endptr = ptr; in check_posix_syntax()
2736 check_posix_syntax(ptr, endptr)) in check_posix_syntax()
H A Dpcre_exec.c193 PCRE_PUCHAR endptr = p + length; in match_ref() local
194 while (p < endptr) in match_ref()
/PHP-5.3/ext/session/
H A Dsession.c742 char *endptr = NULL; in PHP_INI_MH() local
748 val = strtol(new_value, &endptr, 10); in PHP_INI_MH()
749 if (endptr && (*endptr == '\0')) { in PHP_INI_MH()
863 const char *endptr = val + vallen;
871 for (p = val; p < endptr; ) {
875 if (namelen < 0 || namelen > PS_BIN_MAX || (p + namelen) >= endptr) {
894 …if (php_var_unserialize(&current, (const unsigned char **) &p, (const unsigned char *) endptr, &va…
951 const char *endptr = val + vallen;
961 while (p < endptr) {
965 if (++q >= endptr) goto break_outer_loop;
[all …]
/PHP-5.3/ext/standard/
H A Dformatted_print.c332 char *endptr; in php_sprintf_getnumber() local
333 register long num = strtol(&buffer[*pos], &endptr, 10); in php_sprintf_getnumber()
336 if (endptr != NULL) { in php_sprintf_getnumber()
337 i = (endptr - &buffer[*pos]); in php_sprintf_getnumber()
/PHP-5.3/ext/ftp/
H A Dftp.c721 char *endptr, delimiter; in ftp_pasv() local
743 sin6->sin6_port = htons((unsigned short) strtoul(ptr, &endptr, 10)); in ftp_pasv()
744 if (ptr == endptr || *endptr != delimiter) { in ftp_pasv()
/PHP-5.3/ext/mbstring/
H A Dmbstring.c1172 char *endptr = NULL; in PHP_INI_MH() local
1188 c = strtol(new_value, &endptr, 0); in PHP_INI_MH()
1189 if (*endptr == '\0') { in PHP_INI_MH()

Completed in 66 milliseconds