OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BitPos
(Results
1 - 7
of
7
) sorted by null
/external/llvm/include/llvm/ADT/
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
);
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
;
SparseBitVector.h
145
unsigned
BitPos
= Curr % BITWORD_SIZE;
151
Copy &= ~0UL <<
BitPos
;
337
unsigned
BitPos
= Iter->find_first();
338
BitNumber +=
BitPos
;
341
Bits >>=
BitPos
% BITWORD_SIZE;
/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
...]
/external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp
[
all
...]
Completed in 165 milliseconds