Searched defs:any (Results 1 - 4 of 4) sorted by relevance

/bionic/libc/stdlib/
H A Dstrtoimax.c48 int neg, any, cutlim; local
51 * Skip white space and pick up leading +/- sign if any.
91 * Set any if any `digits' consumed; make it negative to indicate
135 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
144 if (any < 0)
148 any = -1;
152 any = 1;
158 any = -1;
162 any
[all...]
H A Dstrtol.c49 int neg, any, cutlim; local
52 * Skip white space and pick up leading +/- sign if any.
91 * Set any if any `digits' consumed; make it negative to indicate
104 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
113 if (any < 0)
117 any = -1;
121 any = 1;
127 any = -1;
131 any
[all...]
H A Dstrtoul.c48 int neg, any, cutlim; local
76 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
85 if (any < 0)
88 any = -1;
92 any = 1;
97 if (neg && any > 0)
100 *endptr = (char *) (any ? s - 1 : nptr);
H A Dstrtoumax.c48 int neg, any, cutlim; local
89 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
98 if (any < 0)
101 any = -1;
105 any = 1;
110 if (neg && any > 0)
113 *endptr = (char *) (any ? s - 1 : nptr);

Completed in 70 milliseconds