Searched refs:half_eps (Results 1 – 1 of 1) sorted by relevance
1457 int half_eps, digit, round_up, sign=1; in float_fromhex() local1639 half_eps = 1 << (int)((lsb - exp - 1) % 4); in float_fromhex()1644 x = 16.0*x + (double)(digit & (16-2*half_eps)); in float_fromhex()1648 if ((digit & half_eps) != 0) { in float_fromhex()1650 if ((digit & (3*half_eps-1)) != 0 || in float_fromhex()1651 (half_eps == 8 && (HEX_DIGIT(key_digit+1) & 1) != 0)) in float_fromhex()1660 x += 2*half_eps; in float_fromhex()1662 x == ldexp((double)(2*half_eps), DBL_MANT_DIG)) in float_fromhex()