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

  /external/lldb/source/Plugins/Disassembler/llvm/
DisassemblerLLVMC.cpp 81 const size_t inst_size = mc_disasm_ptr->GetMCInst (opcode_data, local
86 if (inst_size == 0)
207 const size_t inst_size = mc_disasm_ptr->GetMCInst(opcode_data, local
212 if (inst_size == 0)
216 m_opcode.SetOpcodeBytes(opcode_data, inst_size);
287 size_t inst_size = mc_disasm_ptr->GetMCInst (opcode_data, local
292 if (inst_size > 0)
300 if (inst_size == 0)
303 inst_size = m_opcode.GetByteSize();
306 switch (inst_size)
721 uint32_t inst_size = inst_sp->Decode(*this, data, data_cursor); local
    [all...]
  /external/pcre/dist/sljit/
sljitNativeX86_32.c 262 sljit_si inst_size; local
277 inst_size = size;
280 inst_size++;
282 inst_size++;
285 inst_size += 1; /* mod r/m byte. */
288 inst_size += sizeof(sljit_sw);
292 inst_size += sizeof(sljit_sb);
294 inst_size += sizeof(sljit_sw);
301 inst_size += 1; /* SIB byte. */
308 inst_size += 1
    [all...]
sljitNativeX86_64.c 369 sljit_si inst_size; local
386 inst_size = size;
394 inst_size++;
396 inst_size++;
399 inst_size += 1; /* mod r/m byte. */
416 inst_size += 1 + sizeof(sljit_si); /* SIB byte required to avoid RIP based addressing. */
424 inst_size += sizeof(sljit_sb);
426 inst_size += sizeof(sljit_si);
429 inst_size += sizeof(sljit_sb);
432 inst_size += 1; /* SIB byte. *
    [all...]
  /frameworks/compile/libbcc/lib/Support/
Disassembler.cpp 136 uint64_t inst_size; local
139 disassembler->getInstruction(inst, inst_size, *input_function, i,
165 i += inst_size;
  /external/lldb/source/Plugins/UnwindAssembly/x86/
UnwindAssembly-x86.cpp 489 const size_t inst_size = ::LLVMDisasmInstruction (m_disasm_context, local
496 length = inst_size;
  /external/lldb/source/Core/
Disassembler.cpp 979 uint32_t inst_size = (*pos)->GetOpcode().GetByteSize(); local
980 if (max_inst_size < inst_size)
981 max_inst_size = inst_size;
    [all...]
  /art/runtime/verifier/
method_verifier.cc 584 size_t inst_size = inst->SizeInCodeUnits(); local
585 insn_flags_[dex_pc].SetLengthInCodeUnits(inst_size);
586 dex_pc += inst_size;
    [all...]

Completed in 345 milliseconds