Searched refs:shgetc (Results 1 - 5 of 5) sorted by relevance

/fuchsia/zircon/third_party/ulib/musl/src/internal/
H A Dintscan.c1 #include "shgetc.h"
30 while (isspace((c = shgetc(f))))
34 c = shgetc(f);
37 c = shgetc(f);
39 c = shgetc(f);
63 for (x = 0; c >= '0' && c <= '9' && x <= UINT_MAX / 10 - 1; c = shgetc(f))
66 c = shgetc(f))
72 for (x = 0; val[c] < base && x <= UINT_MAX / 32; c = shgetc(f))
74 for (y = x; val[c] < base && y <= ULLONG_MAX >> bs; c = shgetc(f))
77 for (x = 0; val[c] < base && x <= UINT_MAX / 36 - 1; c = shgetc(
[all...]
H A Dshgetc.h8 #define shgetc(f) (((f)->rpos < (f)->shend) ? *(f)->rpos++ : __shgetc(f)) macro
H A Dfloatscan.c10 #include "shgetc.h"
45 c = shgetc(f);
48 c = shgetc(f);
56 for (x = 0; c >= '0' && c <= '9' && x < INT_MAX / 10; c = shgetc(f))
58 for (y = x; c >= '0' && c <= '9' && y < LLONG_MAX / 100; c = shgetc(f))
60 for (; c >= '0' && c <= '9'; c = shgetc(f))
87 for (; c == '0'; c = shgetc(f))
91 for (c = shgetc(f); c == '0'; c = shgetc(f))
96 for (; (c >= '0' && c <= '9') || c == '.'; c = shgetc(
[all...]
/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A Dvfscanf.c12 #include "shgetc.h"
86 while (isspace(shgetc(f)))
95 c = shgetc(f);
199 while (isspace(shgetc(f)))
206 if (shgetc(f) < 0)
256 while (scanset[(c = shgetc(f)) + 1]) {
279 while (scanset[(c = shgetc(f)) + 1]) {
290 while (scanset[(c = shgetc(f)) + 1])
293 while (scanset[(c = shgetc(f)) + 1])
/fuchsia/zircon/third_party/ulib/musl/
H A Dmusl-rules.mk252 $(LOCAL_DIR)/src/internal/shgetc.c \

Completed in 30 milliseconds