Searched refs:total_objects (Results 1 - 3 of 3) sorted by path

/haiku/src/system/kernel/slab/
H A DObjectCache.h55 size_t total_objects; // total number of objects member in struct:ObjectCache
H A DObjectCache.cpp70 total_objects = 0;
185 total_objects -= slab->size;
235 && total_objects - used_count - source->size
H A DSlab.cpp273 cache->total_objects, cache->flags);
295 kprintf("total_objects: %lu\n", cache->total_objects);
901 if (objectCount <= cache->total_objects - cache->used_count)
937 while (objectCount > cache->total_objects - cache->used_count) {
946 cache->total_objects += newSlab->size;
1025 size_t freeObjects = cache->total_objects - cache->used_count;
1250 if (cache->total_objects - cache->used_count < cache->min_object_reserve)

Completed in 30 milliseconds