Home
last modified time | relevance | path

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

/external/angle/src/common/
Dhash_utils.h41 inline void HashCombine(std::size_t &seed, const T &hashableObject, Rest... rest) in HashCombine() argument
44 seed ^= hasher(hashableObject) + 0x9e3779b9 + (seed << 6) + (seed >> 2); in HashCombine()
49 inline size_t HashMultiple(const T &hashableObject, Rest... rest) in HashMultiple() argument
52 HashCombine(seed, hashableObject, rest...); in HashMultiple()