Searched refs:current_byte (Results 1 – 2 of 2) sorted by relevance
35 unsigned char* current_byte = start_byte; in Disassemble() local37 InstructionType instruction_type = ProcessPrefixes(current_byte, &size); in Disassemble()42 current_byte += size; in Disassemble()48 instruction_type = ProcessOpcode(current_byte, 0, &size); in Disassemble()55 current_byte += size; in Disassemble()69 *instruction_bytes += operand_bytes_ + (current_byte - start_byte); in Disassemble()123 unsigned char current_byte = (*start_byte) >> table.shift_; in ProcessOpcode() local124 current_byte = current_byte & table.mask_; // Mask out the bits we will use in ProcessOpcode()127 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) { in ProcessOpcode()132 const Opcode& opcode = table.table_[current_byte]; in ProcessOpcode()
30 uint8_t current_byte = bytecode_array()->get(bytecode_offset_); in current_bytecode() local31 return interpreter::Bytecodes::FromByte(current_byte); in current_bytecode()