Searched refs:endptr (Results 1 - 16 of 16) sorted by relevance

/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtold.c23 __strtold_internal (const char *nptr, char **endptr, int group) argument
25 return __strtod_internal (nptr, endptr, group);
29 strtold (const char *nptr, char **endptr) argument
31 return __strtod_internal (nptr, endptr, 0);
H A Dstrtol.c226 INTERNAL (strtol) (nptr, endptr, base, group LOCALE_PARAM)
228 STRING_TYPE **endptr; variable
486 if (endptr != NULL)
487 *endptr = (STRING_TYPE *) s;
517 if (endptr != NULL)
521 *endptr = (STRING_TYPE *) &save[-1];
524 *endptr = (STRING_TYPE *) nptr;
541 INT strtol PARAMS ((const STRING_TYPE *nptr, STRING_TYPE **endptr, int base));
549 strtol (nptr, endptr, base LOCALE_PARAM)
551 STRING_TYPE **endptr; variable
[all...]
H A Dstrtod.c193 do { if (endptr != NULL) *endptr = (STRING_TYPE *) (end); \
435 INTERNAL (STRTOF) (nptr, endptr, group LOCALE_PARAM)
437 STRING_TYPE **endptr; variable
586 if (endptr != NULL)
587 *endptr = (STRING_TYPE *)
630 if (endptr != NULL)
631 *endptr = (STRING_TYPE *) cp;
912 if (endptr)
913 *endptr
1589 STRING_TYPE **endptr; variable
[all...]
/haiku/src/system/libroot/posix/glibc/wcsmbs/
H A Dwcstold.c51 __wcstold_internal (const wchar_t *nptr, wchar_t **endptr, int group) argument
53 return __wcstod_internal (nptr, endptr, group);
58 wcstold (const wchar_t *nptr, wchar_t **endptr)
60 return __wcstod_internal (nptr, endptr, 0);
/haiku/src/kits/network/libnetservices/
H A DHttpResult.cpp88 char *endptr = NULL; local
89 result = strtoull(length, &endptr, 10);
92 if (errno != 0 || *endptr != '\0')
/haiku/src/system/libroot/posix/stdlib/
H A Dstrtoll.c50 strtoll(const char * __restrict nptr, char ** __restrict endptr, int base) argument
147 if (endptr != NULL)
148 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtol.c51 strtol(const char * __restrict nptr, char ** __restrict endptr, int base) argument
146 if (endptr != NULL)
147 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoull.c50 strtoull(const char * __restrict nptr, char ** __restrict endptr, int base) argument
124 if (endptr != NULL)
125 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoul.c51 strtoul(const char * __restrict nptr, char ** __restrict endptr, int base) argument
125 if (endptr != NULL)
126 *endptr = (char *)(any ? s - 1 : nptr);
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_common.h113 char *endptr; local
121 size = strtoull(str, &endptr, 0);
126 if (*endptr == ' ')
127 endptr++;
129 switch (*endptr){
/haiku/src/libs/util/
H A Dpidfile.c66 char buf[16], *endptr; local
80 *pidptr = strtol(buf, &endptr, 10);
81 if (endptr != &buf[i])
/haiku/src/libs/libfdt/
H A Dfdt_overlay.c449 char *sep, *endptr; local
479 poffset = strtoul(sep + 1, &endptr, 10);
480 if ((*endptr != '\0') || (endptr <= (sep + 1)))
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_debug.c1196 char *endptr; local
1207 result = strtoul(buf + 5, &endptr, 10);
1208 if (errno == 0 && *endptr == '\0' && result <= 0xffffU)
1219 char *endptr; local
1230 result = strtoul(buf + 4, &endptr, 10);
1231 if (errno == 0 && *endptr == '\0' && result <= 0xffffU)
/haiku/src/add-ons/kernel/file_systems/nfs/
H A Dnfs_add_on.c59 const char *str, *endptr; local
67 endptr = str + strlen(str);
68 conf_high_port = (int16)strtoul(str, (char **)&endptr, 10);
72 endptr = str + strlen(str);
73 conf_low_port = (int16)strtoul(str, (char **)&endptr, 10);
82 endptr = str + strlen(str);
83 conf_call_timeout = (bigtime_t)1000 * strtoul(str, (char **)&endptr, 10);
90 endptr = str + strlen(str);
91 conf_call_tries = strtoul(str, (char **)&endptr, 10);
/haiku/src/bin/fwcontrol/
H A Dfwcontrol.c139 char *endptr; local
148 node = strtol(nodestr, &endptr, 0);
149 if (*endptr == '\0')
/haiku/src/system/kernel/
H A Dsem.cpp234 char* endptr; local
235 num = strtoul(argv[1], &endptr, 0);
237 if (endptr != argv[1]) {

Completed in 143 milliseconds