Searched refs:hibits (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dfixunstfdi.c12 const doublebits hibits = {.d = x.s.hi}; local
15 (uint32_t)(hibits.x >> 32) - UINT32_C(0x3ff00000);
21 uint64_t result = hibits.x & UINT64_C(0x000fffffffffffff); // mantissa(hi)
H A Dfixtfdi.c13 const doublebits hibits = {.d = x.s.hi}; local
16 (uint32_t)(hibits.x >> 32) & UINT32_C(0x7fffffff);
24 int64_t result = hibits.x & INT64_C(0x000fffffffffffff); // mantissa(hi)
28 const int64_t hiNegationMask = ((int64_t)(hibits.x)) >> 63;
/freebsd-11-stable/lib/msun/src/
H A Ds_fma.c78 uint64_t hibits, lobits; local
82 EXTRACT_WORD64(hibits, sum.hi);
83 if ((hibits & 1) == 0) {
84 /* hibits += (int)copysign(1.0, sum.hi * sum.lo) */
86 hibits += 1 - ((hibits ^ lobits) >> 62);
87 INSERT_WORD64(sum.hi, hibits);
102 uint64_t hibits, lobits; local
118 EXTRACT_WORD64(hibits, sum.hi);
119 bits_lost = -((int)(hibits >> 5
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp853 uint64_t hibits = Tmp.U.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD);
855 mantissa = hibits | lobits;

Completed in 101 milliseconds