Lines Matching refs:shgetc
43 c = shgetc(f); in scanexp()
46 c = shgetc(f); in scanexp()
53 for (x=0; c-'0'<10U && x<INT_MAX/10; c = shgetc(f)) in scanexp()
55 for (y=x; c-'0'<10U && y<LLONG_MAX/100; c = shgetc(f)) in scanexp()
57 for (; c-'0'<10U; c = shgetc(f)); in scanexp()
86 for (; c=='0'; c = shgetc(f)) gotdig=1; in decfloat()
89 for (c = shgetc(f); c=='0'; c = shgetc(f)) gotdig=1, lrp--; in decfloat()
93 for (; c-'0'<10U || c=='.'; c = shgetc(f)) { in decfloat()
327 c = shgetc(f); in hexfloat()
330 for (; c=='0'; c = shgetc(f)) gotdig = 1; in hexfloat()
334 c = shgetc(f); in hexfloat()
336 for (rp=0; c=='0'; c = shgetc(f), rp--) gotdig = 1; in hexfloat()
339 for (; c-'0'<10U || (c|32)-'a'<6U || c=='.'; c = shgetc(f)) { in hexfloat()
451 while (isspace((c=shgetc(f)))); in __floatscan()
455 c = shgetc(f); in __floatscan()
459 if (i<7) c = shgetc(f); in __floatscan()
468 if (i<2) c = shgetc(f); in __floatscan()
470 if (shgetc(f) != '(') { in __floatscan()
475 c = shgetc(f); in __floatscan()
499 c = shgetc(f); in __floatscan()