Lines Matching refs:list
141 struct hash_entry **list; in hash_lookup() local
163 list = table->table + hindex; in hash_lookup()
166 *plist = list; in hash_lookup()
169 for (p = *list; p != NULL; p = p->next) in hash_lookup()
186 p->next = *list; in hash_lookup()
187 *list = p; in hash_lookup()
209 struct hash_entry **list; in hash_insert() local
212 p = hash_lookup (table, key, strlen (key), &list, &hash); in hash_insert()
225 p->next = *list; in hash_insert()
226 *list = p; in hash_insert()
239 struct hash_entry **list; in hash_jam() local
242 p = hash_lookup (table, key, strlen (key), &list, &hash); in hash_jam()
262 p->next = *list; in hash_jam()
263 *list = p; in hash_jam()
331 struct hash_entry **list; in hash_delete() local
333 p = hash_lookup (table, key, strlen (key), &list, NULL); in hash_delete()
337 if (p != *list) in hash_delete()
344 *list = p->next; in hash_delete()