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

  /external/chromium_org/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...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
mini_disassembler.cc 60 unsigned char* current_byte = start_byte; local
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_; local
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_)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
mini_disassembler.cc 60 unsigned char* current_byte = start_byte; local
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_; local
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_)
    [all...]
  /external/chromium_org/tools/memory_watcher/
mini_disassembler.cc 33 unsigned char* current_byte = start_byte; local
35 InstructionType instruction_type = ProcessPrefixes(current_byte, size);
40 current_byte += size;
46 instruction_type = ProcessOpcode(current_byte, 0, size);
53 current_byte += size;
67 instruction_bytes += operand_bytes_ + (current_byte - start_byte);
121 unsigned char current_byte = (*start_byte) >> table.shift_; local
122 current_byte = current_byte & table.mask_; // Mask out the bits we will use
125 if (current_byte < table.min_lim_ || current_byte > table.max_lim_)
    [all...]
  /external/chromium_org/tools/traceline/traceline/sidestep/
mini_disassembler.cc 56 unsigned char* current_byte = start_byte; local
58 InstructionType instruction_type = ProcessPrefixes(current_byte, &size);
63 current_byte += size;
69 instruction_type = ProcessOpcode(current_byte, 0, &size);
76 current_byte += size;
90 *instruction_bytes += operand_bytes_ + (current_byte - start_byte);
144 unsigned char current_byte = (*start_byte) >> table.shift_; local
145 current_byte = current_byte & table.mask_; // Mask out the bits we will use
148 if (current_byte < table.min_lim_ || current_byte > table.max_lim_)
    [all...]
  /external/chromium/net/http/
http_network_transaction_unittest.cc 232 static size_t current_byte = 0; local
234 output[i] = bytes[current_byte++];
235 current_byte %= arraysize(bytes);
244 static size_t current_byte = 0; local
246 output[i] = bytes[current_byte++];
247 current_byte %= arraysize(bytes);
    [all...]
  /external/chromium_org/net/http/
http_network_transaction_unittest.cc 407 static size_t current_byte = 0; local
409 output[i] = bytes[current_byte++];
410 current_byte %= arraysize(bytes);
419 static size_t current_byte = 0; local
421 output[i] = bytes[current_byte++];
422 current_byte %= arraysize(bytes);
    [all...]

Completed in 259 milliseconds