OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BitPos
(Results
1 - 14
of
14
) sorted by null
/external/swiftshader/third_party/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
);
/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
)) != 0;
172
unsigned
BitPos
= Prev % BITWORD_SIZE;
175
Copy &= ~0UL <<
BitPos
;
SmallBitVector.h
61
unsigned
BitPos
;
64
reference(SmallBitVector &b, unsigned Idx) : TheVector(b),
BitPos
(Idx) {}
75
TheVector.set(
BitPos
);
77
TheVector.reset(
BitPos
);
82
return const_cast<const SmallBitVector &>(TheVector).operator[](
BitPos
);
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
BitVector.h
47
unsigned
BitPos
;
52
BitPos
= Idx % BITWORD_SIZE;
65
*WordRef |= BitWord(1) <<
BitPos
;
67
*WordRef &= ~(BitWord(1) <<
BitPos
);
72
return ((*WordRef) & (BitWord(1) <<
BitPos
)) != 0;
172
unsigned
BitPos
= Prev % BITWORD_SIZE;
175
Copy &= ~0UL <<
BitPos
;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
BitVector.h
92
unsigned
BitPos
;
97
BitPos
= Idx % BITWORD_SIZE;
110
*WordRef |= BitWord(1) <<
BitPos
;
112
*WordRef &= ~(BitWord(1) <<
BitPos
);
117
return ((*WordRef) & (BitWord(1) <<
BitPos
)) != 0;
SmallBitVector.h
69
unsigned
BitPos
;
72
reference(SmallBitVector &b, unsigned Idx) : TheVector(b),
BitPos
(Idx) {}
83
TheVector.set(
BitPos
);
85
TheVector.reset(
BitPos
);
90
return const_cast<const SmallBitVector &>(TheVector).operator[](
BitPos
);
/external/swiftshader/third_party/LLVM/include/llvm/Support/
CommandLine.h
[
all
...]
/external/llvm/include/llvm/Support/
CommandLine.h
[
all
...]
/external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp
114
int32_t
bitPos
;
115
bitPos
= Log2_32(Imm);
116
assert(
bitPos
>= 0 &&
bitPos
< 32 &&
117
"Constant out of range for 32
BitPos
Memops");
118
return CurDAG->getTargetConstant(
bitPos
, DL, MVT::i32);
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
CommandLine.h
[
all
...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
CommandLine.h
[
all
...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp
[
all
...]
Completed in 1309 milliseconds