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

  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDToken.cpp 103 unsigned int operandIndex;
107 operandIndex = 0;
137 ++operandIndex;
190 /// operandIndex == 0 means the operand is the instruction (which the
192 /// operandIndex == 0 and subtract 1 from all other operand indices.
194 if (operandIndex > 0)
195 token->setOperandID(operandOrder[operandIndex - 1]);
  /external/swiftshader/third_party/LLVM/tools/llvm-mc/
Disassembler.cpp 291 int operandIndex = token->operandID();
293 if (operandIndex >= 0)
294 Out << operandIndex << "-";
344 for (unsigned operandIndex = 0; operandIndex != numOperands;
345 ++operandIndex) {
346 Out << operandIndex << ":";
349 if (inst->getOperand(operand, operandIndex)) {

Completed in 206 milliseconds