Searched refs:hash_mask (Results 1 - 17 of 17) sorted by relevance
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/ |
H A D | insert_string.h | 68 ret = s->head[h & s->hash_mask]; in insert_string_simd() 69 s->head[h & s->hash_mask] = str; in insert_string_simd() 82 #define UPDATE_HASH(s, h, c) (h = (((h) << s->hash_shift) ^ (c)) & s->hash_mask)
|
/third_party/skia/third_party/externals/zlib/contrib/optimizations/ |
H A D | insert_string.h | 68 ret = s->head[h & s->hash_mask]; in insert_string_simd() 69 s->head[h & s->hash_mask] = str; in insert_string_simd() 82 #define UPDATE_HASH(s, h, c) (h = (((h) << s->hash_shift) ^ (c)) & s->hash_mask)
|
/third_party/node/deps/zlib/contrib/optimizations/ |
H A D | insert_string.h | 41 #define UPDATE_HASH(s, h, c) (h = (((h) << s->hash_shift) ^ (c)) & s->hash_mask) 67 s->ins_h = ((value * 66521 + 66521) >> 16) & s->hash_mask; in insert_string()
|
/third_party/mesa3d/src/vulkan/util/ |
H A D | vk_dispatch_table_gen.py | 326 i = ${prefix}_string_map[h & ${strmap.hash_mask}]; 634 self.hash_mask = self.hash_size - 1 643 while self.mapping[h & self.hash_mask] >= 0: 647 self.mapping[h & self.hash_mask] = idx
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | fill_window_sse.c | 22 20947* (s->window[i+3])) & s->hash_mask;\ 26 25811* (s->window[i+2])) & s->hash_mask;\
|
H A D | deflate.h | 145 uInt hash_mask; /* hash_size-1 */ member
|
H A D | deflate.c | 323 s->hash_mask = s->hash_size - 1;
|
/third_party/skia/third_party/externals/zlib/ |
H A D | fill_window_sse.c | 22 20947* (s->window[i+3])) & s->hash_mask;\ 26 25811* (s->window[i+2])) & s->hash_mask;\
|
H A D | deflate.h | 145 uInt hash_mask; /* hash_size-1 */ member
|
H A D | deflate.c | 318 s->hash_mask = s->hash_size - 1;
|
/third_party/node/deps/zlib/ |
H A D | deflate.h | 149 uInt hash_mask; /* hash_size-1 */ member
|
H A D | deflate.c | 476 s->hash_mask = s->hash_size - 1; in deflateInit2_()
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | deflate.h | 139 uInt hash_mask; /* hash_size-1 */
member
|
H A D | deflate.c | 164 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask)
273 s->hash_mask = s->hash_size - 1;
|
/third_party/zlib/ |
H A D | deflate.h | 149 uInt hash_mask; /* hash_size-1 */ member
|
H A D | deflate.c | 141 #define UPDATE_HASH(s,h,c) (h = (((h) << s->hash_shift) ^ (c)) & s->hash_mask) 449 s->hash_mask = s->hash_size - 1; in deflateInit2_()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_format_s3tc.c | 2049 LLVMValueRef ij_index, hash_index, hash_mask, block_index; in compressed_fetch_cached() local 2090 hash_mask = lp_build_const_int_vec(gallivm, type, LP_BUILD_FORMAT_CACHE_SIZE - 1); in compressed_fetch_cached() 2091 hash_index = LLVMBuildAnd(builder, hash_index, hash_mask, ""); in compressed_fetch_cached()
|
Completed in 26 milliseconds