Lines Matching refs:BitOffset
3297 static void setBitRange(SmallVectorImpl<uint64_t> &Bits, int BitOffset, in setBitRange() argument
3303 if (BitOffset >= CharWidth) { in setBitRange()
3304 Pos += BitOffset / CharWidth; in setBitRange()
3305 BitOffset = BitOffset % CharWidth; in setBitRange()
3309 if (BitOffset + BitWidth >= CharWidth) { in setBitRange()
3310 Bits[Pos++] |= (Used << BitOffset) & Used; in setBitRange()
3311 BitWidth -= CharWidth - BitOffset; in setBitRange()
3312 BitOffset = 0; in setBitRange()
3321 Bits[Pos++] |= (Used >> (CharWidth - BitWidth)) << BitOffset; in setBitRange()
3329 int StorageSize, int BitOffset, int BitWidth, in setBitRange() argument
3333 setBitRange(TmpBits, BitOffset, BitWidth, CharWidth); in setBitRange()