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

  /external/llvm/lib/MC/MCAnalysis/
MCObjectDisassembler.cpp 123 uint64_t InstSize;
124 for (uint64_t Index = 0; Index < SecSize; Index += InstSize) {
127 if (Dis.getInstruction(Inst, InstSize, memoryObject, CurAddr, nulls(),
133 Text->addInst(Inst, InstSize);
136 assert(InstSize && "getInstruction() consumed no bytes");
139 InvalidData = Module->createDataAtom(CurAddr, CurAddr+InstSize - 1);
141 for (uint64_t I = 0; I < InstSize; ++I)
361 uint64_t InstSize;
369 for (uint64_t Addr = BeginAddr; Addr < EndAddr; Addr += InstSize) {
371 if (Dis.getInstruction(Inst, InstSize, *Region, Addr, nulls()
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 444 uint64_t InstSize;
445 for (uint64_t Index = 0; Index < SectSize; Index += InstSize) {
448 if (DisAsm->getInstruction(Inst, InstSize, memoryObject, Index,
451 DumpBytes(StringRef(Bytes.data() + Index, InstSize));
456 if (InstSize == 0)
457 InstSize = 1; // skip illegible bytes
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
dlist.c 189 * integer values starting at 0 is very important, see InstSize array usage)
553 static GLuint InstSize[OPCODE_END_OF_LIST + 1];
662 n += InstSize[n[0].opcode];
666 n += InstSize[n[0].opcode];
670 n += InstSize[n[0].opcode];
674 n += InstSize[n[0].opcode];
678 n += InstSize[n[0].opcode];
682 n += InstSize[n[0].opcode];
686 n += InstSize[n[0].opcode];
690 n += InstSize[n[0].opcode]
    [all...]
  /external/mesa3d/src/mesa/main/
dlist.c 189 * integer values starting at 0 is very important, see InstSize array usage)
553 static GLuint InstSize[OPCODE_END_OF_LIST + 1];
662 n += InstSize[n[0].opcode];
666 n += InstSize[n[0].opcode];
670 n += InstSize[n[0].opcode];
674 n += InstSize[n[0].opcode];
678 n += InstSize[n[0].opcode];
682 n += InstSize[n[0].opcode];
686 n += InstSize[n[0].opcode];
690 n += InstSize[n[0].opcode]
    [all...]

Completed in 4823 milliseconds