diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2022-12-22 04:43:53 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2022-12-22 04:43:53 +0000 |
commit | abc11d4de552c25745853574f2258556b598cc7a (patch) | |
tree | 6aaeb5ad5a8d0206d34e4fe61da00b189152af39 /sys | |
parent | d7a0313d80de78b58ec2cb885bd27e530e9382bd (diff) |
provide stoeplitz_n32()
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/toeplitz.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/net/toeplitz.h b/sys/net/toeplitz.h index 3f30fd4b739..3ce66ead3ba 100644 --- a/sys/net/toeplitz.h +++ b/sys/net/toeplitz.h @@ -1,4 +1,4 @@ -/* $OpenBSD: toeplitz.h,v 1.8 2021/02/24 23:44:04 dlg Exp $ */ +/* $OpenBSD: toeplitz.h,v 1.9 2022/12/22 04:43:52 dlg Exp $ */ /* * Copyright (c) 2019 David Gwynne <dlg@openbsd.org> @@ -118,6 +118,8 @@ extern const struct stoeplitz_cache *const stoeplitz_cache; #define stoeplitz_n16(_n16) \ stoeplitz_hash_n16(stoeplitz_cache, (_n16)) +#define stoeplitz_n32(_n32) \ + stoeplitz_hash_n32(stoeplitz_cache, (_n32)) #define stoeplitz_h16(_h16) \ stoeplitz_hash_h16(stoeplitz_cache, (_h16)) #define stoeplitz_h32(_h32) \ |