HomeSort by: relevance | last modified time | path
    Searched refs:endptr (Results 1 - 25 of 344) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/libcxx/include/__support/musl/
xlocale.h 27 static inline long long strtoll_l(const char *nptr, char **endptr, int base,
29 return strtoll(nptr, endptr, base);
32 static inline unsigned long long strtoull_l(const char *nptr, char **endptr,
34 return strtoull(nptr, endptr, base);
37 static inline long long wcstoll_l(const wchar_t *nptr, wchar_t **endptr,
39 return wcstoll(nptr, endptr, base);
43 wchar_t **endptr, int base,
45 return wcstoull(nptr, endptr, base);
48 static inline long double wcstold_l(const wchar_t *nptr, wchar_t **endptr,
50 return wcstold(nptr, endptr);
    [all...]
  /src/external/apache2/llvm/dist/libcxx/include/__support/xlocale/
__strtonum_fallback.h 23 char **endptr, locale_t) {
24 return ::strtof(nptr, endptr);
28 char **endptr, locale_t) {
29 return ::strtod(nptr, endptr);
33 char **endptr, locale_t) {
34 return ::strtold(nptr, endptr);
38 strtoll_l(const char *nptr, char **endptr, int base, locale_t) {
39 return ::strtoll(nptr, endptr, base);
43 strtoull_l(const char *nptr, char **endptr, int base, locale_t) {
44 return ::strtoull(nptr, endptr, base)
    [all...]
  /src/external/bsd/blocklist/port/
_strtoi.h 48 _FUNCNAME(const char * __restrict nptr, char ** __restrict endptr, int base,
56 /* endptr may be NULL */
58 if (endptr == NULL)
59 endptr = &ep;
67 im = __WRAPPED(nptr, endptr, base);
74 if (nptr == *endptr)
77 else if (**endptr != '\0')
  /src/external/gpl2/grep/dist/lib/
strtoumax.c 57 strtoumax (char const *ptr, char **endptr, int base)
60 if (sizeof (uintmax_t) == sizeof function (ptr, endptr, base)) \
61 return function (ptr, endptr, base);
77 char *p, *endptr; local
79 printf ("sizeof strtoull(): %d\n", sizeof strtoull(p, &endptr, 10));
80 printf ("sizeof strtoul(): %d\n", sizeof strtoul(p, &endptr, 10));
  /src/common/dist/zlib/contrib/puff/
bin-writer.c 18 char *endptr; local
19 unsigned char byte = (unsigned char)strtol(hexStr, &endptr, 16);
  /src/common/lib/libc/stdlib/
_strtoi.h 54 _FUNCNAME(const char * __restrict nptr, char ** __restrict endptr, int base,
64 char ** __restrict endptr, int base,
78 /* endptr may be NULL */
80 if (endptr == NULL)
81 endptr = &ep;
91 if (endptr != NULL)
93 *endptr = __UNCONST(nptr);
107 im = __WRAPPED(nptr, endptr, base);
109 im = __WRAPPED_L(nptr, endptr, base, loc);
120 if (*rstatus == 0 && nptr == *endptr)
    [all...]
_strtoul.h 46 _FUNCNAME(const char *nptr, char **endptr, int base)
54 INT_FUNCNAME(_int_, _FUNCNAME, _l)(const char *nptr, char **endptr,
64 /* endptr may be NULL */
70 if (endptr != NULL)
72 *endptr = __UNCONST(nptr);
157 if (endptr != NULL)
159 *endptr = __UNCONST(any ? s - 1 : nptr);
166 _FUNCNAME(const char *nptr, char **endptr, int base)
168 return INT_FUNCNAME(_int_, _FUNCNAME, _l)(nptr, endptr, base, _current_locale());
172 INT_FUNCNAME(, _FUNCNAME, _l)(const char *nptr, char **endptr, int base, locale_t loc
    [all...]
_strtol.h 46 _FUNCNAME(const char *nptr, char **endptr, int base)
54 INT_FUNCNAME(_int_, _FUNCNAME, _l)(const char *nptr, char **endptr,
64 /* endptr may be NULL */
70 if (endptr != NULL)
72 *endptr = __UNCONST(nptr);
194 if (endptr != NULL)
196 *endptr = __UNCONST(any ? s - 1 : nptr);
203 _FUNCNAME(const char *nptr, char **endptr, int base)
205 return INT_FUNCNAME(_int_, _FUNCNAME, _l)(nptr, endptr, base, _current_locale());
209 INT_FUNCNAME(, _FUNCNAME, _l)(const char *nptr, char **endptr, int base, locale_t loc
    [all...]
  /src/lib/libc/locale/
_wcstod.h 61 wchar_t ** __restrict endptr, locale_t loc)
69 /* endptr may be null */
119 if (endptr != NULL)
121 *endptr = __UNCONST(start + (size_t)(end - buf));
128 if (endptr != NULL)
129 *endptr = __UNCONST(nptr);
135 wchar_t ** __restrict endptr)
137 return INT_NAME(_int_, _FUNCNAME, _l)(nptr, endptr, _current_locale());
142 wchar_t ** __restrict endptr, locale_t loc)
144 return INT_NAME(_int_, _FUNCNAME, _l)(nptr, endptr, loc)
    [all...]
_wcstoul.h 52 INT_FUNCNAME(_int_, _FUNCNAME, _l)(const wchar_t *nptr, wchar_t **endptr,
62 /* endptr may be NULL */
120 if (endptr != 0)
121 *endptr = __UNCONST(any ? s - 1 : nptr);
126 _FUNCNAME(const wchar_t *nptr, wchar_t **endptr, int base)
128 return INT_FUNCNAME(_int_, _FUNCNAME, _l)(nptr, endptr, base,
133 INT_FUNCNAME(, _FUNCNAME, _l)(const wchar_t *nptr, wchar_t **endptr,
136 return INT_FUNCNAME(_int_, _FUNCNAME, _l)(nptr, endptr, base, loc);
_wcstol.h 53 INT_FUNCNAME(_int_, _FUNCNAME, _l)(const wchar_t *nptr, wchar_t **endptr,
63 /* endptr may be NULL */
144 if (endptr != 0)
145 *endptr = __UNCONST(any ? s - 1 : nptr);
150 _FUNCNAME(const wchar_t *nptr, wchar_t **endptr, int base)
152 return INT_FUNCNAME(_int_, _FUNCNAME, _l)(nptr, endptr, base,
157 INT_FUNCNAME(, _FUNCNAME, _l)(const wchar_t *nptr, wchar_t **endptr,
160 return INT_FUNCNAME(_int_, _FUNCNAME, _l)(nptr, endptr, base, loc);
  /src/external/bsd/iscsi/dist/src/lib/
strtoll.c 45 strtoll(const char *ptr, const char **endptr, int base)
55 if (endptr != NULL) {
56 *endptr = cp;
  /src/external/bsd/ipf/dist/lib/
genmask.c 19 char *endptr = 0L; local
46 bits = (int)strtol(msk, &endptr, 0);
51 if ((*endptr != '\0') || (bits < 0) || (bits > 128))
56 if (*endptr != '\0' || bits > 32 || bits < 0)
  /src/external/bsd/am-utils/dist/libamu/
mtab.c 173 char *eq, *endptr; local
189 endptr = NULL;
190 i = strtol(eq, &endptr, 0); /* hex and octal allowed ;-) */
191 if (!endptr ||
192 (endptr != eq && (*endptr == ',' || *endptr == '\0'))) {
194 * endptr set means strtol saw a non-digit. If the non-digit is a
232 char *endptr = strchr(eq, ','); local
235 if (!endptr)
    [all...]
  /src/external/lgpl3/mpc/dist/src/
strtoc.c 35 mpc_strtoc (mpc_ptr rop, const char *nptr, char **endptr, int base, mpc_rnd_t rnd)
79 if (endptr != NULL)
80 *endptr = (char*) p;
84 if (endptr != NULL)
85 *endptr = (char*) nptr;
  /src/crypto/external/apache2/openssl/dist/test/
strtoultest.c 19 size_t expect_endptr_offset; /* the expected endptr offset, +1 for NULL */
32 /* pass on base 10 translation, endptr points to 'x' */
60 char *endptr = NULL; local
67 err = OPENSSL_strtoul(test->input, &endptr, test->base, &val);
75 * Confirm that the endptr points to where we expect
77 if (!TEST_ptr_eq(endptr, &test->input[test->expect_endptr_offset]))
bio_prefix_text.c 145 char *endptr; local
165 amount = strtoul(arg, &endptr, 10);
166 if (endptr[0] != '\0') {
192 idx = strtoul(arg, &endptr, 10);
193 if (endptr[0] != ':') {
203 indent = strtoul(colon, &endptr, 10);
204 if (endptr[0] != '\0') {
230 idx = strtoul(arg, &endptr, 10);
231 if (endptr[0] != ':') {
  /src/external/gpl2/diffutils/dist/lib/
strtoimax.c 88 strtoimax (char const *ptr, char **endptr, int base)
96 return strtoll (ptr, endptr, base);
102 return strtol (ptr, endptr, base);
  /src/external/gpl3/gcc/dist/libquadmath/strtod/
strtoflt128.c 50 strtoflt128 (const char *nptr, char **endptr)
52 return ____STRTOF_INTERNAL (nptr, endptr, 0);
  /src/external/gpl3/gcc.old/dist/libquadmath/strtod/
strtoflt128.c 50 strtoflt128 (const char *nptr, char **endptr)
52 return ____STRTOF_INTERNAL (nptr, endptr, 0);
  /src/sys/arch/hpcmips/stand/lcboot/
main.c 457 char *endptr; local
462 p = (const char *) strtoul(opt, &endptr, 16);
463 if (opt == endptr) {
469 limit = (const char *) strtoul(opt, &endptr, 16);
470 if (opt == endptr) {
520 char *endptr; local
537 reclen_bk = reclen = strtoul(s2lbuf, &endptr, 16);
538 if (endptr != &s2lbuf[2])
570 recaddr = strtoul(s2lbuf, &endptr, 16);
571 if (endptr != p
638 char *endptr; local
650 char *endptr; local
712 char *endptr; local
    [all...]
  /src/external/mpl/bind/dist/lib/isccfg/
duration.c 49 char *endptr; local
81 endptr = NULL;
82 lli = strtoll(str + 1, &endptr, 10);
83 if (*endptr != *X) {
103 lli = strtoll(str + 1, &endptr, 10);
104 if (*endptr != *X) {
119 lli = strtoll(str + 1, &endptr, 10);
120 if (*endptr != *X) {
141 lli = strtoll(str + 1, &endptr, 10);
142 if (*endptr != *X)
    [all...]
  /src/external/lgpl2/userspace-rcu/dist/src/
compat-smp.h 69 char *endptr; local
72 cpu_id = strtol(entry->d_name + 3, &endptr, 10);
73 if ((cpu_id < LONG_MAX) && (endptr != entry->d_name + 3)
74 && (*endptr == '\0')) {
215 char *endptr; local
230 cpu_index = strtoul(&pmask[i], &endptr, 10);
232 if ((&pmask[i] != endptr) && (cpu_index < INT_MAX))
  /src/crypto/external/bsd/openssl/dist/test/
bio_prefix_text.c 143 char *endptr; local
164 amount = strtoul(arg, &endptr, 10);
165 if (endptr[0] != '\0') {
191 idx = strtoul(arg, &endptr, 10);
192 if (endptr[0] != ':') {
202 indent = strtoul(colon, &endptr, 10);
203 if (endptr[0] != '\0') {
229 idx = strtoul(arg, &endptr, 10);
230 if (endptr[0] != ':') {
  /src/external/gpl3/gdb.old/dist/sim/or1k/
sim-if.c 96 char *endptr;
98 n = strtoull (arg, &endptr, 0);
99 if (*arg != '\0' && *endptr == '\0')
112 char *endptr;
114 n = strtoull (arg, &endptr, 0);
115 if (*arg != '\0' && *endptr == '\0')
132 char *endptr;
134 n = strtoull (arg, &endptr, 0);
135 if (*arg != '\0' && *endptr == '\0')
95 char *endptr; local
111 char *endptr; local
131 char *endptr; local

Completed in 53 milliseconds

1 2 3 4 5 6 7 8 91011>>