Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/tests/
H A Dstats_test.cpp14 scudo::LocalStats LStats; in TEST() local
15 LStats.init(); in TEST()
18 LStats.add(scudo::StatAllocated, 4096U); in TEST()
19 EXPECT_EQ(LStats.get(scudo::StatAllocated), 4096U); in TEST()
20 LStats.sub(scudo::StatAllocated, 4096U); in TEST()
21 EXPECT_EQ(LStats.get(scudo::StatAllocated), 0U); in TEST()
22 LStats.set(scudo::StatAllocated, 4096U); in TEST()
33 scudo::LocalStats LStats; in TEST() local
34 LStats.init(); in TEST()
35 GStats.link(&LStats); in TEST()
[all …]