Symbol: htable
arch/powerpc/crypto/aes-gcm-p10-glue.c
42
asmlinkage void gcm_init_htable(unsigned char htable[], unsigned char Xi[]);
arch/powerpc/crypto/ghash.c
101
gcm_ghash_p8(dctx->shash, ctx->htable,
arch/powerpc/crypto/ghash.c
27
void gcm_init_p8(u128 htable[16], const u64 Xi[2]);
arch/powerpc/crypto/ghash.c
28
void gcm_gmult_p8(u64 Xi[2], const u128 htable[16]);
arch/powerpc/crypto/ghash.c
29
void gcm_ghash_p8(u64 Xi[2], const u128 htable[16],
arch/powerpc/crypto/ghash.c
34
u128 htable[16];
arch/powerpc/crypto/ghash.c
62
gcm_init_p8(ctx->htable, (const u64 *) key);
arch/powerpc/crypto/ghash.c
80
gcm_ghash_p8(dctx->shash, ctx->htable, src, GHASH_BLOCK_SIZE);
drivers/net/ethernet/mellanox/mlx5/core/lib/vxlan.c
118
hash_add_rcu(vxlan->htable, &vxlanp->hlist, port);
drivers/net/ethernet/mellanox/mlx5/core/lib/vxlan.c
160
hash_init(vxlan->htable);
drivers/net/ethernet/mellanox/mlx5/core/lib/vxlan.c
174
WARN_ON(!hash_empty(vxlan->htable));
drivers/net/ethernet/mellanox/mlx5/core/lib/vxlan.c
188
hash_for_each_safe(vxlan->htable, bkt, tmp, vxlanp, hlist) {
drivers/net/ethernet/mellanox/mlx5/core/lib/vxlan.c
43
DECLARE_HASHTABLE(htable, 4);
drivers/net/ethernet/mellanox/mlx5/core/lib/vxlan.c
81
hash_for_each_possible_rcu(vxlan->htable, vxlanp, hlist, port)
drivers/net/ethernet/mellanox/mlx5/core/lib/vxlan.c
95
hash_for_each_possible(vxlan->htable, vxlanp, hlist, port)
fs/smb/client/compress/lz77.c
138
u64 *htable;
fs/smb/client/compress/lz77.c
147
htable = kvcalloc(LZ77_HASH_SIZE, sizeof(*htable), GFP_KERNEL);
fs/smb/client/compress/lz77.c
148
if (!htable)
fs/smb/client/compress/lz77.c
158
wnd = src + htable[hash];
fs/smb/client/compress/lz77.c
159
htable[hash] = srcp - src;
fs/smb/client/compress/lz77.c
229
kvfree(htable);
lib/842/842_compress.c
114
hash_init((p)->htable##b); \
lib/842/842_compress.c
125
hash_for_each_possible(p->htable##b, _n, node, p->data##b[n]) { \
lib/842/842_compress.c
147
hash_add((p)->htable##b, &_n->node, _n->data); \
net/netfilter/ipset/ip_set_hash_gen.h
1038
struct htable *t;
net/netfilter/ipset/ip_set_hash_gen.h
115
if ((INT_MAX - sizeof(struct htable)) / sizeof(struct hbucket *)
net/netfilter/ipset/ip_set_hash_gen.h
1163
struct htable *t = rcu_dereference_bh(h->table);
net/netfilter/ipset/ip_set_hash_gen.h
119
return hsize * sizeof(struct hbucket *) + sizeof(struct htable);
net/netfilter/ipset/ip_set_hash_gen.h
1218
struct htable *t;
net/netfilter/ipset/ip_set_hash_gen.h
1266
const struct htable *t;
net/netfilter/ipset/ip_set_hash_gen.h
1331
struct htable *t;
net/netfilter/ipset/ip_set_hash_gen.h
1340
t = (struct htable *)cb->args[IPSET_CB_PRIVATE];
net/netfilter/ipset/ip_set_hash_gen.h
1355
const struct htable *t;
net/netfilter/ipset/ip_set_hash_gen.h
1369
t = (const struct htable *)cb->args[IPSET_CB_PRIVATE];
net/netfilter/ipset/ip_set_hash_gen.h
1472
struct htable *t;
net/netfilter/ipset/ip_set_hash_gen.h
292
struct htable __rcu *table; /* the hash table */
net/netfilter/ipset/ip_set_hash_gen.h
376
mtype_ahash_memsize(const struct htype *h, const struct htable *t)
net/netfilter/ipset/ip_set_hash_gen.h
400
struct htable *t;
net/netfilter/ipset/ip_set_hash_gen.h
429
mtype_ahash_destroy(struct ip_set *set, struct htable *t, bool ext_destroy)
net/netfilter/ipset/ip_set_hash_gen.h
455
mtype_ahash_destroy(set, (__force struct htable *)h->table, true);
net/netfilter/ipset/ip_set_hash_gen.h
484
mtype_gc_do(struct ip_set *set, struct htype *h, struct htable *t, u32 r)
net/netfilter/ipset/ip_set_hash_gen.h
562
struct htable *t;
net/netfilter/ipset/ip_set_hash_gen.h
625
struct htable *t, *orig;
net/netfilter/ipset/ip_set_hash_gen.h
811
const struct htable *t;
net/netfilter/ipset/ip_set_hash_gen.h
843
struct htable *t;
net/netfilter/xt_hashlimit.c
1055
__acquires(htable->lock)
net/netfilter/xt_hashlimit.c
1057
struct xt_hashlimit_htable *htable = pde_data(file_inode(s->file));
net/netfilter/xt_hashlimit.c
1060
spin_lock_bh(&htable->lock);
net/netfilter/xt_hashlimit.c
1061
if (*pos >= htable->cfg.size)
net/netfilter/xt_hashlimit.c
1074
struct xt_hashlimit_htable *htable = pde_data(file_inode(s->file));
net/netfilter/xt_hashlimit.c
1078
if (*pos >= htable->cfg.size) {
net/netfilter/xt_hashlimit.c
1086
__releases(htable->lock)
net/netfilter/xt_hashlimit.c
1088
struct xt_hashlimit_htable *htable = pde_data(file_inode(s->file));
net/netfilter/xt_hashlimit.c
1093
spin_unlock_bh(&htable->lock);
net/netfilter/xt_hashlimit.c
1174
struct xt_hashlimit_htable *htable = pde_data(file_inode(s->file));
net/netfilter/xt_hashlimit.c
1178
if (!hlist_empty(&htable->hash[*bucket])) {
net/netfilter/xt_hashlimit.c
1179
hlist_for_each_entry(ent, &htable->hash[*bucket], node)
net/netfilter/xt_hashlimit.c
1180
if (dl_seq_real_show_v2(ent, htable->family, s))
net/netfilter/xt_hashlimit.c
1188
struct xt_hashlimit_htable *htable = pde_data(file_inode(s->file));
net/netfilter/xt_hashlimit.c
1192
if (!hlist_empty(&htable->hash[*bucket])) {
net/netfilter/xt_hashlimit.c
1193
hlist_for_each_entry(ent, &htable->hash[*bucket], node)
net/netfilter/xt_hashlimit.c
1194
if (dl_seq_real_show_v1(ent, htable->family, s))
net/netfilter/xt_hashlimit.c
1202
struct xt_hashlimit_htable *htable = pde_data(file_inode(s->file));
net/netfilter/xt_hashlimit.c
1206
if (!hlist_empty(&htable->hash[*bucket])) {
net/netfilter/xt_hashlimit.c
1207
hlist_for_each_entry(ent, &htable->hash[*bucket], node)
net/netfilter/xt_hashlimit.c
1208
if (dl_seq_real_show(ent, htable->family, s))
security/selinux/ss/avtab.c
108
newnode = avtab_insert_node(h, prev ? &prev->next : &h->htable[hvalue],
security/selinux/ss/avtab.c
131
for (prev = NULL, cur = h->htable[hvalue]; cur;
security/selinux/ss/avtab.c
137
return avtab_insert_node(h, prev ? &prev->next : &h->htable[hvalue],
security/selinux/ss/avtab.c
155
for (cur = h->htable[hvalue]; cur; cur = cur->next) {
security/selinux/ss/avtab.c
195
cur = h->htable[i];
security/selinux/ss/avtab.c
205
kvfree(h->htable);
security/selinux/ss/avtab.c
206
h->htable = NULL;
security/selinux/ss/avtab.c
214
h->htable = NULL;
security/selinux/ss/avtab.c
225
h->htable = kvcalloc(nslot, sizeof(void *), GFP_KERNEL);
security/selinux/ss/avtab.c
226
if (!h->htable)
security/selinux/ss/avtab.c
269
cur = h->htable[i];
security/selinux/ss/avtab.c
569
for (cur = a->htable[i]; cur; cur = cur->next) {
security/selinux/ss/avtab.c
98
for (prev = NULL, cur = h->htable[hvalue]; cur;
security/selinux/ss/avtab.h
85
struct avtab_node **htable;
security/selinux/ss/hashtab.c
118
cur = h->htable[i];
security/selinux/ss/hashtab.c
152
new->htable = kzalloc_objs(*new->htable, orig->size);
security/selinux/ss/hashtab.c
153
if (!new->htable)
security/selinux/ss/hashtab.c
160
for (orig_cur = orig->htable[i]; orig_cur;
security/selinux/ss/hashtab.c
173
new->htable[i] = tmp;
security/selinux/ss/hashtab.c
185
for (cur = new->htable[i]; cur; cur = tmp) {
security/selinux/ss/hashtab.c
191
kfree(new->htable);
security/selinux/ss/hashtab.c
40
h->htable = NULL;
security/selinux/ss/hashtab.c
43
h->htable = kzalloc_objs(*h->htable, size,
security/selinux/ss/hashtab.c
45
if (!h->htable)
security/selinux/ss/hashtab.c
75
cur = h->htable[i];
security/selinux/ss/hashtab.c
81
h->htable[i] = NULL;
security/selinux/ss/hashtab.c
84
kfree(h->htable);
security/selinux/ss/hashtab.c
85
h->htable = NULL;
security/selinux/ss/hashtab.c
96
cur = h->htable[i];
security/selinux/ss/hashtab.h
107
cur = h->htable[hvalue];
security/selinux/ss/hashtab.h
33
struct hashtab_node **htable; /* hash table */
security/selinux/ss/hashtab.h
75
cur = h->htable[hvalue];
security/selinux/ss/hashtab.h
87
return __hashtab_insert(h, prev ? &prev->next : &h->htable[hvalue], key,