Home
last modified time | relevance | path

Searched refs:kHashbits (Results 1 – 1 of 1) sorted by relevance

/external/webkit/JavaScriptCore/wtf/
DTCPackedCache.h139 static const size_t kHashbits = 12; variable
145 COMPILE_ASSERT(kHashbits <= kKeybits, hash_function); in PackedCache()
146 COMPILE_ASSERT(kKeybits - kHashbits + kValuebits <= kTbits, in PackedCache()
174 for (int i = 0; i < 1 << kHashbits; i++) { in Clear()
194 const int shift = kHashbits - kValuebits; in KeyToUpper()
203 const int shift = kHashbits - kValuebits; in UpperToPartialKey()
209 return static_cast<size_t>(key) & N_ONES_(size_t, kHashbits); in Hash()
218 static const int kUpperbits = kKeybits - kHashbits;
229 T array_[1 << kHashbits];