Home
last modified time | relevance | path

Searched refs:GOLDEN_RATIO_32 (Results 1 – 24 of 24) sorted by relevance

/dports/multimedia/v4l_compat/linux-5.13-rc2/tools/include/linux/
H A Dhash.h15 #define GOLDEN_RATIO_PRIME GOLDEN_RATIO_32
41 #define GOLDEN_RATIO_32 0x61C88647 macro
62 return val * GOLDEN_RATIO_32; in __hash_32_generic()
/dports/multimedia/libv4l/linux-5.13-rc2/tools/include/linux/
H A Dhash.h15 #define GOLDEN_RATIO_PRIME GOLDEN_RATIO_32
41 #define GOLDEN_RATIO_32 0x61C88647 macro
62 return val * GOLDEN_RATIO_32; in __hash_32_generic()
/dports/multimedia/libv4l/linux-5.13-rc2/include/linux/
H A Dhash.h15 #define GOLDEN_RATIO_PRIME GOLDEN_RATIO_32
41 #define GOLDEN_RATIO_32 0x61C88647 macro
62 return val * GOLDEN_RATIO_32; in __hash_32_generic()
/dports/multimedia/v4l_compat/linux-5.13-rc2/include/linux/
H A Dhash.h15 #define GOLDEN_RATIO_PRIME GOLDEN_RATIO_32
41 #define GOLDEN_RATIO_32 0x61C88647 macro
62 return val * GOLDEN_RATIO_32; in __hash_32_generic()
/dports/multimedia/v4l-utils/linux-5.13-rc2/include/linux/
H A Dhash.h15 #define GOLDEN_RATIO_PRIME GOLDEN_RATIO_32
41 #define GOLDEN_RATIO_32 0x61C88647 macro
62 return val * GOLDEN_RATIO_32; in __hash_32_generic()
/dports/multimedia/v4l-utils/linux-5.13-rc2/tools/include/linux/
H A Dhash.h15 #define GOLDEN_RATIO_PRIME GOLDEN_RATIO_32
41 #define GOLDEN_RATIO_32 0x61C88647 macro
62 return val * GOLDEN_RATIO_32; in __hash_32_generic()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.random/share/classes/jdk/random/
H A DL32X64MixRandom.java162 this.x0 = RandomSupport.mixMurmur32(v += RandomSupport.GOLDEN_RATIO_32); in L32X64MixRandom()
163 this.x1 = RandomSupport.mixMurmur32(v + RandomSupport.GOLDEN_RATIO_32); in L32X64MixRandom()
188 RandomSupport.mixLea32((int)(seed) + RandomSupport.GOLDEN_RATIO_32)); in L32X64MixRandom()
/dports/benchmarks/fio/fio-3.29/
H A Dhash.h45 #define GOLDEN_RATIO_32 0x61C88647 macro
94 #define JHASH_INITVAL GOLDEN_RATIO_32
/dports/multimedia/v4l-utils/linux-5.13-rc2/arch/h8300/include/asm/
H A Dhash.h49 : "%r" (GOLDEN_RATIO_32), "1" (x)); in __hash_32()
/dports/multimedia/v4l_compat/linux-5.13-rc2/arch/h8300/include/asm/
H A Dhash.h49 : "%r" (GOLDEN_RATIO_32), "1" (x)); in __hash_32()
/dports/multimedia/libv4l/linux-5.13-rc2/arch/h8300/include/asm/
H A Dhash.h49 : "%r" (GOLDEN_RATIO_32), "1" (x)); in __hash_32()
/dports/misc/e2fsprogs-libblkid/e2fsprogs-1.46.5/e2fsck/
H A Djfs_user.h157 #define GOLDEN_RATIO_32 0x61C88647 macro
162 return val * GOLDEN_RATIO_32; in __hash_32()
/dports/misc/e2fsprogs-libuuid/e2fsprogs-1.46.5/e2fsck/
H A Djfs_user.h157 #define GOLDEN_RATIO_32 0x61C88647 macro
162 return val * GOLDEN_RATIO_32; in __hash_32()
/dports/sysutils/e2fsprogs/e2fsprogs-1.46.5/e2fsck/
H A Djfs_user.h157 #define GOLDEN_RATIO_32 0x61C88647 macro
162 return val * GOLDEN_RATIO_32; in __hash_32()
/dports/dns/bind9-devel/bind9-e112afa15668bd3b1baed59df2d21e01b46da15e/lib/dns/
H A Drbt.c72 #define GOLDEN_RATIO_32 0x61C88647 macro
80 return (val * GOLDEN_RATIO_32 >> (32 - bits)); in hash_32()
H A Drbtdb.c318 #define GOLDEN_RATIO_32 0x61C88647 macro
325 return (val * GOLDEN_RATIO_32 >> (32 - bits)); in hash_32()
H A Dzone.c18457 #define GOLDEN_RATIO_32 0x61C88647 macro
18462 return (val * GOLDEN_RATIO_32 >> (32 - bits)); in hash_index()
/dports/dns/bind-tools/bind-9.16.27/lib/dns/
H A Drbt.c75 #define GOLDEN_RATIO_32 0x61C88647 macro
83 return (val * GOLDEN_RATIO_32 >> (32 - bits)); in hash_32()
H A Drbtdb.c358 #define GOLDEN_RATIO_32 0x61C88647 macro
365 return (val * GOLDEN_RATIO_32 >> (32 - bits)); in hash_32()
H A Dzone.c18351 #define GOLDEN_RATIO_32 0x61C88647 macro
18356 return (val * GOLDEN_RATIO_32 >> (32 - bits)); in hash_index()
/dports/dns/bind916/bind-9.16.27/lib/dns/
H A Drbt.c75 #define GOLDEN_RATIO_32 0x61C88647 macro
83 return (val * GOLDEN_RATIO_32 >> (32 - bits)); in hash_32()
H A Drbtdb.c358 #define GOLDEN_RATIO_32 0x61C88647 macro
365 return (val * GOLDEN_RATIO_32 >> (32 - bits)); in hash_32()
H A Dzone.c18351 #define GOLDEN_RATIO_32 0x61C88647 macro
18356 return (val * GOLDEN_RATIO_32 >> (32 - bits)); in hash_index()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/jdk/internal/util/random/
H A DRandomSupport.java795 public static final int GOLDEN_RATIO_32 = 0x9e3779b9; field in RandomSupport