Searched refs:combinedHash (Results 1 – 1 of 1) sorted by relevance
22 static inline void hashCombineSingleHashed(size_t& combinedHash, size_t hash) { in hashCombineSingleHashed() argument23 combinedHash = 31 * combinedHash + hash; in hashCombineSingleHashed()27 static inline void hashCombineSingle(size_t& combinedHash, const T& val) { in hashCombineSingle() argument28 hashCombineSingleHashed(combinedHash, std::hash<T>{}(val)); in hashCombineSingle()