Home | History | Annotate | Download | only in base

Lines Matching refs:Entry

261   class Entry {
263 Entry() {
270 Entry(std::initializer_list<uint32_t> values) {
294 Entry& operator[](size_t row) { return rows_[row]; }
295 const Entry& operator[](size_t row) const { return rows_[row]; }
296 const Entry& back() const { return rows_.back(); }
301 void Add(Entry value) {
307 uint32_t Dedup(Entry* values, size_t count = 1) {
309 uint32_t hash = hasher(MemoryRegion(values, sizeof(Entry) * count));
319 [](const Entry& lhs, const Entry& rhs) {
320 return memcmp(&lhs, &rhs, sizeof(Entry)) == 0;
333 uint32_t Dedup(Entry value) {
391 ScopedArenaDeque<Entry> rows_;