Home
last modified time | relevance | path

Searched refs:kH2Bits (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dswiss-hash-table-helpers.h203 static constexpr int kH2Bits = 7; variable
205 static constexpr int kNotFullMask = (1 << kH2Bits);
212 inline static uint32_t H1(uint32_t hash) { return (hash >> kH2Bits); } in H1()
218 return hash & ((1 << kH2Bits) - 1); in H2()
Dswiss-hash-table-helpers.tq26 const kH2Bits: constexpr int32 generates 'swiss_table::kH2Bits';
28 constexpr uint32 generates '((1 << swiss_table::kH2Bits) - 1)';
94 return hash >>> Unsigned(FromConstexpr<int32>(kH2Bits));