Lines Matching refs:buckets
200 fcgi_hash_buckets *buckets; member
262 h->buckets = (fcgi_hash_buckets*)malloc(sizeof(fcgi_hash_buckets)); in fcgi_hash_init()
263 h->buckets->idx = 0; in fcgi_hash_init()
264 h->buckets->next = NULL; in fcgi_hash_init()
276 b = h->buckets; in fcgi_hash_destroy()
295 while (h->buckets->next) { in fcgi_hash_clean()
296 fcgi_hash_buckets *q = h->buckets; in fcgi_hash_clean()
298 h->buckets = h->buckets->next; in fcgi_hash_clean()
301 h->buckets->idx = 0; in fcgi_hash_clean()
349 if (UNEXPECTED(h->buckets->idx >= FCGI_HASH_TABLE_SIZE)) { in fcgi_hash_set()
352 b->next = h->buckets; in fcgi_hash_set()
353 h->buckets = b; in fcgi_hash_set()
355 p = h->buckets->data + h->buckets->idx; in fcgi_hash_set()
356 h->buckets->idx++; in fcgi_hash_set()