Lines Matching refs:bexp
108 Int bexp, i, j, shift; in convert_f64le_to_f80le() local
112 bexp = (f64[7] << 4) | ((f64[6] >> 4) & 0x0F); in convert_f64le_to_f80le()
113 bexp &= 0x7FF; in convert_f64le_to_f80le()
116 if (bexp == 0 || bexp == 0x7FF) { in convert_f64le_to_f80le()
131 if (bexp == 0) { in convert_f64le_to_f80le()
161 bexp -= shift; in convert_f64le_to_f80le()
162 bexp += (16383 - 1023); in convert_f64le_to_f80le()
163 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) ); in convert_f64le_to_f80le()
164 f80[8] = toUChar( bexp & 0xFF ); in convert_f64le_to_f80le()
175 if (bexp == 0x7FF) { in convert_f64le_to_f80le()
219 bexp += (16383 - 1023); in convert_f64le_to_f80le()
221 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) ); in convert_f64le_to_f80le()
222 f80[8] = toUChar( bexp & 0xFF ); in convert_f64le_to_f80le()
249 Int bexp, i, j; in convert_f80le_to_f64le() local
253 bexp = (((UInt)f80[9]) << 8) | (UInt)f80[8]; in convert_f80le_to_f64le()
254 bexp &= 0x7FFF; in convert_f80le_to_f64le()
260 if (bexp == 0) { in convert_f80le_to_f64le()
273 if (bexp == 0x7FFF) { in convert_f80le_to_f64le()
334 bexp -= (16383 - 1023); in convert_f80le_to_f64le()
335 if (bexp >= 0x7FF) { in convert_f80le_to_f64le()
343 if (bexp <= 0) { in convert_f80le_to_f64le()
349 if (bexp < -52) in convert_f80le_to_f64le()
358 j = i - 12 + bexp; in convert_f80le_to_f64le()
367 if (read_bit_array(f80, 10+1 - bexp) == 1) in convert_f80le_to_f64le()
388 f64[6] = toUChar( ((bexp << 4) & 0xF0) | ((f80[7] >> 3) & 0x0F) ); in convert_f80le_to_f64le()
390 f64[7] = toUChar( (sign << 7) | ((bexp >> 4) & 0x7F) ); in convert_f80le_to_f64le()