Lines Matching refs:Entry
33 // Presence of entry might imply some pre-conditions.
48 // Aligned since we load the whole entry in single assembly instruction.
49 typedef std::pair<const void*, size_t> Entry ALIGNED(2 * sizeof(size_t));
59 data_.fill(Entry{});
67 Entry& entry = data_[IndexOf(key)];
68 if (LIKELY(entry.first == key)) {
69 *value = entry.second;
77 data_[IndexOf(key)] = Entry{key, value};
90 std::array<Entry, kSize> data_;