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

  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlparser.h 55 unsigned long * byte_index) = 0;
95 unsigned long * byte_index);
102 void SetPosition(int line, int column, long byte_index);
xmlparser.cc 266 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_);
  /external/v8/src/
safepoint-table.cc 55 int byte_index = reg_index >> kBitsPerByteLog2; local
57 return (bits_[byte_index] & (1 << bit_index)) != 0;
211 int byte_index = index >> kBitsPerByteLog2; local
213 bits[byte_index] |= (1 << bit_index);
220 int byte_index = index >> kBitsPerByteLog2; local
222 bits[byte_index] |= (1U << bit_index);
frames.cc 663 int byte_index = index >> kBitsPerByteLog2; local
665 if ((safepoint_bits[byte_index] & (1U << bit_index)) != 0) {
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_ISO15693Map.c 298 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 = ISO15693_GET_LEN_FIELD_BYTE_NO
687 uint8_t byte_index = 0; local
    [all...]
phFriNfc_MifULFormat.c 616 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], 0,
    [all...]
phFriNfc_TopazDynamicMap.c 931 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,
    [all...]
  /external/chromium/net/disk_cache/
block_files.cc 94 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);
  /external/v8/src/ia32/
macro-assembler-ia32.cc 1558 int byte_index = bit_index \/ kBitsPerByte; local
    [all...]

Completed in 365 milliseconds