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

/external/webkit/WebCore/platform/graphics/
H A DIntSizeHash.h31 template<> struct IntHash<IntSize> { struct in namespace:WTF
36 template<> struct DefaultHash<IntSize> { typedef IntHash<IntSize> Hash; };
/external/webkit/JavaScriptCore/wtf/
H A DHashFunctions.h89 template<typename T> struct IntHash { struct in namespace:WTF
118 return IntHash<uintptr_t>::hash(reinterpret_cast<uintptr_t>(key));
152 // make IntHash the default hash function for many integer types
154 template<> struct DefaultHash<short> { typedef IntHash<unsigned> Hash; };
155 template<> struct DefaultHash<unsigned short> { typedef IntHash<unsigned> Hash; };
156 template<> struct DefaultHash<int> { typedef IntHash<unsigned> Hash; };
157 template<> struct DefaultHash<unsigned> { typedef IntHash<unsigned> Hash; };
158 template<> struct DefaultHash<long> { typedef IntHash<unsigned long> Hash; };
159 template<> struct DefaultHash<unsigned long> { typedef IntHash<unsigned long> Hash; };
160 template<> struct DefaultHash<long long> { typedef IntHash<unsigne
[all...]

Completed in 50 milliseconds