Symbol: hash_entry
usr/src/cmd/nscd/nscd_dbimpl.c
197
nscd_hash_t *idx_p, *hash_entry;
usr/src/cmd/nscd/nscd_dbimpl.c
258
hash_entry = (nscd_hash_t *)entry;
usr/src/cmd/nscd/nscd_dbimpl.c
261
hash_entry->prev_p = prev_p;
usr/src/cmd/nscd/nscd_dbimpl.c
263
db->hash_tbl_p[i] = hash_entry;
usr/src/cmd/nscd/nscd_dbimpl.c
265
prev_p->next_p = hash_entry;
usr/src/cmd/nscd/nscd_dbimpl.c
268
hash_entry->next_p = next_p;
usr/src/cmd/nscd/nscd_dbimpl.c
270
next_p->prev_p = hash_entry;
usr/src/cmd/sgs/elfdump/common/elfdump.c
4187
hash_entry(_cache, &cache[sshdr->sh_link], hsecname,
usr/src/cmd/sgs/elfdump/common/elfdump.c
4204
hash_entry(_cache, &cache[sshdr->sh_link],
usr/src/cmd/sgs/link_audit/common/hash.c
116
hash_entry *tmp;
usr/src/cmd/sgs/link_audit/common/hash.c
140
hash_entry * tmp, * prev = NULL;
usr/src/cmd/sgs/link_audit/common/hash.c
203
hash_entry *tmp = tbl->start;
usr/src/cmd/sgs/link_audit/common/hash.c
217
hash_entry *tmp = tbl->start;
usr/src/cmd/sgs/link_audit/common/hash.c
231
hash_entry * tmp = tbl->start, * prev;
usr/src/cmd/sgs/link_audit/common/hash.c
41
ptr->table = malloc((size_t)(sizeof (hash_entry *) * size));
usr/src/cmd/sgs/link_audit/common/hash.c
42
(void) memset((char *)ptr->table, 0, sizeof (hash_entry *) * size);
usr/src/cmd/sgs/link_audit/common/hash.c
55
ptr->table = malloc(sizeof (hash_entry *) * size);
usr/src/cmd/sgs/link_audit/common/hash.c
56
(void) memset((char *)ptr->table, 0, sizeof (hash_entry *) * size);
usr/src/cmd/sgs/link_audit/common/hash.c
66
hash_entry *tmp, *new;
usr/src/cmd/sgs/link_audit/common/hash.h
29
struct hash_entry *next_entry;
usr/src/cmd/sgs/link_audit/common/hash.h
30
struct hash_entry *right_entry;
usr/src/cmd/sgs/link_audit/common/hash.h
31
struct hash_entry *left_entry;
usr/src/cmd/sgs/link_audit/common/hash.h
38
hash_entry **table;
usr/src/cmd/sgs/link_audit/common/hash.h
39
hash_entry *start;
usr/src/lib/libsip/common/sip_hash.c
103
(void) pthread_mutex_unlock(&hash_entry->sip_hash_mutex);
usr/src/lib/libsip/common/sip_hash.c
114
sip_hash_t *hash_entry;
usr/src/lib/libsip/common/sip_hash.c
120
hash_entry = &sip_hash[count];
usr/src/lib/libsip/common/sip_hash.c
121
(void) pthread_mutex_lock(&hash_entry->sip_hash_mutex);
usr/src/lib/libsip/common/sip_hash.c
122
tmp = hash_entry->hash_head;
usr/src/lib/libsip/common/sip_hash.c
123
for (hcount = 0; hcount < hash_entry->hash_count; hcount++) {
usr/src/lib/libsip/common/sip_hash.c
128
(void) pthread_mutex_unlock(&hash_entry->sip_hash_mutex);
usr/src/lib/libsip/common/sip_hash.c
141
sip_hash_t *hash_entry;
usr/src/lib/libsip/common/sip_hash.c
146
hash_entry = &sip_hash[hindex];
usr/src/lib/libsip/common/sip_hash.c
147
(void) pthread_mutex_lock(&hash_entry->sip_hash_mutex);
usr/src/lib/libsip/common/sip_hash.c
148
tmp = hash_entry->hash_head;
usr/src/lib/libsip/common/sip_hash.c
149
for (count = 0; count < hash_entry->hash_count; count++) {
usr/src/lib/libsip/common/sip_hash.c
151
if (tmp == hash_entry->hash_head) {
usr/src/lib/libsip/common/sip_hash.c
153
hash_entry->hash_head = tmp->next_obj;
usr/src/lib/libsip/common/sip_hash.c
156
assert(hash_entry->hash_tail ==
usr/src/lib/libsip/common/sip_hash.c
157
hash_entry->hash_head);
usr/src/lib/libsip/common/sip_hash.c
158
hash_entry->hash_head = NULL;
usr/src/lib/libsip/common/sip_hash.c
159
hash_entry->hash_tail = NULL;
usr/src/lib/libsip/common/sip_hash.c
168
assert(hash_entry->hash_tail == tmp);
usr/src/lib/libsip/common/sip_hash.c
170
hash_entry->hash_tail =
usr/src/lib/libsip/common/sip_hash.c
177
hash_entry->hash_count--;
usr/src/lib/libsip/common/sip_hash.c
179
&hash_entry->sip_hash_mutex);
usr/src/lib/libsip/common/sip_hash.c
186
&hash_entry->sip_hash_mutex);
usr/src/lib/libsip/common/sip_hash.c
191
(void) pthread_mutex_unlock(&hash_entry->sip_hash_mutex);
usr/src/lib/libsip/common/sip_hash.c
53
sip_hash_t *hash_entry;
usr/src/lib/libsip/common/sip_hash.c
63
hash_entry = &sip_hash[hindex];
usr/src/lib/libsip/common/sip_hash.c
64
(void) pthread_mutex_lock(&hash_entry->sip_hash_mutex);
usr/src/lib/libsip/common/sip_hash.c
65
if (hash_entry->hash_count == 0) {
usr/src/lib/libsip/common/sip_hash.c
66
assert(hash_entry->hash_head == NULL);
usr/src/lib/libsip/common/sip_hash.c
67
assert(hash_entry->hash_tail == NULL);
usr/src/lib/libsip/common/sip_hash.c
68
hash_entry->hash_head = new_obj;
usr/src/lib/libsip/common/sip_hash.c
70
hash_entry->hash_tail->next_obj = new_obj;
usr/src/lib/libsip/common/sip_hash.c
71
new_obj->prev_obj = hash_entry->hash_tail;
usr/src/lib/libsip/common/sip_hash.c
73
hash_entry->hash_tail = new_obj;
usr/src/lib/libsip/common/sip_hash.c
74
hash_entry->hash_count++;
usr/src/lib/libsip/common/sip_hash.c
75
(void) pthread_mutex_unlock(&hash_entry->sip_hash_mutex);
usr/src/lib/libsip/common/sip_hash.c
90
sip_hash_t *hash_entry;
usr/src/lib/libsip/common/sip_hash.c
92
hash_entry = &sip_hash[hindex];
usr/src/lib/libsip/common/sip_hash.c
93
(void) pthread_mutex_lock(&hash_entry->sip_hash_mutex);
usr/src/lib/libsip/common/sip_hash.c
94
tmp = hash_entry->hash_head;
usr/src/lib/libsip/common/sip_hash.c
95
for (count = 0; count < hash_entry->hash_count; count++) {
usr/src/lib/libsip/common/sip_hash.c
98
&hash_entry->sip_hash_mutex);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
449
lm_searcher_hash_entry_t *hash_entry = NULL;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
473
hash_entry = &context->searcher_hash.searcher_table[h_val];
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
476
temp_ipv6 = hash_entry->num_ipv6 + (is_ipv4 ? 0 : 1);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
477
temp_ipv4 = hash_entry->num_ipv4 + is_ipv4;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
481
if (temp_depth_ipv4 < hash_entry->depth_ipv4) {
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
482
temp_depth_ipv4 = hash_entry->depth_ipv4;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
491
hash_entry->num_ipv6 = temp_ipv6;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
492
hash_entry->num_ipv4 = temp_ipv4;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
493
hash_entry->depth_ipv4 = temp_depth_ipv4;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
496
if (context->searcher_hash.hash_depth_reached < hash_entry->depth_ipv4 + hash_entry->num_ipv6) {
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
497
context->searcher_hash.hash_depth_reached = hash_entry->depth_ipv4 + hash_entry->num_ipv6;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
518
lm_searcher_hash_entry_t *hash_entry = NULL;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
539
hash_entry = &context->searcher_hash.searcher_table[h_val];
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
542
DbgBreakIf(!hash_entry->num_ipv6);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
543
hash_entry->num_ipv6--;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
547
DbgBreakIf(!hash_entry->num_ipv4);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
548
hash_entry->num_ipv4--;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
549
if (hash_entry->num_ipv4 < hash_entry->depth_ipv4)
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/bnxe_context.c
551
hash_entry->depth_ipv4 = hash_entry->num_ipv4;