Searched defs:n_buckets (Results 1 - 1 of 1) sorted by relevance

/systemd/src/basic/
H A Dhashmap.c183 unsigned n_buckets; /* number of buckets */ member in struct:indirect_storage
281 static unsigned n_buckets(HashmapBase *h) { function
282 return h->has_indirect ? h->indirect.n_buckets
325 return (unsigned) (hash % n_buckets(h));
384 (storage_ptr(h) + hashmap_type_info[h->type].entry_size * n_buckets(h));
389 : n_buckets(h) + idx - from;
424 for ( ; idx < n_buckets(h); idx++)
473 return (idx + 1U) % n_buckets(h);
477 return (n_buckets(h) + idx - 1U) % n_buckets(
[all...]

Completed in 16 milliseconds