Home
last modified time | relevance | path

Searched refs:current_byte (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/sandbox/win/src/sidestep/
Dmini_disassembler.cpp35 unsigned char* current_byte = start_byte; in Disassemble() local
37 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() local
124 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()
/external/v8/src/interpreter/
Dbytecode-array-accessor.cc31 uint8_t current_byte = bytecode_array()->get(bytecode_offset_); in UpdateOperandScale() local
32 Bytecode current_bytecode = Bytecodes::FromByte(current_byte); in UpdateOperandScale()
50 uint8_t current_byte = in current_bytecode() local
52 Bytecode current_bytecode = Bytecodes::FromByte(current_byte); in current_bytecode()