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

  /external/webp/src/utils/
color_cache.c 22 int VP8LColorCacheInit(VP8LColorCache* const cc, int hash_bits) {
23 const int hash_size = 1 << hash_bits;
25 assert(hash_bits > 0);
29 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/fio/t/
genzipf.c 35 static unsigned long hash_bits = 24; variable
58 struct flist_head *l = &hash[hash_long(val, hash_bits)];
73 struct flist_head *l = &hash[hash_long(val, hash_bits)];
195 hash_bits = 0;
198 hash_bits++;
200 hash_size = 1 << hash_bits;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stackdepot.cc 24 atomic_uint32_t hash_and_use_count; // hash_bits : 12; use_count : 20;
39 u32 hash_bits = local
41 if ((hash & kHashMask) != hash_bits || args.size != size || args.tag != tag)
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
deflate.h 141 uInt hash_bits; /* log2(hash_size) */ member in struct:internal_state
148 * hash_shift * MIN_MATCH >= hash_bits
fx_zlib_deflate.c 287 s->hash_bits = memLevel + 7;
288 s->hash_size = 1 << s->hash_bits;
290 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
614 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...]
  /external/chromium-trace/trace-viewer/tracing/third_party/jszip/
jszip.min.js     [all...]

Completed in 339 milliseconds