Home
last modified time | relevance | path

Searched refs:HASH_MASK (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/amd/vulkan/
Dradv_entrypoints_gen.py210 HASH_MASK = HASH_SIZE - 1 variable
290 while mapping[h & HASH_MASK] != NONE:
297 mapping[h & HASH_MASK] = num
303 hash_mask=HASH_MASK,
/external/clang/test/CoverageMapping/
Dloopmacro.c19 #define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
28 #define HASH_MASK 0xFFFF macro
/external/mesa3d/src/intel/vulkan/
Danv_entrypoints_gen.py336 HASH_MASK = HASH_SIZE - 1 variable
453 while mapping[h & HASH_MASK] != NONE:
460 mapping[h & HASH_MASK] = e.num
467 hash_mask=HASH_MASK,
/external/zopfli/src/zopfli/
Dhash.c27 #define HASH_MASK 32767 macro
88 h->val = (((h->val) << HASH_SHIFT) ^ (c)) & HASH_MASK; in UpdateHashValue()
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz77support/
DLZ77Compressor.java359 private static final int HASH_MASK = HASH_SIZE - 1; field in LZ77Compressor
372 return ((oldHash << H_SHIFT) ^ nextVal) & HASH_MASK; in nextHash()
/external/selinux/libselinux/src/
Dmatchpathcon.c181 #define HASH_MASK (HASH_BUCKETS-1) macro
204 h = (ino + (ino >> HASH_BITS)) & HASH_MASK; in matchpathcon_filespec_add()
Dselinux_restorecon.c404 #define HASH_MASK (HASH_BUCKETS-1) macro
436 h = (ino + (ino >> HASH_BITS)) & HASH_MASK; in filespec_add()