Lines Matching refs:itemp

540 	htab_item_t *item, *tmp, **itemp;  in enlarge_htab()  local
562 itemp = &items[(i * newsz) + in enlarge_htab()
565 while (*itemp != NULL && in enlarge_htab()
566 tab->c->get_uid((*itemp)->p) > in enlarge_htab()
568 itemp = &(*itemp)->next; in enlarge_htab()
570 item->next = *itemp; in enlarge_htab()
571 *itemp = item; in enlarge_htab()
704 htab_item_t *items = NULL, **itemp; in htab_add() local
783 itemp = &tab->items[(i * chunksz) + (hval & tab->mask)]; in htab_add()
784 while (*itemp != NULL && in htab_add()
785 tab->c->get_uid((*itemp)->p) > uid) { in htab_add()
786 itemp = &(*itemp)->next; in htab_add()
788 items[i].next = *itemp; in htab_add()
789 *itemp = &items[i]; in htab_add()
845 htab_item_t *item, **itemp; in htab_remove() local
869 itemp = &tab->items[(i * chunksz) + (hval & tab->mask)]; in htab_remove()
870 item = *itemp; in htab_remove()
887 *itemp = item->next; in htab_remove()
902 itemp = &item->next; in htab_remove()
903 item = *itemp; in htab_remove()
971 htab_item_t *item, **itemp; in htab_lookup() local
994 itemp = &tab->items[(i * chunksz) + (hval & tab->mask)]; in htab_lookup()
995 item = *itemp; in htab_lookup()
1001 itemp = &item->next; in htab_lookup()
1002 item = *itemp; in htab_lookup()
1020 *itemp = item->next; in htab_lookup()
1026 itemp = &tab->items[(hval & tab->mask)]; in htab_lookup()
1027 while (*itemp != NULL && in htab_lookup()
1028 (tab->c->get_uid((*itemp)->p) > in htab_lookup()
1030 itemp = &(*itemp)->next; in htab_lookup()
1032 item->next = *itemp; in htab_lookup()
1033 *itemp = item; in htab_lookup()