Lines Matching full:min_exp
41 # define MIN_EXP LDBL_MIN_EXP
54 # define MIN_EXP DBL_MIN_EXP
81 if (exponent < MIN_EXP - 1)
83 x = LDEXP (x, exponent - (MIN_EXP - 1));
84 exponent = MIN_EXP - 1;
130 x * 2^exponent = argument, x < 1.0, exponent >= MIN_EXP - 1. */
135 if (exponent - (1 << i) < MIN_EXP - 1)
147 /* Here either x < 1.0 and exponent - 2^i < MIN_EXP - 1 <= exponent,
148 or 1.0 <= x < 2^2^i and exponent >= MIN_EXP - 1. */
152 exponent - 2^i < MIN_EXP - 1 <= exponent. */
156 if (exponent - (1 << i) >= MIN_EXP - 1)
165 /* Here either x < 1.0 and exponent = MIN_EXP - 1,
166 or 1.0 <= x < 2^2^i and exponent >= MIN_EXP - 1. */
170 either x < 1.0 and exponent = MIN_EXP - 1,
171 or 1.0 <= x < 2^2^i and exponent >= MIN_EXP - 1. */
181 /* Here either x < 1.0 and exponent = MIN_EXP - 1,
182 or 1.0 <= x < 2.0 and exponent >= MIN_EXP - 1. */