Lines Matching refs:emin
63 static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int pok) in decfloat() argument
74 int emax = -emin-bits+3; in decfloat()
145 if (lrp > -emin/2) { in decfloat()
149 if (lrp < emin-2*LDBL_MANT_DIG) { in decfloat()
266 if (bits > LDBL_MANT_DIG+e2-emin) { in decfloat()
267 bits = LDBL_MANT_DIG+e2-emin; in decfloat()
302 if (denormal && bits==LDBL_MANT_DIG+e2-emin) in decfloat()
314 static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok) in hexfloat() argument
388 if (e2 > -emin) { in hexfloat()
392 if (e2 < emin-2*LDBL_MANT_DIG) { in hexfloat()
408 if (bits > 32+e2-emin) { in hexfloat()
409 bits = 32+e2-emin; in hexfloat()
431 int emin; in __floatscan() local
437 emin = FLT_MIN_EXP-bits; in __floatscan()
441 emin = DBL_MIN_EXP-bits; in __floatscan()
445 emin = LDBL_MIN_EXP-bits; in __floatscan()
501 return hexfloat(f, bits, emin, sign, pok); in __floatscan()
506 return decfloat(f, c, bits, emin, sign, pok); in __floatscan()