Lines Matching defs:hash
238 * presently in the hash table. We need to remove it.
241 int hash = arp_hash(e->addr, e->ifindex, d);
243 for (p = &d->l2tab[hash].first; *p; p = &(*p)->next)
254 * Called when an L2T entry has no more users. The entry is left in the hash
309 int hash;
331 hash = arp_hash(addr, ifidx, d);
334 for (e = d->l2tab[hash].first; e; e = e->next)
347 e->next = d->l2tab[hash].first;
348 d->l2tab[hash].first = e;
406 int hash = arp_hash(addr, ifidx, d);
409 for (e = d->l2tab[hash].first; e; e = e->next)