Searched refs:maxCount (Results 1 – 2 of 2) sorted by relevance
77 size_t maxCount = manager.getMaxAllocationCount(); in TEST() local80 for (size_t i = 0; i < maxCount - 1; i++) { in TEST()86 EXPECT_EQ(manager.getTotalAllocatedBytes(), maxCount * sizeof(node)); in TEST()87 EXPECT_EQ(manager.getAllocationCount(), maxCount); in TEST()91 for (size_t i = 0; i < maxCount; i++) { in TEST()
147 int maxCount = it->second; variable153 if (it->second > maxCount) {154 maxCount = it->second;157 int height = log2(maxCount) + 1; // maxCount > 0, safe to call log2