Lines Matching refs:LStats
14 scudo::LocalStats LStats; in TEST() local
15 LStats.init(); in TEST()
17 EXPECT_EQ(LStats.get(static_cast<scudo::StatType>(I)), 0U); 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()
23 EXPECT_EQ(LStats.get(scudo::StatAllocated), 4096U); in TEST()
33 scudo::LocalStats LStats; in TEST() local
34 LStats.init(); in TEST()
35 GStats.link(&LStats); in TEST()
37 LStats.add(static_cast<scudo::StatType>(I), 4096U); in TEST()
42 GStats.unlink(&LStats); in TEST()