OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IntHash
(Results
1 - 5
of
5
) 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
...]
/external/webkit/JavaScriptCore/runtime/
NumericStrings.h
66
CacheEntry<int>& lookup(int i) { return intCache[WTF::
IntHash
<int>::hash(i) & (cacheSize - 1)]; }
JSValue.h
256
typedef
IntHash
<EncodedJSValue> EncodedJSValueHash;
/external/webkit/WebCore/platform/text/
StringHash.h
237
struct AlreadyHashed :
IntHash
<unsigned> {
Completed in 127 milliseconds