Lines Matching refs:shgetc
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()
352 c = shgetc(f); in hexfloat()
354 for (rp=0; c=='0'; c = shgetc(f), rp--) gotdig = 1; in hexfloat()
357 for (; c-'0'<10U || (c|32)-'a'<6U || c=='.'; c = shgetc(f)) { in hexfloat()
469 while (isspace((c=shgetc(f)))); in __floatscan()
473 c = shgetc(f); in __floatscan()
477 if (i<7) c = shgetc(f); in __floatscan()
486 if (i<2) c = shgetc(f); in __floatscan()
488 if (shgetc(f) != '(') { in __floatscan()
493 c = shgetc(f); in __floatscan()
517 c = shgetc(f); in __floatscan()