Lines Matching defs:opcode_size
722 int opcode_size = 0;
746 opcode_size = 1;
751 if (b1 == 0x0f && opcode_size == 0) {
770 opcode_size = 2;
777 if (opcode_size == 0)
781 if (instruction_length - opcode_size == 1) {
782 int8_t rel8 = (int8_t) *(m_cur_insn + opcode_size);
784 } else if (instruction_length - opcode_size == 2) {
785 int16_t rel16 = extract_2_signed (m_cur_insn + opcode_size);
787 } else if (instruction_length - opcode_size == 4) {
788 int32_t rel32 = extract_4_signed (m_cur_insn + opcode_size);