aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/hash/wyhash.c.v
blob: 758af0306bce73abb8b9e3d83dbf076993aab721 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module hash

//#flag -I @VEXEROOT/thirdparty/wyhash
//#include "wyhash.h"
fn C.wyhash(&byte, u64, u64, &u64) u64

fn C.wyhash64(u64, u64) u64

fn init() {
	_ := map{
		1: 1
	}
}

[inline]
pub fn wyhash_c(key &byte, len u64, seed u64) u64 {
	return C.wyhash(key, len, seed, &u64(C._wyp))
}

[inline]
pub fn wyhash64_c(a u64, b u64) u64 {
	return C.wyhash64(a, b)
}