Searched refs:minitems (Results 1 – 1 of 1) sorted by relevance
42 static int hash_may_resize(hashtab_T *ht, int minitems);323 int minitems) // minimal number of items in hash_may_resize() argument346 if (minitems == 0) in hash_may_resize()372 if ((long_u)minitems < ht->ht_used) // just in case... in hash_may_resize()373 minitems = (int)ht->ht_used; in hash_may_resize()374 minsize = (minitems * 3 + 1) / 2; // array is up to 2/3 full in hash_may_resize()