Searched refs:insn16 (Results 1 – 5 of 5) sorted by relevance
/external/capstone/arch/XCore/ |
D | XCoreDisassembler.c | 732 uint16_t insn16; in XCore_getInstruction() local 736 if (!readInstruction16(code, code_len, &insn16)) { in XCore_getInstruction() 745 Result = decodeInstruction_2(DecoderTable16, MI, insn16, address, info, 0); in XCore_getInstruction()
|
/external/llvm/lib/Target/XCore/Disassembler/ |
D | XCoreDisassembler.cpp | 741 uint16_t insn16; in getInstruction() local 743 if (!readInstruction16(Bytes, Address, Size, insn16)) { in getInstruction() 748 DecodeStatus Result = decodeInstruction(DecoderTable16, instr, insn16, in getInstruction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/XCore/Disassembler/ |
D | XCoreDisassembler.cpp | 741 uint16_t insn16; in getInstruction() local 743 if (!readInstruction16(Bytes, Address, Size, insn16)) { in getInstruction() 748 DecodeStatus Result = decodeInstruction(DecoderTable16, instr, insn16, in getInstruction()
|
/external/capstone/arch/ARM/ |
D | ARMDisassembler.c | 687 uint16_t insn16; in _Thumb_getInstruction() local 708 insn16 = (bytes[0] << 8) | bytes[1]; in _Thumb_getInstruction() 710 insn16 = (bytes[1] << 8) | bytes[0]; in _Thumb_getInstruction() 712 result = decodeInstruction_2(DecoderTableThumb16, MI, insn16, Address, NULL, ud->mode); in _Thumb_getInstruction() 720 result = decodeInstruction_2(DecoderTableThumbSBit16, MI, insn16, Address, NULL, ud->mode); in _Thumb_getInstruction() 730 result = decodeInstruction_2(DecoderTableThumb216, MI, insn16, Address, NULL, ud->mode); in _Thumb_getInstruction()
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/Disassembler/ |
D | ARMDisassembler.cpp | 706 uint16_t insn16 = (bytes[1] << 8) | bytes[0]; in getInstruction() local 707 DecodeStatus result = decodeThumbInstruction16(MI, insn16, Address, this, STI); in getInstruction() 715 result = decodeThumbSBitInstruction16(MI, insn16, Address, this, STI); in getInstruction() 725 result = decodeThumb2Instruction16(MI, insn16, Address, this, STI); in getInstruction()
|