Lines Matching refs:xhi
39 double xhi, xlo; in __modfl() local
41 ldbl_unpack (x, &xhi, &xlo); in __modfl()
42 EXTRACT_WORDS64 (i0, xhi); in __modfl()
49 INSERT_WORDS64 (xhi, i0&0x8000000000000000ULL); in __modfl()
50 *iptr = xhi; in __modfl()
57 INSERT_WORDS64 (xhi, i0&0x8000000000000000ULL); in __modfl()
58 x = xhi; in __modfl()
61 INSERT_WORDS64 (xhi, i0&(~i)); in __modfl()
62 *iptr = xhi; in __modfl()
72 INSERT_WORDS64 (xhi, i0&0x8000000000000000ULL); in __modfl()
73 x = xhi; in __modfl()
80 INSERT_WORDS64 (xhi, i0&0x8000000000000000ULL); in __modfl()
81 x = xhi; in __modfl()
84 INSERT_WORDS64 (xhi, i0); in __modfl()
86 *iptr = ldbl_pack (xhi, xlo); in __modfl()