Searched refs:loWord (Results 1 - 2 of 2) sorted by path

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_lib.h78 #define loWord(a) (a & 0xffffffffU) macro
86 const uint64_t plolo = loWord(a) * loWord(b);
87 const uint64_t plohi = loWord(a) * hiWord(b);
88 const uint64_t philo = hiWord(a) * loWord(b);
91 const uint64_t r0 = loWord(plolo);
92 const uint64_t r1 = hiWord(plolo) + loWord(plohi) + loWord(philo);
97 #undef loWord macro
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp304 unsigned loWord = whichWord(loBit); local
315 // If loWord and hiWord are equal, then we combine the masks. Otherwise,
317 if (hiWord == loWord)
323 U.pVal[loWord] |= loMask;
325 // Fill any words between loWord and hiWord with all ones.
326 for (unsigned word = loWord + 1; word < hiWord; ++word)
365 unsigned loWord = whichWord(bitPosition);
369 if (loWord == hi1Word) {
371 U.pVal[loWord] &= ~(mask << loBit);
372 U.pVal[loWord] |
[all...]

Completed in 211 milliseconds