Home
last modified time | relevance | path

Searched refs:h2_t (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dswiss-hash-table-helpers.h172 using h2_t = uint8_t; variable
246 BitMask<uint32_t, kWidth> Match(h2_t hash) const { in Match()
259 return Match(static_cast<h2_t>(kEmpty)); in MatchEmpty()
302 BitMask<uint32_t, kWidth> Match(h2_t hash) const { in Match()
305 if (static_cast<h2_t>(ctrl_[i]) == hash) { in Match()
314 return Match(static_cast<h2_t>(kEmpty)); in MatchEmpty()
362 BitMask<uint64_t, kWidth, 3> Match(h2_t hash) const { in Match()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Draw_hash_set.h254 using h2_t = uint8_t;
316 inline h2_t H2(size_t hash) { return hash & 0x7F; }
349 BitMask<uint32_t, kWidth> Match(h2_t hash) const {
362 return Match(static_cast<h2_t>(ctrl_t::kEmpty));
403 BitMask<uint64_t, kWidth, 3> Match(h2_t hash) const {
628 inline void SetCtrl(size_t i, h2_t h, size_t capacity, ctrl_t* ctrl,
Draw_hash_set_benchmark.cc330 h2_t h = 1; in BM_Group_Match()
Draw_hash_set_test.cc171 for (h2_t h = 0; h != 128; ++h) EXPECT_FALSE(Group{EmptyGroup()}.Match(h)); in TEST()