Searched refs:endptr (Results 1 - 12 of 12) sorted by relevance
| /PHP_5_3/Zend/ |
| H A D | zend_strtod.c | 2591 ZEND_API double zend_hex_strtod(const char *str, char **endptr) argument 2617 if (endptr != NULL) { 2618 *endptr = (char *)(any ? s - 1 : str); 2624 ZEND_API double zend_oct_strtod(const char *str, char **endptr) argument 2645 if (endptr != NULL) { 2646 *endptr = (char *)(any ? s - 1 : str);
|
| H A D | zend_strtod.h | 31 ZEND_API double zend_hex_strtod(const char *str, char **endptr); 32 ZEND_API double zend_oct_strtod(const char *str, char **endptr);
|
| /PHP_5_3/win32/ |
| H A D | php_strtoi64.h | 5 PHPAPI int64_t _strtoi64(const char *nptr, char **endptr, int base);
|
| H A D | strtoi64.c | 8 PHPAPI int64_t _strtoi64(const char *nptr, char **endptr, int base) argument 46 if (endptr != NULL) { 47 *endptr = (char *)(any ? s - 1 : nptr); 117 if (endptr != NULL) { 118 *endptr = (char *)(any ? s - 1 : nptr);
|
| /PHP_5_3/ext/intl/collator/ |
| H A D | collator_is_numeric.c | 34 static double collator_u_strtod(const UChar *nptr, UChar **endptr) /* {{{ */ argument 106 if (endptr != NULL) { 107 *endptr = (UChar *)u; 113 if (endptr != NULL) { 114 *endptr = (UChar *)nptr; 128 static long collator_u_strtol(nptr, endptr, base) 130 UChar **endptr; 141 if (endptr != NULL) { 142 *endptr = NULL; 215 if (endptr ! [all...] |
| /PHP_5_3/ext/ftp/ |
| H A D | ftp.c | 721 char *endptr, delimiter; local 743 sin6->sin6_port = htons((unsigned short) strtoul(ptr, &endptr, 10)); 744 if (ptr == endptr || *endptr != delimiter) {
|
| /PHP_5_3/ext/mbstring/ |
| H A D | mbstring.c | 1172 char *endptr = NULL; local 1188 c = strtol(new_value, &endptr, 0); 1189 if (*endptr == '\0') {
|
| /PHP_5_3/ext/session/ |
| H A D | session.c | 741 char *endptr = NULL; local 747 val = strtol(new_value, &endptr, 10); 748 if (endptr && (*endptr == '\0')) { 862 const char *endptr = val + vallen; local 870 for (p = val; p < endptr; ) { 874 if (namelen < 0 || namelen > PS_BIN_MAX || (p + namelen) >= endptr) { 893 if (php_var_unserialize(¤t, (const unsigned char **) &p, (const unsigned char *) endptr, &var_hash TSRMLS_CC)) { 950 const char *endptr = val + vallen; local 960 while (p < endptr) { [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | formatted_print.c | 332 char *endptr; local 333 register long num = strtol(&buffer[*pos], &endptr, 10); 336 if (endptr != NULL) { 337 i = (endptr - &buffer[*pos]);
|
| /PHP_5_3/ext/pcre/pcrelib/ |
| H A D | pcre_compile.c | 2711 endptr where to return the end pointer 2717 check_posix_syntax(const pcre_uchar *ptr, const pcre_uchar **endptr) argument 2730 *endptr = ptr; 2736 check_posix_syntax(ptr, endptr))
|
| H A D | pcre_exec.c | 193 PCRE_PUCHAR endptr = p + length; local 194 while (p < endptr)
|
| H A D | pcre_newline.c | 68 endptr pointer to the end of the string 76 PRIV(is_newline)(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR endptr, int *lenptr, argument 95 case CHAR_CR: *lenptr = (ptr < endptr - 1 && ptr[1] == CHAR_LF)? 2 : 1; 112 *lenptr = (ptr < endptr - 1 && ptr[1] == CHAR_LF)? 2 : 1;
|
Completed in 72 milliseconds