Searched defs:hash_t (Results 1 - 1 of 1) sorted by relevance

/frameworks/rs/cpp/util/
H A DTypeHelpers.h266 typedef uint32_t hash_t; typedef in namespace:android::RSC
269 hash_t hash_type(const TKey& key);
274 template <> inline hash_t hash_type(const T& value) { return hash_t(value); }
276 template <> inline hash_t hash_type(const T& value) { \
277 return hash_t((value >> 32) ^ value); }
279 template <> inline hash_t hash_type(const T& value) { \
294 template <typename T> inline hash_t hash_type(T* const & value) {

Completed in 43 milliseconds