Home | History | Annotate | Download | only in optimizing

Lines Matching refs:num_entries_

65     num_entries_ = table[1];
70 return num_entries_;
75 // In a sparse table, we have num_entries_ keys and num_entries_ values, in that order.
76 DCHECK_LT(index, 2 * static_cast<size_t>(num_entries_));
78 // In a packed table, we have the starting key and num_entries_ values.
79 DCHECK_LT(index, 1 + static_cast<size_t>(num_entries_));
98 // In a sparse table, we have num_entries_ keys and num_entries_ values, in that order.
99 return num_entries_;
101 // In a packed table, we have the starting key and num_entries_ values.
121 uint16_t num_entries_;
136 num_entries_(static_cast<size_t>(table_.GetNumEntries())),
140 bool Done() const { return index_ >= num_entries_; }
141 bool IsLast() const { return index_ == num_entries_ - 1; }
160 const size_t num_entries_;