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

  /external/llvm/include/llvm/ADT/
BitVector.h 46 unsigned BitPos;
53 BitPos = Idx % BITWORD_SIZE;
65 *WordRef |= BitWord(1) << BitPos;
67 *WordRef &= ~(BitWord(1) << BitPos);
72 return ((*WordRef) & (BitWord(1) << BitPos)) ? true : false;
171 unsigned BitPos = Prev % BITWORD_SIZE;
174 Copy &= ~0UL << BitPos;
SmallBitVector.h 64 unsigned BitPos;
67 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {}
78 TheVector.set(BitPos);
80 TheVector.reset(BitPos);
85 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
  /external/llvm/include/llvm/Support/
CommandLine.h     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 117 int32_t bitPos;
118 bitPos = Log2_32(Imm);
119 assert(bitPos >= 0 && bitPos < 32 &&
120 "Constant out of range for 32 BitPos Memops");
121 return CurDAG->getTargetConstant(bitPos, DL, MVT::i32);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 307 milliseconds