Home
last modified time | relevance | path

Searched refs:num_buckets (Results 1 – 1 of 1) sorted by relevance

/xnu-10063.101.15/libkern/kxld/ !
H A Dkxld_dict.c84 u_int num_buckets = DEFAULT_DICT_SIZE; in kxld_dict_init() local
93 while (min_buckets > num_buckets) { in kxld_dict_init()
94 num_buckets *= 2; in kxld_dict_init()
95 num_buckets++; in kxld_dict_init()
99 rval = kxld_array_init(&dict->buckets, sizeof(DictEntry), num_buckets); in kxld_dict_init()
106 dict->resize_threshold = RESIZE_THRESHOLD(num_buckets); in kxld_dict_init()