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

/systemd/src/basic/
H A Dhashmap.c419 static unsigned skip_free_buckets(HashmapBase *h, unsigned idx) { function
612 i->idx = skip_free_buckets(h, h->indirect.idx_lowest_entry);
615 i->idx = skip_free_buckets(h, 0);
642 i->idx = skip_free_buckets(h, i->idx + 1);
883 for (idx = skip_free_buckets(h, 0); idx != IDX_NIL;
884 idx = skip_free_buckets(h, idx + 1))
896 for (idx = skip_free_buckets(HASHMAP_BASE(h), 0); idx != IDX_NIL;
897 idx = skip_free_buckets(HASHMAP_BASE(h), idx + 1)) {

Completed in 42 milliseconds