Searched refs:shgetc (Results 1 – 5 of 5) sorted by relevance
64 while (isspace((c=shgetc(f)))); in __intscan()67 c = shgetc(f); in __intscan()70 c = shgetc(f); in __intscan()72 c = shgetc(f); in __intscan()93 for (x=0; c-'0'<10U && x<=UINT_MAX/10-1; c=shgetc(f)) in __intscan()95 for (y=x; c-'0'<10U && y<=ULLONG_MAX/10 && 10*y<=ULLONG_MAX-(c-'0'); c=shgetc(f)) in __intscan()100 for (x=0; val[c]<base && x<=UINT_MAX/32; c=shgetc(f)) in __intscan()102 for (y=x; val[c]<base && y<=ULLONG_MAX>>bs; c=shgetc(f)) in __intscan()105 for (x=0; val[c]<base && x<=UINT_MAX/36-1; c=shgetc(f)) in __intscan()107 for (y=x; val[c]<base && y<=ULLONG_MAX/base && base*y<=ULLONG_MAX-val[c]; c=shgetc(f)) in __intscan()[all …]
67 c = shgetc(f); in scanexp()70 c = shgetc(f); in scanexp()77 for (x=0; c-'0'<10U && x<INT_MAX/10; c = shgetc(f)) in scanexp()79 for (y=x; c-'0'<10U && y<LLONG_MAX/100; c = shgetc(f)) in scanexp()81 for (; c-'0'<10U; c = shgetc(f)); in scanexp()110 for (; c=='0'; c = shgetc(f)) gotdig=1; in decfloat()113 for (c = shgetc(f); c=='0'; c = shgetc(f)) gotdig=1, lrp--; in decfloat()117 for (; c-'0'<10U || c=='.'; c = shgetc(f)) { in decfloat()345 c = shgetc(f); in hexfloat()348 for (; c=='0'; c = shgetc(f)) gotdig = 1; in hexfloat()[all …]
27 int shgetc(struct fake_file_t *);
12 int shgetc(struct fake_file_t *f) { in shgetc() function
156 src/wcstox/shgetc.c \