Lines Matching refs:head
74 HashNode *head; /* The head of the bucket hash-node list */
270 b->head = NULL;
378 * Install the node at the head of the hash-bucket list.
380 node->next = bucket->head;
381 bucket->head = node;
411 bucket->head = node->next;
596 * at the head of the list of entries.
608 for(last=NULL, node=bucket->head;
691 HashNode *node = bucket->head;
700 bucket->head = NULL;
739 for(node=bucket->head; node; node=node->next) {