Home
last modified time | relevance | path

Searched refs:hash_mask (Results 1 – 11 of 11) sorted by relevance

/external/mesa3d/src/amd/vulkan/
Dradv_entrypoints_gen.py36 hash_mask = hash_size - 1 variable
221 while map[h & hash_mask] != none:
228 map[h & hash_mask] = num
287 """ % (prime_factor, prime_step, hash_mask)
/external/mesa3d/src/intel/vulkan/
Danv_entrypoints_gen.py36 hash_mask = hash_size - 1 variable
260 while map[h & hash_mask] != none:
267 map[h & hash_mask] = num
326 """ % (prime_factor, prime_step, hash_mask)
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_format_cached.c257 LLVMValueRef ij_index, hash_index, hash_mask, block_index; in lp_build_fetch_cached_texels() local
303 hash_mask = lp_build_const_int_vec(gallivm, type, LP_BUILD_FORMAT_CACHE_SIZE - 1); in lp_build_fetch_cached_texels()
304 hash_index = LLVMBuildAnd(builder, hash_index, hash_mask, ""); in lp_build_fetch_cached_texels()
/external/syslinux/com32/lib/zlib/
Ddeflate.h139 uInt hash_mask; /* hash_size-1 */ member
Ddeflate.c164 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask)
278 s->hash_mask = s->hash_size - 1;
/external/python/cpython2/Modules/zlib/
Ddeflate.h142 uInt hash_mask; /* hash_size-1 */ member
Ddeflate.c167 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask)
290 s->hash_mask = s->hash_size - 1;
/external/zlib/src/
Ddeflate.h142 uInt hash_mask; /* hash_size-1 */ member
Ddeflate.c167 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask)
290 s->hash_mask = s->hash_size - 1;
/external/pdfium/third_party/zlib_v128/
Ddeflate.h142 uInt hash_mask; /* hash_size-1 */ member
Ddeflate.c167 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask)
289 s->hash_mask = s->hash_size - 1; in deflateInit2_()