Lines Matching refs:ent
57 Hash_ent * ent;
68 for (ent = tbl->t_entry[bucket]; ent != NULL;
69 ent = ent->e_next) {
71 if ((strcmp((const char *)ent->e_key,
73 (id == ent->e_id)))
74 return (ent);
76 if (ent->e_key == key)
77 return (ent);
87 if ((ent = calloc(sizeof (Hash_ent), 1)) == 0)
90 ent->e_key = key;
91 ent->e_hash = hashval;
96 ent->e_next = tbl->t_entry[bucket];
97 tbl->t_entry[bucket] = ent;
99 return (ent);