Home | History | Annotate | Download | only in windows

Lines Matching refs:current_byte

60   unsigned char* current_byte = start_byte;
62 InstructionType instruction_type = ProcessPrefixes(current_byte, size);
67 current_byte += size;
73 instruction_type = ProcessOpcode(current_byte, 0, size);
80 current_byte += size;
94 instruction_bytes += operand_bytes_ + (current_byte - start_byte);
156 unsigned char current_byte = (*start_byte) >> table.shift_;
157 current_byte = current_byte & table.mask_; // Mask out the bits we will use
160 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) {
165 const Opcode& opcode = table.table_[current_byte];