Home
last modified time | relevance | path

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

/freebsd/usr.sbin/nscd/
H A Dconfig.c271 if (config->entries_size == config->entries_capacity) { in add_configuration_entry()
274 config->entries_capacity *= 2; in add_configuration_entry()
275 new_entries = calloc(config->entries_capacity, in add_configuration_entry()
521 retval->entries_capacity = INITIAL_ENTRIES_CAPACITY; in init_configuration()
522 retval->entries = calloc(retval->entries_capacity, in init_configuration()
H A Dconfig.h100 size_t entries_capacity; member
H A Dcachelib.h213 size_t entries_capacity; member
H A Dcachelib.c492 retval->entries_capacity = INITIAL_ENTRIES_CAPACITY; in init_cache()
535 if (the_cache->entries_size == the_cache->entries_capacity) { in register_cache_entry()
539 new_capacity = the_cache->entries_capacity + in register_cache_entry()