Lines Matching refs:loBit
304 void APInt::setBitsSlowCase(unsigned loBit, unsigned hiBit) { in setBitsSlowCase() argument
305 unsigned loWord = whichWord(loBit); in setBitsSlowCase()
309 uint64_t loMask = WORDTYPE_MAX << whichBit(loBit); in setBitsSlowCase()
365 unsigned loBit = whichBit(bitPosition); in insertBits() local
372 U.pVal[loWord] &= ~(mask << loBit); in insertBits()
373 U.pVal[loWord] |= (subBits.U.VAL << loBit); in insertBits()
378 if (loBit == 0) { in insertBits()
413 unsigned loBit = whichBit(bitPosition); in extractBits() local
419 return APInt(numBits, U.pVal[loWord] >> loBit); in extractBits()
423 if (loBit == 0) in extractBits()
436 DestPtr[word] = (w0 >> loBit) | (w1 << (APINT_BITS_PER_WORD - loBit)); in extractBits()