Home | History | Annotate | Download | only in disk_cache

Lines Matching refs:map_

42   DCHECK(alloc_ || !map_);
51 memcpy(new_map, map_,
52 sizeof(*map_) * std::min(array_size_, old_array_size));
54 delete[] map_; // No need to check for NULL.
55 map_ = new_map;
71 map_[j] |= (1 << i);
73 map_[j] &= ~(1 << i);
81 return map_[j] & (1 << i) ? true : false;
89 map_[j] ^= (1 << i);
95 map_[array_index] = value;
101 return map_[array_index];
105 memcpy(map_, map, std::min(size, array_size_) * sizeof(*map_));
120 map_[word] |= to_add;
122 map_[word] &= ~to_add;
145 memset(map_ + (begin / kIntBits), (value ? 0xFF : 0x00),
146 ((end / kIntBits) - (begin / kIntBits)) * sizeof(*map_));
170 uint32 this_word = map_[word];
184 this_word = map_[word++];
196 this_word = map_[last_word];
216 uint32 one_word = map_[word_index];
246 one_word = map_[++word_index];