HomeSort by relevance Sort by last modified time
    Searched refs:current_byte (Results 1 - 6 of 6) sorted by null

  /toolchain/binutils/binutils-2.25/gold/
int_encoding.cc 105 unsigned char current_byte = value & 0x7f; local
109 current_byte |= 0x80;
111 buffer->push_back(current_byte);
122 unsigned char current_byte = value & 0x7f; local
126 current_byte |= 0x80;
  /external/libchrome/sandbox/win/src/sidestep/
mini_disassembler.cpp 35 unsigned char* current_byte = start_byte; local
37 InstructionType instruction_type = ProcessPrefixes(current_byte, &size);
42 current_byte += size;
48 instruction_type = ProcessOpcode(current_byte, 0, &size);
55 current_byte += size;
69 *instruction_bytes += operand_bytes_ + (current_byte - start_byte);
123 unsigned char current_byte = (*start_byte) >> table.shift_; local
124 current_byte = current_byte & table.mask_; // Mask out the bits we will use
127 if (current_byte < table.min_lim_ || current_byte > table.max_lim_)
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
liboasys.h 48 unsigned int current_byte; member in struct:_oasys_per_section
libieee.h 58 unsigned int current_byte; member in struct:ieee_per_section
  /external/v8/src/interpreter/
bytecode-array-accessor.cc 31 uint8_t current_byte = bytecode_array()->get(bytecode_offset_); local
32 Bytecode current_bytecode = Bytecodes::FromByte(current_byte);
50 uint8_t current_byte = local
52 Bytecode current_bytecode = Bytecodes::FromByte(current_byte);
  /system/bt/vendor_libs/test_vendor_lib/src/
l2cap_sdu.cc 101 uint8_t current_byte = sdu_data_[i]; local
102 lfsr = ((lfsr >> 8) & 0xff) ^ lfsr_table_[(lfsr & 0xff) ^ current_byte];

Completed in 103 milliseconds