Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/contrib/nearest_neighbor/kernels/
Dhyperplane_lsh_probes.h116 HashType hash_mask = 1; in SetupProbing() local
117 hash_mask = hash_mask << (num_hyperplanes_per_table_ - best_index - 1); in SetupProbing()
118 heap_.InsertUnsorted(score, ProbeCandidate(ii, hash_mask, 0)); in SetupProbing()
199 ProbeCandidate(int_fast32_t table = 0, HashType hash_mask = 0,
201 : table_(table), hash_mask_(hash_mask), last_index_(last_index) {} in table_()
/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/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/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/cpython3/Modules/zlib/
Ddeflate.h145 uInt hash_mask; /* hash_size-1 */ member
Ddeflate.c163 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask)
318 s->hash_mask = s->hash_size - 1;
/external/zlib/src/
Ddeflate.h145 uInt hash_mask; /* hash_size-1 */ member
Ddeflate.c163 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask)
318 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;