Searched defs:current_byte (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/sandbox/win/src/sidestep/
H A Dmini_disassembler.cpp35 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 < tabl
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dmini_disassembler.cc60 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 < tabl
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dmini_disassembler.cc60 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 < tabl
[all...]
/external/chromium_org/tools/traceline/traceline/sidestep/
H A Dmini_disassembler.cc56 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 < tabl
[all...]
/external/chromium_org/net/http/
H A Dhttp_network_transaction_unittest.cc483 static size_t current_byte = 0; local
485 output[i] = bytes[current_byte++];
486 current_byte %= arraysize(bytes);
495 static size_t current_byte = 0; local
497 output[i] = bytes[current_byte++];
498 current_byte %= arraysize(bytes);

Completed in 2879 milliseconds