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

  /external/webkit/WebCore/platform/graphics/
IntSizeHash.h 31 template<> struct IntHash<IntSize> {
32 static unsigned hash(const IntSize& key) { return intHash((static_cast<uint64_t>(key.width()) << 32 | key.height())); }
36 template<> struct DefaultHash<IntSize> { typedef IntHash<IntSize> Hash; };
  /external/webkit/JavaScriptCore/wtf/
HashFunctions.h 37 // Thomas Wang's 32 Bit Mix Function: http://www.cris.com/~Ttwang/tech/inthash.htm
38 inline unsigned intHash(uint8_t key8)
50 // Thomas Wang's 32 Bit Mix Function: http://www.cris.com/~Ttwang/tech/inthash.htm
51 inline unsigned intHash(uint16_t key16)
63 // Thomas Wang's 32 Bit Mix Function: http://www.cris.com/~Ttwang/tech/inthash.htm
64 inline unsigned intHash(uint32_t key)
75 // Thomas Wang's 64 bit Mix Function: http://www.cris.com/~Ttwang/tech/inthash.htm
76 inline unsigned intHash(uint64_t key)
89 template<typename T> struct IntHash {
90 static unsigned hash(T key) { return intHash(static_cast<typename IntTypes<sizeof(T)>::UnsignedType>(key));
    [all...]

Completed in 364 milliseconds