Home
last modified time | relevance | path

Searched refs:hiWord (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_lib.h64 #define hiWord(a) (a >> 32) macro
72 const uint64_t plohi = loWord(a) * hiWord(b); in wideMultiply()
73 const uint64_t philo = hiWord(a) * loWord(b); in wideMultiply()
74 const uint64_t phihi = hiWord(a) * hiWord(b); in wideMultiply()
77 const uint64_t r1 = hiWord(plolo) + loWord(plohi) + loWord(philo); in wideMultiply()
80 *hi = hiWord(plohi) + hiWord(philo) + hiWord(r1) + phihi; in wideMultiply()
83 #undef hiWord
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp312 unsigned hiWord = whichWord(hiBit); in setBitsSlowCase() local
324 if (hiWord == loWord) in setBitsSlowCase()
327 U.pVal[hiWord] |= hiMask; in setBitsSlowCase()
333 for (unsigned word = loWord + 1; word < hiWord; ++word) in setBitsSlowCase()
437 unsigned hiWord = whichWord(bitPosition + numBits - 1); in insertBits() local
438 if (loWord == hiWord) { in insertBits()
449 U.pVal[hiWord] &= ~(maskBits >> (wordBits - loBit)); in insertBits()
450 U.pVal[hiWord] |= subBits >> (wordBits - loBit); in insertBits()
462 unsigned hiWord = whichWord(bitPosition + numBits - 1); in extractBits() local
465 if (loWord == hiWord) in extractBits()
[all …]