Home
last modified time | relevance | path

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

/PHP-5.5/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.5/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.5/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.c2586 ZEND_API double zend_hex_strtod(const char *str, const char **endptr) in zend_hex_strtod() argument
2594 *endptr = str; in zend_hex_strtod()
2617 if (endptr != NULL) { in zend_hex_strtod()
2618 *endptr = any ? s - 1 : str; in zend_hex_strtod()
2624 ZEND_API double zend_oct_strtod(const char *str, const char **endptr) in zend_oct_strtod() argument
2632 *endptr = str; in zend_oct_strtod()
2650 if (endptr != NULL) { in zend_oct_strtod()
2651 *endptr = any ? s - 1 : str; in zend_oct_strtod()
2665 *endptr = str; in zend_bin_strtod()
2693 if (NULL != endptr) { in zend_bin_strtod()
[all …]
/PHP-5.5/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_exec.c210 PCRE_PUCHAR endptr = p + length; in match_ref() local
211 while (p < endptr) in match_ref()
H A Dpcre_compile.c3933 check_posix_syntax(const pcre_uchar *ptr, const pcre_uchar **endptr) in check_posix_syntax() argument
3947 *endptr = ptr; in check_posix_syntax()
/PHP-5.5/ext/standard/
H A Dformatted_print.c346 char *endptr; in php_sprintf_getnumber() local
347 register long num = strtol(&buffer[*pos], &endptr, 10); in php_sprintf_getnumber()
350 if (endptr != NULL) { in php_sprintf_getnumber()
351 i = (endptr - &buffer[*pos]); in php_sprintf_getnumber()
H A Dhtml.c783 char *endptr; in process_numeric_entity() local
795 code_l = strtol(*buf, &endptr, hexadecimal ? 16 : 10); in process_numeric_entity()
797 *buf = endptr; in process_numeric_entity()
/PHP-5.5/ext/session/
H A Dsession.c700 char *endptr = NULL; in PHP_INI_MH() local
706 val = strtol(new_value, &endptr, 10); in PHP_INI_MH()
707 if (endptr && (*endptr == '\0')) { in PHP_INI_MH()
860 const char *endptr = val + vallen; in PS_SERIALIZER_DECODE_FUNC() local
866 if (php_var_unserialize(&session_vars, &val, endptr, &var_hash TSRMLS_CC)) { in PS_SERIALIZER_DECODE_FUNC()
921 const char *endptr = val + vallen;
929 for (p = val; p < endptr; ) {
933 if (namelen < 0 || namelen > PS_BIN_MAX || (p + namelen) >= endptr) {
1013 const char *endptr = val + vallen;
1023 while (p < endptr) {
[all …]
/PHP-5.5/ext/ftp/
H A Dftp.c731 char *endptr, delimiter; in ftp_pasv() local
753 sin6->sin6_port = htons((unsigned short) strtoul(ptr, &endptr, 10)); in ftp_pasv()
754 if (ptr == endptr || *endptr != delimiter) { in ftp_pasv()
/PHP-5.5/ext/mbstring/
H A Dmbstring.c1363 char *endptr = NULL; in PHP_INI_MH() local
1379 c = strtol(new_value, &endptr, 0); in PHP_INI_MH()
1380 if (*endptr == '\0') { in PHP_INI_MH()

Completed in 76 milliseconds