Searched refs:byte_index (Results 1 - 9 of 9) sorted by relevance
/external/libmojo/mojo/common/ |
H A D | data_pipe_utils.cc | 77 uint32_t byte_index = 0; local 78 while (it != source.end() && byte_index < buffer_num_bytes) { 79 char_buffer[byte_index++] = *it++; 81 EndWriteDataRaw(destination.get(), byte_index);
|
/external/webrtc/webrtc/libjingle/xmllite/ |
H A D | xmlparser.h | 38 unsigned long * byte_index) = 0; 78 unsigned long * byte_index); 85 void SetPosition(int line, int column, long byte_index);
|
H A D | xmlparser.cc | 235 long byte_index) { 238 byte_index_ = byte_index; 244 unsigned long * byte_index) { 253 if (byte_index != NULL) { 254 *byte_index = static_cast<unsigned long>(byte_index_); 234 SetPosition(int line, int column, long byte_index) argument 242 GetPosition(unsigned long * line, unsigned long * column, unsigned long * byte_index) argument
|
/external/v8/src/ |
H A D | safepoint-table.cc | 31 int byte_index = reg_index >> kBitsPerByteLog2; local 33 return (bits_[byte_index] & (1 << bit_index)) != 0; 182 int byte_index = index >> kBitsPerByteLog2; local 184 bits[byte_index] |= (1 << bit_index); 191 int byte_index = index >> kBitsPerByteLog2; local 193 bits[byte_index] |= (1U << bit_index);
|
H A D | frames.cc | 884 int byte_index = index >> kBitsPerByteLog2; local 886 if ((safepoint_bits[byte_index] & (1U << bit_index)) != 0) {
|
/external/mesa3d/src/mesa/main/ |
H A D | texcompress_bptc.c | 324 int byte_index = offset / 8; local 331 result |= ((block[byte_index] >> bit_index) & 340 byte_index++;
|
/external/google-breakpad/src/processor/ |
H A D | minidump.cc | 1354 for (unsigned int byte_index = 0; 1355 byte_index < descriptor_->memory.data_size; 1356 byte_index++) { 1357 printf("%02x", memory[byte_index]);
|
/external/v8/src/ia32/ |
H A D | macro-assembler-ia32.cc | 1637 int byte_index = bit_index / kBitsPerByte; local 1639 test_b(FieldOperand(object, field_offset + byte_index),
|
/external/v8/src/x87/ |
H A D | macro-assembler-x87.cc | 1578 int byte_index = bit_index / kBitsPerByte; local 1580 test_b(FieldOperand(object, field_offset + byte_index),
|
Completed in 308 milliseconds