![lukem](/assets/img/avatar_default.png)
uint32_t hash32_buf(const void *buf, size_t len, uint32_t ihash) return 32 bit hash of buf, size len, seeded with initial hash of ihash (usually HASH32_BUF_INIT). this hash may use a different algorithm to hash32_str() and hash32_strn(). uint32_t hash32_str(const void *buf, uint32_t ihash) return 32 bit hash of buf, which is an NUL terminated ascii string, seeded with initial hash of ihash (usually HASH32_STR_INIT). this hash may use a different algorithm to hash32_buf() but must use the same algorithm as hash32_strn(). uint32_t hash32_strn(const void *buf, size_t len, uint32_t ihash) return 32 bit hash of buf, which is an NUL terminated ascii string up to a maximum of len bytes, seeded with initial hash of ihash (usually HASH32_STR_INIT). this hash may use a different algorithm to hash32_buf() but must use the same algorithm as hash32_str(). As discussed on tech-kern@netbsd.org.
…
…
…
…
…
…
…
…
…
…
…
…
…
…
Description
No description provided
Languages
C
85.3%
Roff
7.2%
Assembly
3.1%
Shell
1.7%
Makefile
1.2%
Other
0.9%