OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:scache
(Results
1 - 3
of
3
) sorted by relevancy
/src/sys/net/
toeplitz.h
39
stoeplitz_cache_entry(const struct stoeplitz_cache *
scache
, uint8_t byte)
41
return (
scache
->bytes[byte]);
62
stoeplitz_hash_n16(const struct stoeplitz_cache *
scache
, uint16_t n16)
66
hi = stoeplitz_cache_entry(
scache
, n16 >> 8);
67
lo = stoeplitz_cache_entry(
scache
, n16);
74
stoeplitz_hash_n32(const struct stoeplitz_cache *
scache
, uint32_t n32)
76
return (stoeplitz_hash_n16(
scache
, n32 ^ (n32 >> 16)));
81
stoeplitz_hash_h16(const struct stoeplitz_cache *
scache
, uint16_t h16)
85
lo = stoeplitz_cache_entry(
scache
, h16);
86
hi = stoeplitz_cache_entry(
scache
, h16 >> 8)
[
all
...]
toeplitz.c
145
* Therefore the results H * val for all values of a byte are cached in
scache
.
148
stoeplitz_cache_init(struct stoeplitz_cache *
scache
, stoeplitz_key skey)
168
scache
->bytes[val] = res;
173
stoeplitz_hash_ip4(const struct stoeplitz_cache *
scache
,
176
return (stoeplitz_hash_n32(
scache
, faddr ^ laddr));
180
stoeplitz_hash_ip4port(const struct stoeplitz_cache *
scache
,
183
return (stoeplitz_hash_n32(
scache
, faddr ^ laddr ^ fport ^ lport));
188
stoeplitz_hash_ip6(const struct stoeplitz_cache *
scache
,
197
return (stoeplitz_hash_n32(
scache
, n32));
201
stoeplitz_hash_ip6port(const struct stoeplitz_cache *
scache
,
[
all
...]
/src/sys/dev/pci/
arcmsrvar.h
379
uint32_t
scache
;
member in struct:arc_fw_sysinfo
Completed in 13 milliseconds
Indexes created Wed Oct 29 03:09:52 GMT 2025