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

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_lib.h79 #define hiWord(a) (a >> 32) macro
87 const uint64_t plohi = loWord(a) * hiWord(b);
88 const uint64_t philo = hiWord(a) * loWord(b);
89 const uint64_t phihi = hiWord(a) * hiWord(b);
92 const uint64_t r1 = hiWord(plolo) + loWord(plohi) + loWord(philo);
95 *hi = hiWord(plohi) + hiWord(philo) + hiWord(r1) + phihi;
98 #undef hiWord macro
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp305 unsigned hiWord = whichWord(hiBit); local
315 // If loWord and hiWord are equal, then we combine the masks. Otherwise,
316 // set the bits in hiWord.
317 if (hiWord == loWord)
320 U.pVal[hiWord] |= hiMask;
325 // Fill any words between loWord and hiWord with all ones.
326 for (unsigned word = loWord + 1; word < hiWord; ++word)
415 unsigned hiWord = whichWord(bitPosition + numBits - 1);
416 if (loWord == hiWord) {
427 U.pVal[hiWord]
[all...]

Completed in 75 milliseconds