Lines Matching refs:BitOffset
3347 static void setBitRange(SmallVectorImpl<uint64_t> &Bits, int BitOffset, in setBitRange() argument
3353 if (BitOffset >= CharWidth) { in setBitRange()
3354 Pos += BitOffset / CharWidth; in setBitRange()
3355 BitOffset = BitOffset % CharWidth; in setBitRange()
3359 if (BitOffset + BitWidth >= CharWidth) { in setBitRange()
3360 Bits[Pos++] |= (Used << BitOffset) & Used; in setBitRange()
3361 BitWidth -= CharWidth - BitOffset; in setBitRange()
3362 BitOffset = 0; in setBitRange()
3371 Bits[Pos++] |= (Used >> (CharWidth - BitWidth)) << BitOffset; in setBitRange()
3379 int StorageSize, int BitOffset, int BitWidth, in setBitRange() argument
3383 setBitRange(TmpBits, BitOffset, BitWidth, CharWidth); in setBitRange()