Lines Matching defs:pok
138 static unsigned long long ffintscan(FFFILE *f, unsigned base, int pok, unsigned long long lim)
159 if (pok) shunget(f);
214 static long long scanexp(FFFILE *f, int pok)
225 if (c-'0'>=10U && pok) shunget(f);
245 static double decfloat(FFFILE *f, int c, int bits, int emin, int sign, int pok)
301 e10 = scanexp(f, pok);
303 if (pok) {
497 static double hexfloat(FFFILE *f, int bits, int emin, int sign, int pok)
545 if (pok) {
556 e2 = scanexp(f, pok);
558 if (pok) {
610 static double fffloatscan(FFFILE *f, int prec, int pok)
644 if (i==3 || i==8 || (i>3 && pok)) {
647 if (pok) for (; i>3; i--) shunget(f);
664 if (!pok) {
685 return hexfloat(f, bits, emin, sign, pok);
690 return decfloat(f, c, bits, emin, sign, pok);