HomeSort by relevance Sort by last modified time
    Searched refs:BitPos (Results 1 - 6 of 6) sorted by null

  /external/valgrind/main/coregrind/m_initimg/
simple_huffman.c 79 UInt BitPos;
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/
BitVector.h 41 unsigned BitPos;
48 BitPos = Idx % BITWORD_SIZE;
60 *WordRef |= 1L << BitPos;
62 *WordRef &= ~(1L << BitPos);
67 return ((*WordRef) & (1L << BitPos)) ? true : false;
165 unsigned BitPos = Prev % BITWORD_SIZE;
168 Copy &= ~0L << BitPos;
SmallBitVector.h 59 unsigned BitPos;
62 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {}
71 TheVector.set(BitPos);
73 TheVector.reset(BitPos);
78 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
SparseBitVector.h 157 unsigned BitPos = Curr % BITWORD_SIZE;
163 Copy &= ~0L << BitPos;
352 unsigned BitPos = Iter->find_first();
353 BitNumber += BitPos;
356 Bits >>= BitPos % BITWORD_SIZE;
  /external/llvm/include/llvm/Support/
CommandLine.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 93 milliseconds