OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:inst_size
(Results
1 - 4
of
4
) sorted by null
/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
...]
/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/lldb/source/Plugins/UnwindAssembly/x86/
UnwindAssembly-x86.cpp
489
const size_t
inst_size
= ::LLVMDisasmInstruction (m_disasm_context,
local
496
length =
inst_size
;
/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 71 milliseconds