Searched refs:hash_mask (Results 1 – 11 of 11) sorted by relevance
/external/mesa3d/src/amd/vulkan/ |
D | radv_entrypoints_gen.py | 36 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/ |
D | anv_entrypoints_gen.py | 36 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/ |
D | lp_bld_format_cached.c | 257 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/ |
D | deflate.h | 139 uInt hash_mask; /* hash_size-1 */ member
|
D | deflate.c | 164 #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/ |
D | deflate.h | 142 uInt hash_mask; /* hash_size-1 */ member
|
D | deflate.c | 167 #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/ |
D | deflate.h | 142 uInt hash_mask; /* hash_size-1 */ member
|
D | deflate.c | 167 #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/ |
D | deflate.h | 142 uInt hash_mask; /* hash_size-1 */ member
|
D | deflate.c | 167 #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_()
|