2020-12-15 07:11:17 +00:00
|
|
|
module hash
|
|
|
|
|
2021-04-19 16:01:47 +00:00
|
|
|
//#flag -I @VEXEROOT/thirdparty/wyhash
|
2020-12-15 07:11:17 +00:00
|
|
|
//#include "wyhash.h"
|
2021-05-08 10:32:29 +00:00
|
|
|
fn C.wyhash(&byte, u64, u64, &u64) u64
|
2021-05-08 11:36:52 +00:00
|
|
|
|
2020-12-27 13:18:46 +00:00
|
|
|
fn C.wyhash64(u64, u64) u64
|
2020-12-15 07:11:17 +00:00
|
|
|
|
|
|
|
[inline]
|
2021-05-08 10:32:29 +00:00
|
|
|
pub fn wyhash_c(key &byte, len u64, seed u64) u64 {
|
2021-04-05 07:02:47 +00:00
|
|
|
return C.wyhash(key, len, seed, &u64(C._wyp))
|
2020-12-15 07:11:17 +00:00
|
|
|
}
|
|
|
|
|
2020-12-27 13:18:46 +00:00
|
|
|
[inline]
|
|
|
|
pub fn wyhash64_c(a u64, b u64) u64 {
|
|
|
|
return C.wyhash64(a, b)
|
|
|
|
}
|
2021-08-15 15:09:51 +00:00
|
|
|
|
|
|
|
[inline]
|
|
|
|
pub fn sum64_string(key string, seed u64) u64 {
|
|
|
|
return wyhash_c(key.str, u64(key.len), seed)
|
|
|
|
}
|
|
|
|
|
|
|
|
[inline]
|
|
|
|
pub fn sum64(key []byte, seed u64) u64 {
|
|
|
|
return wyhash_c(&byte(key.data), u64(key.len), seed)
|
|
|
|
}
|