Home
last modified time | relevance | path

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

/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/utils/
A Dcolor_cache_utils.c23 int VP8LColorCacheInit(VP8LColorCache* const cc, int hash_bits) { in VP8LColorCacheInit() argument
24 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()
A Dcolor_cache_utils.h73 int VP8LColorCacheInit(VP8LColorCache* const color_cache, int hash_bits);
/AliOS-Things-master/components/py_engine/engine/lib/uzlib/
A Duzlib.h152 unsigned int hash_bits; member
/AliOS-Things-master/components/py_engine/external/unzip/internal/
A Ddeflate.h138 uInt hash_bits; /* log2(hash_size) */ member
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/
A Ddeflate.h144 uInt hash_bits; /* log2(hash_size) */ member
A Ddeflate.c316 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");
/AliOS-Things-master/components/py_engine/external/unzip/src/
A Ddeflate.c276 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");
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dquickjs.c4275 static uint32_t get_shape_hash(uint32_t h, int hash_bits) in get_shape_hash() argument
4277 return h >> (32 - hash_bits); in get_shape_hash()

Completed in 118 milliseconds