Home
last modified time | relevance | path

Searched refs:byte_map (Results 1 – 1 of 1) sorted by relevance

/external/chromium/net/disk_cache/
Dblock_files.cc95 uint8* byte_map = reinterpret_cast<uint8*>(header->allocation_map); in DeleteMapBlock() local
96 uint8 map_block = byte_map[byte_index]; in DeleteMapBlock()
111 DCHECK((byte_map[byte_index] & to_clear) == to_clear); in DeleteMapBlock()
112 byte_map[byte_index] &= ~to_clear; in DeleteMapBlock()
134 uint8* byte_map = reinterpret_cast<uint8*>(header->allocation_map); in UsedMapBlock() local
135 uint8 map_block = byte_map[byte_index]; in UsedMapBlock()
142 return ((byte_map[byte_index] & to_clear) == to_clear); in UsedMapBlock()