Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp305 unsigned hiWord = whichWord(hiBit); in setBitsSlowCase() local
317 if (hiWord == loWord) in setBitsSlowCase()
320 U.pVal[hiWord] |= hiMask; in setBitsSlowCase()
326 for (unsigned word = loWord + 1; word < hiWord; ++word) in setBitsSlowCase()
415 unsigned hiWord = whichWord(bitPosition + numBits - 1); in insertBits() local
416 if (loWord == hiWord) { in insertBits()
427 U.pVal[hiWord] &= ~(maskBits >> (wordBits - loBit)); in insertBits()
428 U.pVal[hiWord] |= subBits >> (wordBits - loBit); in insertBits()
441 unsigned hiWord = whichWord(bitPosition + numBits - 1); in extractBits() local
444 if (loWord == hiWord) in extractBits()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp878 unsigned hiWord = whichWord(n-1); in roundToDouble() local
879 if (hiWord == 0) { in roundToDouble()
884 assert(hiWord > 0 && "huh?"); in roundToDouble()
885 uint64_t hibits = Tmp.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD); in roundToDouble()
886 uint64_t lobits = Tmp.pVal[hiWord-1] >> (11 + n % APINT_BITS_PER_WORD); in roundToDouble()