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/
SmallBitVector.h 60 unsigned BitPos;
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);
BitVector.h 42 unsigned BitPos;
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;
182 Copy &= ~0UL << BitPos;
SparseBitVector.h 155 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/
CommandLine.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 5954 milliseconds