Lines Matching defs:pok
36 static long long scanexp(FILE *f, int pok)
47 if (c-'0'>=10U && pok) shunget(f);
63 static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int pok)
119 e10 = scanexp(f, pok);
121 if (pok) {
314 static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok)
361 if (pok) {
372 e2 = scanexp(f, pok);
374 if (pok) {
426 long double __floatscan(FILE *f, int prec, int pok)
460 if (i==3 || i==8 || (i>3 && pok)) {
463 if (pok) for (; i>3; i--) shunget(f);
480 if (!pok) {
501 return hexfloat(f, bits, emin, sign, pok);
506 return decfloat(f, c, bits, emin, sign, pok);