Home
last modified time | relevance | path

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

/external/compiler-rt/lib/tsan/rtl/
Dtsan_dense_alloc.h33 template<typename T, uptr kL1Size, uptr kL2Size> friend class DenseSlabAlloc; variable
37 class DenseSlabAlloc {
42 DenseSlabAlloc() { in DenseSlabAlloc() function
54 ~DenseSlabAlloc() { in ~DenseSlabAlloc()
Dtsan_sync.h92 typedef DenseSlabAlloc<MBlock, 1<<16, 1<<12> BlockAlloc;
93 typedef DenseSlabAlloc<SyncVar, 1<<16, 1<<10> SyncAlloc;
Dtsan_clock.h40 typedef DenseSlabAlloc<ClockBlock, 1<<16, 1<<10> ClockAlloc;
/external/compiler-rt/lib/tsan/tests/unit/
Dtsan_dense_alloc_test.cc24 TEST(DenseSlabAlloc, Basic) { in TEST() argument
25 typedef DenseSlabAlloc<int, 128, 128> Alloc; in TEST()