Searched refs:hash_mask (Results 1 – 12 of 12) sorted by relevance
/external/tensorflow/tensorflow/contrib/nearest_neighbor/kernels/ |
D | hyperplane_lsh_probes.h | 116 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/ |
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/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/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/cpython3/Modules/zlib/ |
D | deflate.h | 145 uInt hash_mask; /* hash_size-1 */ member
|
D | deflate.c | 163 #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/ |
D | deflate.h | 145 uInt hash_mask; /* hash_size-1 */ member
|
D | deflate.c | 163 #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/ |
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;
|