Lines Matching refs:slots
58 int slots, in Curl_hash_init() argument
63 if(!slots || !hfunc || !comparator ||!dtor) { in Curl_hash_init()
71 h->slots = slots; in Curl_hash_init()
73 h->table = malloc(slots * sizeof(struct curl_llist)); in Curl_hash_init()
76 for(i = 0; i < slots; ++i) in Curl_hash_init()
80 h->slots = 0; in Curl_hash_init()
99 #define FETCH_LIST(x,y,z) &x->table[x->hash_func(y, z, x->slots)]
186 for(i = 0; i < h->slots; ++i) { in Curl_hash_apply()
209 for(i = 0; i < h->slots; ++i) { in Curl_hash_destroy()
215 h->slots = 0; in Curl_hash_destroy()
241 for(i = 0; i < h->slots; ++i) { in Curl_hash_clean_with_criterium()
300 for(i = iter->slot_index; i < h->slots; i++) { in Curl_hash_next_element()