Home
last modified time | relevance | path

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

/third_party/flutter/skia/bench/
DFontCacheBench.cpp81 unsigned hashMask) { in count_collisions() argument
87 int index = proc(array[i]) & hashMask; in count_collisions()
121 int hashMask = ((1 << hashBits) - 1); in onDraw() local
129 collisions += count_collisions(array, count, gRec[i].fHasher, hashMask); in onDraw()
/third_party/skia/bench/
DFontCacheBench.cpp81 unsigned hashMask) { in count_collisions() argument
87 int index = proc(array[i]) & hashMask; in count_collisions()
121 int hashMask = ((1 << hashBits) - 1); in onDraw() local
129 collisions += count_collisions(array, count, gRec[i].fHasher, hashMask); in onDraw()
/third_party/skia/third_party/externals/brotli/research/
Dsieve.cc145 TextIdx hashMask = (1u << hashLen) - 1u; in sieve_generate() local
154 hash = (((hash << lShift) | (hash >> rShift)) & hashMask) ^ v; in sieve_generate()
160 hash = (((hash << lShift) | (hash >> rShift)) & hashMask) ^ v; in sieve_generate()
193 hash ^= ((v << lShiftX) | (v >> rShiftX)) & hashMask; in sieve_generate()
Ddurchschlag.cc283 TextIdx hashMask = (1u << hashLen) - 1u; in durchschlag_prepare() local
290 hash = (((hash << lShift) | (hash >> rShift)) & hashMask) ^ v; in durchschlag_prepare()
302 TextIdx bucket = (((hash << lShift) | (hash >> rShift)) & hashMask) ^ v; in durchschlag_prepare()
304 hash = bucket ^ (((v << lShiftX) | (v >> rShiftX)) & hashMask); in durchschlag_prepare()
/third_party/flutter/skia/src/core/
DSkTDynamicHash.h277 uint32_t hashMask() const { return fCapacity - 1; } in hashMask() function
280 return Hash(key) & this->hashMask(); in firstIndex()
286 return (index + round + 1) & this->hashMask(); in nextIndex()
/third_party/skia/third_party/externals/brotli/java/org/brotli/enc/
DPreparedDictionaryGenerator.java60 long hashMask = (~0L) >>> (64 - hashBits); in generate() local
79 long h = (accumulator & hashMask) * HASH_MULTIPLIER; in generate()