Home
last modified time | relevance | path

Searched refs:hibits (Results 1 – 3 of 3) sorted by relevance

/external/compiler-rt/lib/builtins/ppc/
Dfixtfdi.c15 const doublebits hibits = { .d = x.s.hi }; in __fixtfdi() local
17 const uint32_t absHighWord = (uint32_t)(hibits.x >> 32) & UINT32_C(0x7fffffff); in __fixtfdi()
26 int64_t result = hibits.x & INT64_C(0x000fffffffffffff); /* mantissa(hi) */ in __fixtfdi()
30 const int64_t hiNegationMask = ((int64_t)(hibits.x)) >> 63; in __fixtfdi()
Dfixunstfdi.c13 const doublebits hibits = { .d = x.s.hi }; in __fixunstfdi() local
15 const uint32_t highWordMinusOne = (uint32_t)(hibits.x >> 32) - UINT32_C(0x3ff00000); in __fixunstfdi()
22 uint64_t result = hibits.x & UINT64_C(0x000fffffffffffff); /* mantissa(hi) */ in __fixunstfdi()
/external/llvm/lib/Support/
DAPInt.cpp916 uint64_t hibits = Tmp.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD); in roundToDouble() local
918 mantissa = hibits | lobits; in roundToDouble()