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