OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DoNotEncode
(Results
1 - 2
of
2
) sorted by null
/external/llvm/utils/TableGen/
CodeGenInstruction.h
95
///
DoNotEncode
- Bools are set to true in this vector for each operand in
98
std::vector<bool>
DoNotEncode
;
198
if (OperandList[Op.first].
DoNotEncode
.size() > Op.second)
199
return OperandList[Op.first].
DoNotEncode
[Op.second];
CodeGenInstruction.cpp
284
if (Op.second >= OperandList[Op.first].
DoNotEncode
.size())
285
OperandList[Op.first].
DoNotEncode
.resize(Op.second+1);
286
OperandList[Op.first].
DoNotEncode
[Op.second] = true;
Completed in 113 milliseconds