Home | History | Annotate | Download | only in src

Lines Matching full:seed

476   explicit SequentialStringKey(Vector<const Char> string, uint32_t seed)
477 : string_(string), hash_field_(0), seed_(seed) { }
502 OneByteStringKey(Vector<const uint8_t> str, uint32_t seed)
503 : SequentialStringKey<uint8_t>(str, seed) { }
562 explicit TwoByteStringKey(Vector<const uc16> str, uint32_t seed)
563 : SequentialStringKey<uc16>(str, seed) { }
576 explicit Utf8StringKey(Vector<const char> string, uint32_t seed)
577 : string_(string), hash_field_(0), seed_(seed) { }
6300 StringHasher::StringHasher(int length, uint32_t seed)
6302 raw_running_hash_(seed),
6387 uint32_t seed) {
6388 StringHasher hasher(length, seed);
6621 uint32_t SeededNumberDictionaryShape::SeededHash(uint32_t key, uint32_t seed) {
6622 return ComputeIntegerHash(key, seed);
6627 uint32_t seed,
6630 return ComputeIntegerHash(static_cast<uint32_t>(other->Number()), seed);