Searched refs:bucket_index (Results 1 – 2 of 2) sorted by relevance
91 while (++bucket_index < MAP_NUM_BUCKET) {92 next = map->bucket[bucket_index];104 return node == other.node && bucket_index == other.bucket_index &&109 return node != other.node || bucket_index != other.bucket_index ||118 iterator(size_t index, LinkNode* n, const Map* m) : bucket_index(index), node(n), map(m) {} in iterator()121 size_t bucket_index;
54 uint8_t bucket_index = static_cast<uint8_t>(index) >> 4; variable55 T* bucket = buckets_[bucket_index];66 uint8_t bucket_index = static_cast<uint8_t>(index) >> 4; in editItemAt() local67 T* bucket = buckets_[bucket_index]; in editItemAt()69 bucket = buckets_[bucket_index] = new T[kBucketSize](); in editItemAt()