HomeSort by relevance Sort by last modified time
    Searched refs:hash_bits (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/libwebp/utils/
color_cache.c 26 int VP8LColorCacheInit(VP8LColorCache* const cc, int hash_bits) {
27 const int hash_size = 1 << hash_bits;
29 assert(hash_bits > 0);
33 cc->hash_shift_ = 32 - hash_bits;
color_cache.h 27 int hash_shift_; // Hash shift: 32 - hash_bits.
57 // Initializes the color cache with 'hash_bits' bits for the keys.
59 int VP8LColorCacheInit(VP8LColorCache* const color_cache, int hash_bits);
  /external/webp/src/utils/
color_cache.c 26 int VP8LColorCacheInit(VP8LColorCache* const cc, int hash_bits) {
27 const int hash_size = 1 << hash_bits;
29 assert(hash_bits > 0);
33 cc->hash_shift_ = 32 - hash_bits;
color_cache.h 27 int hash_shift_; // Hash shift: 32 - hash_bits.
57 // Initializes the color cache with 'hash_bits' bits for the keys.
59 int VP8LColorCacheInit(VP8LColorCache* const color_cache, int hash_bits);
  /external/chromium_org/third_party/zlib/
deflate.h 141 uInt hash_bits; /* log2(hash_size) */ member in struct:internal_state
150 * hash_shift * MIN_MATCH >= hash_bits
deflate.c 277 s->hash_bits = memLevel + 7;
278 s->hash_size = 1 << s->hash_bits;
280 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
541 if (s->w_bits != 15 || s->hash_bits != 8 + 7)
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
deflate.h 138 uInt hash_bits; /* log2(hash_size) */ member in struct:internal_state
145 * hash_shift * MIN_MATCH >= hash_bits
deflate.c 282 s->hash_bits = memLevel + 7;
283 s->hash_size = 1 << s->hash_bits;
285 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
506 if (s->w_bits != 15 || s->hash_bits != 8 + 7)
    [all...]
  /external/zlib/src/
deflate.h 141 uInt hash_bits; /* log2(hash_size) */ member in struct:internal_state
148 * hash_shift * MIN_MATCH >= hash_bits
deflate.c 288 s->hash_bits = memLevel + 7;
289 s->hash_size = 1 << s->hash_bits;
291 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
615 if (s->w_bits != 15 || s->hash_bits != 8 + 7)
    [all...]

Completed in 92 milliseconds