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

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/busybox/libbb/
H A Dbb_strtonum.c23 * char *endptr;
26 * bb_strtoi(minus, &endptr, 0); // must set ERANGE
27 * printf("minus:%p endptr:%p errno:%d EINVAL:%d\n", minus, endptr, errno, EINVAL);
29 * bb_strtoi("-0-", &endptr, 0); // must set EINVAL and point to second '-'
30 * printf("endptr[0]:%c errno:%d EINVAL:%d\n", endptr[0], errno, EINVAL);
39 static unsigned long long handle_errors(unsigned long long v, char **endp, char *endptr) argument
41 if (endp) *endp = endptr;
44 if (endptr[
58 char *endptr; local
75 char *endptr; local
92 char *endptr; local
105 char *endptr; local
120 char *endptr; local
134 char *endptr; local
[all...]
H A Dbb_strtod.c19 char *endptr;
25 v = strtod(arg, &endptr);
27 *endp = endptr;
28 if (endptr[0]) {
30 if (isalnum(endptr[0]) || errno) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/busybox/libbb/
H A Dbb_strtonum.c23 * char *endptr;
26 * bb_strtoi(minus, &endptr, 0); // must set ERANGE
27 * printf("minus:%p endptr:%p errno:%d EINVAL:%d\n", minus, endptr, errno, EINVAL);
29 * bb_strtoi("-0-", &endptr, 0); // must set EINVAL and point to second '-'
30 * printf("endptr[0]:%c errno:%d EINVAL:%d\n", endptr[0], errno, EINVAL);
39 static unsigned long long handle_errors(unsigned long long v, char **endp, char *endptr) argument
41 if (endp) *endp = endptr;
44 if (endptr[
58 char *endptr; local
75 char *endptr; local
92 char *endptr; local
105 char *endptr; local
120 char *endptr; local
134 char *endptr; local
[all...]
H A Dbb_strtod.c19 char *endptr;
25 v = strtod(arg, &endptr);
27 *endp = endptr;
28 if (endptr[0]) {
30 if (isalnum(endptr[0]) || errno) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/busybox/libbb/
H A Dbb_strtonum.c23 * char *endptr;
26 * bb_strtoi(minus, &endptr, 0); // must set ERANGE
27 * printf("minus:%p endptr:%p errno:%d EINVAL:%d\n", minus, endptr, errno, EINVAL);
29 * bb_strtoi("-0-", &endptr, 0); // must set EINVAL and point to second '-'
30 * printf("endptr[0]:%c errno:%d EINVAL:%d\n", endptr[0], errno, EINVAL);
39 static unsigned long long handle_errors(unsigned long long v, char **endp, char *endptr) argument
41 if (endp) *endp = endptr;
44 if (endptr[
58 char *endptr; local
75 char *endptr; local
92 char *endptr; local
105 char *endptr; local
120 char *endptr; local
134 char *endptr; local
[all...]
H A Dbb_strtod.c19 char *endptr;
25 v = strtod(arg, &endptr);
27 *endp = endptr;
28 if (endptr[0]) {
30 if (isalnum(endptr[0]) || errno) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/flac/src/share/grabbag/
H A Dseektable.c30 static FLAC__int64 local__strtoll(const char *src, char **endptr) argument
48 if(endptr)
49 *endptr = (char*)src;
109 char *endptr; local
111 const FLAC__int64 n = local__strtoll(pt, &endptr);
113 const FLAC__int64 n = (FLAC__int64)strtoll(pt, &endptr, 10);
116 (n > 0 || (endptr > pt && *endptr == ';')) && /* is a valid number (extra check needed for "0") */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/flac/src/share/grabbag/
H A Dseektable.c30 static FLAC__int64 local__strtoll(const char *src, char **endptr) argument
48 if(endptr)
49 *endptr = (char*)src;
109 char *endptr; local
111 const FLAC__int64 n = local__strtoll(pt, &endptr);
113 const FLAC__int64 n = (FLAC__int64)strtoll(pt, &endptr, 10);
116 (n > 0 || (endptr > pt && *endptr == ';')) && /* is a valid number (extra check needed for "0") */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/flac/src/share/grabbag/
H A Dseektable.c30 static FLAC__int64 local__strtoll(const char *src, char **endptr) argument
48 if(endptr)
49 *endptr = (char*)src;
109 char *endptr; local
111 const FLAC__int64 n = local__strtoll(pt, &endptr);
113 const FLAC__int64 n = (FLAC__int64)strtoll(pt, &endptr, 10);
116 (n > 0 || (endptr > pt && *endptr == ';')) && /* is a valid number (extra check needed for "0") */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/curl-7.21.7/lib/
H A Dstrtoofft.c58 curlx_strtoll(const char *nptr, char **endptr, int base) argument
83 if(endptr) {
84 *endptr = end;
141 if(endptr)
142 *endptr = end;
H A Dstrtoofft.h51 curl_off_t curlx_strtoll(const char *nptr, char **endptr, int base);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/lib/
H A Dcmdline.c131 char *endptr; /* local pointer to end of parsed string */ local
133 unsigned long long ret = simple_strtoull(ptr, &endptr, 0);
135 switch (*endptr) {
145 endptr++;
151 *retptr = endptr;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/lib/
H A Dcmdline.c131 char *endptr; /* local pointer to end of parsed string */ local
133 unsigned long long ret = simple_strtoull(ptr, &endptr, 0);
135 switch (*endptr) {
145 endptr++;
151 *retptr = endptr;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/curl-7.21.7/lib/
H A Dstrtoofft.c58 curlx_strtoll(const char *nptr, char **endptr, int base) argument
83 if(endptr) {
84 *endptr = end;
141 if(endptr)
142 *endptr = end;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/curl-7.21.7/lib/
H A Dstrtoofft.c58 curlx_strtoll(const char *nptr, char **endptr, int base) argument
83 if(endptr) {
84 *endptr = end;
141 if(endptr)
142 *endptr = end;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/curl-7.21.7/tests/libtest/
H A Dfirst.c77 char *endptr; local
78 long num = strtol(env, &endptr, 10);
79 if((endptr != env) && (endptr == env + strlen(env)) && (num > 0))
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/clib/
H A Dstrtol.c51 strtol(nptr, endptr, base)
53 char ** endptr;
139 if (endptr != NULL)
140 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoul.c51 strtoul(nptr, endptr, base)
53 char ** endptr;
118 if (endptr != NULL)
119 *endptr = (char *)(any ? s - 1 : nptr);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/curl-7.21.7/tests/libtest/
H A Dfirst.c77 char *endptr; local
78 long num = strtol(env, &endptr, 10);
79 if((endptr != env) && (endptr == env + strlen(env)) && (num > 0))
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/clib/
H A Dstrtol.c51 strtol(nptr, endptr, base)
53 char ** endptr;
139 if (endptr != NULL)
140 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoul.c51 strtoul(nptr, endptr, base)
53 char ** endptr;
118 if (endptr != NULL)
119 *endptr = (char *)(any ? s - 1 : nptr);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/curl-7.21.7/tests/libtest/
H A Dfirst.c77 char *endptr; local
78 long num = strtol(env, &endptr, 10);
79 if((endptr != env) && (endptr == env + strlen(env)) && (num > 0))
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/clib/
H A Dstrtol.c51 strtol(nptr, endptr, base)
53 char ** endptr;
139 if (endptr != NULL)
140 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoul.c51 strtoul(nptr, endptr, base)
53 char ** endptr;
118 if (endptr != NULL)
119 *endptr = (char *)(any ? s - 1 : nptr);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/gdb/
H A Dauxv.h37 gdb_byte **readptr, gdb_byte *endptr,

Completed in 131 milliseconds

1234567891011>>