Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp304 unsigned loWord = whichWord(loBit); in setBitsSlowCase() local
317 if (hiWord == loWord) in setBitsSlowCase()
323 U.pVal[loWord] |= loMask; in setBitsSlowCase()
326 for (unsigned word = loWord + 1; word < hiWord; ++word) in setBitsSlowCase()
365 unsigned loWord = whichWord(bitPosition); in insertBits() local
369 if (loWord == hi1Word) { in insertBits()
371 U.pVal[loWord] &= ~(mask << loBit); in insertBits()
372 U.pVal[loWord] |= (subBits.U.VAL << loBit); in insertBits()
380 memcpy(U.pVal + loWord, subBits.getRawData(), in insertBits()
414 unsigned loWord = whichWord(bitPosition); in insertBits() local
[all …]