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

  /external/swiftshader/third_party/subzero/src/
IceAssemblerMIPS32.h 322 constexpr SizeT InstSize = sizeof(IValueT);
323 assert(BytesNeeded % InstMIPS32::InstSize == 0);
326 BytesNeeded -= InstSize;
340 void emitTextInst(const std::string &Text, SizeT InstSize);
357 constexpr SizeT InstSize = 0;
358 emitTextInst(InstL->getLabelName() + ":", InstSize);
IceAssemblerARM32.h 121 constexpr SizeT InstSize = sizeof(IValueT);
122 assert(BytesNeeded % InstARM32::InstSize == 0);
125 BytesNeeded -= InstSize;
152 constexpr SizeT InstSize = 0;
153 emitTextInst(InstL->getLabelName() + ":", InstSize);
607 void emitTextInst(const std::string &Text, SizeT InstSize);
IceAssemblerMIPS32.cpp 37 void AssemblerMIPS32::emitTextInst(const std::string &Text, SizeT InstSize) {
38 AssemblerFixup *F = createTextFixup(Text, InstSize);
40 for (SizeT I = 0; I < InstSize; ++I) {
96 constexpr SizeT InstSize = 0;
97 emitTextInst(Node->getAsmName() + ":", InstSize);
611 return InstMIPS32::InstSize;
632 return InstMIPS32::InstSize;
    [all...]
IceInstARM32.h 451 static constexpr size_t InstSize = sizeof(uint32_t);
    [all...]
IceInstMIPS32.h 289 static constexpr size_t InstSize = sizeof(uint32_t);
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 308 uint64_t InstSize;
309 if (!decodeInst(Symbol, Inst, InstSize))
317 uint64_t NextPC = SymbolAddr + InstSize;
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]
  /external/mesa3d/src/mesa/main/
dlist.c 179 * integer values starting at 0 is very important, see InstSize array usage)
607 static GLuint InstSize[OPCODE_END_OF_LIST + 1];
621 n += InstSize[OPCODE_BITMAP];
963 n += InstSize[n[0].opcode];
967 n += InstSize[n[0].opcode];
971 n += InstSize[n[0].opcode];
975 n += InstSize[n[0].opcode];
979 n += InstSize[n[0].opcode];
983 n += InstSize[n[0].opcode];
987 n += InstSize[n[0].opcode]
    [all...]

Completed in 333 milliseconds