HomeSort by relevance Sort by last modified time
    Searched refs:OpStr (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 590 static unsigned getIntelMemOperandSize(StringRef OpStr) {
592 if (OpStr == "BYTE") Size = 8;
593 if (OpStr == "WORD") Size = 16;
594 if (OpStr == "DWORD") Size = 32;
595 if (OpStr == "QWORD") Size = 64;
596 if (OpStr == "XWORD") Size = 80;
597 if (OpStr == "XMMWORD") Size = 128;
598 if (OpStr == "YMMWORD") Size = 256;
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 178 const char *OpStr = 0;
180 case scAddExpr: OpStr = " + "; break;
181 case scMulExpr: OpStr = " * "; break;
182 case scUMaxExpr: OpStr = " umax "; break;
183 case scSMaxExpr: OpStr = " smax "; break;
190 OS << OpStr;
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]

Completed in 204 milliseconds