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

  /dalvik/libdex/
DexOpcodes.cpp 31 static const char* gOpNames[kNumPackedOpcodes] = {
297 assert(op >= 0 && op < kNumPackedOpcodes);
InstrUtils.h 150 assert((u4) opcode < kNumPackedOpcodes);
166 assert((u4) opcode < kNumPackedOpcodes);
183 assert((u4) opcode < kNumPackedOpcodes);
192 assert((u4) opcode < kNumPackedOpcodes);
InstrUtils.cpp 33 static InstructionWidth gInstructionWidthTable[kNumPackedOpcodes] = {
58 static u1 gOpcodeFlagsTable[kNumPackedOpcodes] = {
323 static u1 gInstructionFormatTable[kNumPackedOpcodes] = {
369 static u1 gInstructionIndexTypeTable[kNumPackedOpcodes] = {
DexOpcodes.h 36 * kNumPackedOpcodes: the highest possible packed opcode value of a
44 #define kNumPackedOpcodes 0x100
335 static const void* (_name)[kNumPackedOpcodes] = { \
    [all...]
  /art/runtime/interpreter/mterp/
gen_mterp.py 26 kNumPackedOpcodes = 256
251 # "goto table" definition macro, which has exactly kNumPackedOpcodes
265 if len(opcodes) != kNumPackedOpcodes:
267 % (len(opcodes), kNumPackedOpcodes)
276 # Load and emit opcodes for all kNumPackedOpcodes instructions.
280 assert len(opcodes) == kNumPackedOpcodes
290 for i in xrange(kNumPackedOpcodes):
341 # Load and emit alternate opcodes for all kNumPackedOpcodes instructions.
344 assert len(opcodes) == kNumPackedOpcodes
353 for i in xrange(kNumPackedOpcodes)
    [all...]
mterp.cc 43 if ((interp_size == 0) || (interp_size != (art::kNumPackedOpcodes * width))) {
    [all...]
  /tools/dexter/slicer/
dex_bytecode.cc 32 static constexpr std::array<InstructionIndexType, kNumPackedOpcodes>
129 static constexpr std::array<u1, kNumPackedOpcodes> gInstructionWidthTable = {
165 static constexpr std::array<OpcodeFlags, kNumPackedOpcodes> gOpcodeFlagsTable = {
425 static constexpr std::array<InstructionFormat, kNumPackedOpcodes> gInstructionFormatTable = {
474 static constexpr std::array<const char*, kNumPackedOpcodes> gOpcodeNames = {
    [all...]
  /tools/dexter/slicer/export/slicer/
dex_bytecode.h 29 constexpr size_t kNumPackedOpcodes = 0x100;
  /art/libdexfile/dex/
dex_instruction.h 33 kNumPackedOpcodes = 0x100

Completed in 177 milliseconds