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
94
///
DoNotEncode
- Bools are set to true in this vector for each operand in
97
std::vector<bool>
DoNotEncode
;
192
if (OperandList[Op.first].
DoNotEncode
.size() > Op.second)
193
return OperandList[Op.first].
DoNotEncode
[Op.second];
CodeGenInstruction.cpp
278
if (Op.second >= OperandList[Op.first].
DoNotEncode
.size())
279
OperandList[Op.first].
DoNotEncode
.resize(Op.second+1);
280
OperandList[Op.first].
DoNotEncode
[Op.second] = true;
Completed in 34 milliseconds