Lines Matching defs:victim
676 struct bucket *victim = search_hop_list(bucket, key, &previous);
678 if (victim == NULL) {
687 value = victim->value;
688 victim->value = NULL;
689 victim->key = 0;
691 /* The victim bucket is now empty, but it still needs to be spliced out of the hop list. */
693 /* The victim is the head of the list, so swing first_hop. */
694 bucket->first_hop = victim->next_hop;
696 previous->next_hop = victim->next_hop;
699 victim->next_hop = NULL_HOP_OFFSET;