Searched refs:hash_bits (Results 1 – 8 of 8) sorted by relevance
23 int VP8LColorCacheInit(VP8LColorCache* const cc, int hash_bits) { in VP8LColorCacheInit() argument24 const int hash_size = 1 << hash_bits; in VP8LColorCacheInit()26 assert(hash_bits > 0); in VP8LColorCacheInit()30 cc->hash_shift_ = 32 - hash_bits; in VP8LColorCacheInit()31 cc->hash_bits_ = hash_bits; in VP8LColorCacheInit()
73 int VP8LColorCacheInit(VP8LColorCache* const color_cache, int hash_bits);
152 unsigned int hash_bits; member
138 uInt hash_bits; /* log2(hash_size) */ member
144 uInt hash_bits; /* log2(hash_size) */ member
316 s->hash_bits = (uInt)memLevel + 7;317 s->hash_size = 1 << s->hash_bits;319 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);703 if (s->w_bits != 15 || s->hash_bits != 8 + 7)1270 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");1397 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
276 s->hash_bits = memLevel + 7;277 s->hash_size = 1 << s->hash_bits;279 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);535 if (s->w_bits != 15 || s->hash_bits != 8 + 7)1097 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");1224 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
4275 static uint32_t get_shape_hash(uint32_t h, int hash_bits) in get_shape_hash() argument4277 return h >> (32 - hash_bits); in get_shape_hash()
Completed in 118 milliseconds