Home
last modified time | relevance | path

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

/haiku/src/tests/system/kernel/slab/
H A DSlab.cpp403 typedef LocalCache<MallocMergedCache> MallocLocalCache; typedef
413 return new (std::nothrow) MallocLocalCache(name, object_size, alignment, in object_cache_create()
421 return ((MallocLocalCache *)cache)->Alloc(0); in object_cache_alloc()
428 return ((MallocLocalCache *)cache)->Alloc(flags); in object_cache_alloc_etc()
435 ((MallocLocalCache *)cache)->Free(object); in object_cache_free()
442 delete (MallocLocalCache *)cache; in object_cache_destroy()
448 MallocLocalCache cache("foobar", sizeof(int), 0, NULL, NULL, NULL); in test1()