Searched refs:byte_index (Results 1 - 8 of 8) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dxmlparser.h55 unsigned long * byte_index) = 0;
95 unsigned long * byte_index);
102 void SetPosition(int line, int column, long byte_index);
H A Dxmlparser.cc266 long byte_index) {
269 byte_index_ = byte_index;
275 unsigned long * byte_index) {
284 if (byte_index != NULL) {
285 *byte_index = static_cast<unsigned long>(byte_index_);
265 SetPosition(int line, int column, long byte_index) argument
273 GetPosition(unsigned long * line, unsigned long * column, unsigned long * byte_index) argument
/external/v8/src/
H A Dsafepoint-table.cc55 int byte_index = reg_index >> kBitsPerByteLog2; local
57 return (bits_[byte_index] & (1 << bit_index)) != 0;
202 int byte_index = index >> kBitsPerByteLog2; local
204 bits[byte_index] |= (1 << bit_index);
211 int byte_index = index >> kBitsPerByteLog2; local
213 bits[byte_index] |= (1U << bit_index);
H A Dframes.cc621 int byte_index = index >> kBitsPerByteLog2; local
623 if ((safepoint_bits[byte_index] & (1U << bit_index)) != 0) {
/external/libnfc-nxp/src/
H A DphFriNfc_ISO15693Map.c298 uint8_t byte_index = 0; local
304 byte_index = ISO15693_GET_LEN_FIELD_BYTE_NO(
310 *(a_write_buf + byte_index) = 0x00;
312 if ((ISO15693_BYTES_PER_BLOCK - 1) != byte_index)
315 byte_index = (uint8_t)(byte_index + 1);
317 remaining_size = (ISO15693_BYTES_PER_BLOCK - byte_index);
327 (void)memcpy ((void *)(a_write_buf + byte_index),
357 uint8_t byte_index = 0; local
362 byte_index
687 uint8_t byte_index = 0; local
[all...]
H A DphFriNfc_MifULFormat.c616 uint8_t byte_index = 0; local
633 /* 1st write to lock bits, so byte_index is updated */
634 byte_index = ps_type2_info->LockByteNumber;
637 no_of_bits_left_in_block = (uint8_t)((MFUL_BLOCK_SIZE_IN_BYTES - byte_index) *
663 lock_bytes_value[byte_index] = 0xFF;
665 byte_index = (uint8_t)(byte_index + 1);
670 lock_bytes_value[byte_index] = 0;
671 lock_bytes_value[byte_index] = (uint8_t)
672 SET_BITS8 (lock_bytes_value[byte_index],
[all...]
H A DphFriNfc_TopazDynamicMap.c931 uint8_t byte_index = 0; local
946 byte_index = (uint8_t)ps_locktlv_info->ByteNum;
957 no_of_bits_left_in_block = (uint8_t)((TOPAZ_BYTES_PER_BLOCK - byte_index) *
977 lock_bytes_value[byte_index] = 0xFF;
979 byte_index = (uint8_t)(byte_index + 1);
984 lock_bytes_value[byte_index] = 0;
985 lock_bytes_value[byte_index] = (uint8_t)
986 SET_BITS8 (lock_bytes_value[byte_index], 0,
1009 lock_bytes_value[byte_index]
[all...]
/external/chromium/net/disk_cache/
H A Dblock_files.cc94 int byte_index = index / 8; local
96 uint8 map_block = byte_map[byte_index];
111 DCHECK((byte_map[byte_index] & to_clear) == to_clear);
112 byte_map[byte_index] &= ~to_clear;
133 int byte_index = index / 8; local
135 uint8 map_block = byte_map[byte_index];
142 return ((byte_map[byte_index] & to_clear) == to_clear);

Completed in 311 milliseconds