HomeSort by relevance Sort by last modified time
    Searched defs:IntHash (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
IntSizeHash.h 29 template<> struct IntHash<blink::IntSize> {
36 typedef IntHash<blink::IntSize> Hash;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
SkSizeHash.h 36 template<> struct IntHash<SkSize> {
43 typedef IntHash<SkSize> Hash;
60 template<> struct IntHash<SkISize> {
67 typedef IntHash<SkISize> Hash;
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashFunctions.h 39 // Thomas Wang's 32 Bit Mix Function: http://www.cris.com/~Ttwang/tech/inthash.htm
40 inline unsigned intHash(uint8_t key8)
52 // Thomas Wang's 32 Bit Mix Function: http://www.cris.com/~Ttwang/tech/inthash.htm
53 inline unsigned intHash(uint16_t key16)
65 // Thomas Wang's 32 Bit Mix Function: http://www.cris.com/~Ttwang/tech/inthash.htm
66 inline unsigned intHash(uint32_t key)
77 // Thomas Wang's 64 bit Mix Function: http://www.cris.com/~Ttwang/tech/inthash.htm
78 inline unsigned intHash(uint64_t key)
103 template<typename T> struct IntHash {
104 static unsigned hash(T key) { return intHash(static_cast<typename IntTypes<sizeof(T)>::UnsignedType>(key));
    [all...]

Completed in 62 milliseconds