Searched refs:BitPos (Results 1 – 5 of 5) sorted by relevance
43 unsigned BitPos; variable50 BitPos = Idx % BITWORD_SIZE; in reference()62 *WordRef |= BitWord(1) << BitPos;64 *WordRef &= ~(BitWord(1) << BitPos);69 return ((*WordRef) & (BitWord(1) << BitPos)) ? true : false;178 unsigned BitPos = Prev % BITWORD_SIZE; in find_next() local181 Copy &= ~0UL << BitPos; in find_next()
61 unsigned BitPos; variable64 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {} in reference()73 TheVector.set(BitPos);75 TheVector.reset(BitPos);80 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
156 unsigned BitPos = Curr % BITWORD_SIZE;162 Copy &= ~0UL << BitPos;356 unsigned BitPos = Iter->find_first();357 BitNumber += BitPos;360 Bits >>= BitPos % BITWORD_SIZE;
1491 unsigned BitPos = reinterpret_cast<unsigned>(V);1492 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&1494 return 1 << BitPos;1527 unsigned BitPos = (unsigned)V;1528 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&1530 return 1 << BitPos;
6715 unsigned BitPos = j * EltBitSize; in isConstantSplat() local6718 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize); in isConstantSplat()6721 zextOrTrunc(sz) << BitPos; in isConstantSplat()6723 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos; in isConstantSplat()