Lines Matching refs:xh
15 uint32 xh, xl, roundword; in test_rint() local
42 xh = in[0]; in test_rint()
49 xl = (xl >> 1) | ((xh & 1) << 31); in test_rint()
50 xh = xh >> 1; in test_rint()
54 xh += (xl==0); in test_rint()
57 xh = (xh << 1) | ((xl >> 31) & 1); in test_rint()
60 out[0] = xh; in test_rint()
429 uint32 xh, xl; in test_frexp() local
438 xh = x[0] & 0x7FFFFFFF; in test_frexp()
441 while (!(xh & 0x100000)) { in test_frexp()
443 xh = (xh << 1) | ((xl >> 31) & 1); in test_frexp()
446 out[0] = sign | 0x3FE00000 | (xh & 0xFFFFF); in test_frexp()