Lines Matching refs:entry_
22 explicit constexpr InternalIndex(size_t raw) : entry_(raw) {}
26 DCHECK_GE(entry_, subtract);
27 return InternalIndex(entry_ - subtract);
30 DCHECK_LT(entry_, std::numeric_limits<size_t>::max() - add);
31 return InternalIndex(entry_ + add);
34 bool is_found() const { return entry_ != kNotFound; }
35 bool is_not_found() const { return entry_ == kNotFound; }
37 size_t raw_value() const { return entry_; }
39 DCHECK_LE(entry_, std::numeric_limits<uint32_t>::max());
40 return static_cast<uint32_t>(entry_);
43 DCHECK_GE(std::numeric_limits<int>::max(), entry_);
44 return static_cast<int>(entry_);
48 return entry_ == other.entry_;
54 return entry_ != other.entry_;
57 entry_++;
62 return entry_ < other.entry_;
81 size_t entry_;