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

/systemd/src/basic/
H A Dhashmap.c348 static struct hashmap_base_entry *bucket_at(HashmapBase *h, unsigned idx) { function
354 return (struct plain_hashmap_entry*) bucket_at(HASHMAP_BASE(h), idx);
358 return (struct ordered_hashmap_entry*) bucket_at(HASHMAP_BASE(h), idx);
362 return (struct set_entry*) bucket_at(HASHMAP_BASE(h), idx);
374 return bucket_at(h, idx);
411 initial_bucket = bucket_hash(h, bucket_at(h, idx)->key);
432 memzero(bucket_at(h, idx), hashmap_type_info[h->type].entry_size);
624 e = bucket_at(h, i->idx);
632 e = bucket_at(h, --i->idx);
644 i->next_key = bucket_at(
[all...]

Completed in 16 milliseconds