Lines Matching refs:Buckethead
45 static bucket_t **Buckethead; variable
71 if ((Buckethead = calloc(sizeof (bucket_t *), NLISTS)) == NULL) { in create_lists()
523 assert(Buckethead != NULL, "Buckethead null in start_new_list"); in start_new_list()
524 for (i = 0; Buckethead[i] != NULL && i < N_lists; ++i) in start_new_list()
529 Buckethead[i] = (bucket_t *)b; in start_new_list()
548 if ((Buckethead = realloc(Buckethead, sizeof (bucket_t *) * N_lists)) in grow_lists()
554 Buckethead[i] = NULL; in grow_lists()
565 free(Buckethead); in delete_lists()
566 Buckethead = 0; in delete_lists()
577 return (Buckethead[Bc]); in first_list()
583 return (Buckethead[++Bc]); in next_list()