Lines Matching refs:exp
29 small: ExtendedFloatArray {{ mant: &BASE{0}_SMALL_MANTISSA, exp: &BASE{0}_SMALL_EXPONENT }},
30 large: ExtendedFloatArray {{ mant: &BASE{0}_LARGE_MANTISSA, exp: &BASE{0}_LARGE_EXPONENT }},
71 for exp in range(count):
72 fps.append((normalize_fp(fp), exp))
94 for exp in range(-step, min_exp-step, -step):
96 fps.appendleft((normalize_fp(fp), exp))
101 for exp in range(step, max_exp, step):
103 fps.append((normalize_fp(fp), exp))
105 # Return the smallest exp, AKA, the bias
113 for fp, exp in fps:
115 exp = EXP_STR.format(base, exp)
116 print(value.ljust(30, " ") + exp)