1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

hash: document all public functions (#16987)

This commit is contained in:
Nahua 2023-01-15 21:37:09 +01:00 committed by GitHub
parent 7db7951bd0
commit 5f30110e2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 2 deletions

View File

@ -23,6 +23,8 @@ mut:
table []u32
}
// generate_table populates a 256-word table from the specified polynomial `poly`
// to represent the polynomial for efficient processing.
fn (mut c Crc32) generate_table(poly int) {
for i in 0 .. 256 {
mut crc := u32(i)
@ -45,18 +47,20 @@ fn (c &Crc32) sum32(b []u8) u32 {
return ~crc
}
// checksum returns the CRC-32 checksum of data `b` by using the polynomial represented by
// `c`'s table.
pub fn (c &Crc32) checksum(b []u8) u32 {
return c.sum32(b)
}
// pass the polynomial to use
// new creates a `Crc32` polynomial.
pub fn new(poly int) &Crc32 {
mut c := &Crc32{}
c.generate_table(poly)
return c
}
// calculate crc32 using ieee
// sum calculates the CRC-32 checksum of `b` by using the IEEE polynomial.
pub fn sum(b []u8) u32 {
c := new(int(crc32.ieee))
return c.sum32(b)

View File

@ -6,21 +6,25 @@ fn C.wyhash(&u8, u64, u64, &u64) u64
fn C.wyhash64(u64, u64) u64
// wyhash_c returns a hash given a byte string `key`, its `len`, and a `seed`.
[inline]
pub fn wyhash_c(key &u8, len u64, seed u64) u64 {
return C.wyhash(key, len, seed, &u64(C._wyp))
}
// wyhash64_c returns a hash given two u64 values `a` and `b`.
[inline]
pub fn wyhash64_c(a u64, b u64) u64 {
return C.wyhash64(a, b)
}
// sum64_string returns a hash given a V string `key` and a `seed`.
[inline]
pub fn sum64_string(key string, seed u64) u64 {
return wyhash_c(key.str, u64(key.len), seed)
}
// sum64 returns a hash given a byte array `key` and a `seed`.
[inline]
pub fn sum64(key []u8, seed u64) u64 {
return wyhash_c(&u8(key.data), u64(key.len), seed)

View File

@ -28,6 +28,7 @@ fn wyrotr(v u64, k u32) u64 {
return (v >> k) | (v << (64 - k))
}
// wymum returns a hash by performing multiply and mix on `a` and `b`.
[inline]
pub fn wymum(a u64, b u64) u64 {
/*