Searched refs:BitPos (Results 1 - 6 of 6) sorted by relevance

/external/valgrind/main/coregrind/m_initimg/
H A Dsimple_huffman.c79 UInt BitPos; member in struct:__anon28170
97 stream->BitPos = 0;
113 bit = stream->BitPos;
129 stream->BitPos = bit;
148 bit = stream->BitPos;
172 stream->BitPos = bit;
428 if( stream.BitPos > 0 )
/external/llvm/include/llvm/ADT/
H A DSmallBitVector.h60 unsigned BitPos; member in class:llvm::SmallBitVector::reference
63 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {}
72 TheVector.set(BitPos);
74 TheVector.reset(BitPos);
79 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
H A DBitVector.h42 unsigned BitPos; member in class:llvm::BitVector::reference
49 BitPos = Idx % BITWORD_SIZE;
61 *WordRef |= 1L << BitPos;
63 *WordRef &= ~(1L << BitPos);
68 return ((*WordRef) & (1L << BitPos)) ? true : false;
179 unsigned BitPos = Prev % BITWORD_SIZE; local
182 Copy &= ~0UL << BitPos;
H A DSparseBitVector.h155 unsigned BitPos = Curr % BITWORD_SIZE;
161 Copy &= ~0UL << BitPos;
355 unsigned BitPos = Iter->find_first();
356 BitNumber += BitPos;
359 Bits >>= BitPos % BITWORD_SIZE;
/external/llvm/include/llvm/Support/
H A DCommandLine.h1453 unsigned BitPos = reinterpret_cast<unsigned>(V); local
1454 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1456 return 1 << BitPos;
1494 unsigned BitPos = (unsigned)V;
1495 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1497 return 1 << BitPos;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6309 unsigned BitPos = j * EltBitSize; local
6312 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize);
6315 zextOrTrunc(sz) << BitPos;
6317 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos;

Completed in 192 milliseconds