Symbol: SLAB_CHUNK_SIZE_SMALL
src/system/kernel/slab/MemoryManager.cpp
1221
if (metaChunk->chunkSize == SLAB_CHUNK_SIZE_SMALL)
src/system/kernel/slab/MemoryManager.cpp
1244
if (metaChunk->chunkSize == SLAB_CHUNK_SIZE_SMALL)
src/system/kernel/slab/MemoryManager.cpp
1708
case SLAB_CHUNK_SIZE_SMALL:
src/system/kernel/slab/MemoryManager.cpp
1874
case SLAB_CHUNK_SIZE_SMALL:
src/system/kernel/slab/MemoryManager.cpp
2053
case SLAB_CHUNK_SIZE_SMALL:
src/system/kernel/slab/MemoryManager.cpp
2093
(totalUsedSmall * SLAB_CHUNK_SIZE_SMALL
src/system/kernel/slab/MemoryManager.cpp
641
size = ROUNDUP(size, SLAB_CHUNK_SIZE_SMALL);
src/system/kernel/slab/MemoryManager.cpp
677
size_t chunkSize = SLAB_CHUNK_SIZE_SMALL;
src/system/kernel/slab/MemoryManager.cpp
678
uint32 chunkCount = size / SLAB_CHUNK_SIZE_SMALL;
src/system/kernel/slab/MemoryManager.cpp
777
ASSERT((size % SLAB_CHUNK_SIZE_SMALL) == 0);
src/system/kernel/slab/MemoryManager.cpp
795
if (size <= SLAB_CHUNK_SIZE_SMALL)
src/system/kernel/slab/MemoryManager.cpp
796
return SLAB_CHUNK_SIZE_SMALL;
src/system/kernel/slab/MemoryManager.cpp
979
if (chunkSize == SLAB_CHUNK_SIZE_SMALL) {
src/system/kernel/slab/MemoryManager.h
39
(SLAB_CHUNK_SIZE_LARGE / SLAB_CHUNK_SIZE_SMALL)
src/system/kernel/slab/SmallObjectCache.cpp
51
cache->slab_size = SLAB_CHUNK_SIZE_SMALL;
src/system/kernel/slab/allocator.cpp
132
if (size > SLAB_CHUNK_SIZE_SMALL) {
src/system/kernel/slab/allocator.cpp
147
if (MemoryManager::AllocateRaw(SLAB_CHUNK_SIZE_SMALL, 0, block) != B_OK)
src/system/kernel/slab/allocator.cpp
150
sBootStrapMemorySize = SLAB_CHUNK_SIZE_SMALL;