Home
last modified time | relevance | path

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

/system/chre/core/tests/
Dmemory_manager_test.cc79 size_t maxCount = manager.getMaxAllocationCount(); in TEST() local
82 for (size_t i = 0; i < maxCount - 1; i++) { in TEST()
88 EXPECT_EQ(manager.getTotalAllocatedBytes(), maxCount * sizeof(node)); in TEST()
89 EXPECT_EQ(manager.getAllocationCount(), maxCount); in TEST()
93 for (size_t i = 0; i < maxCount; i++) { in TEST()
/system/media/audio_utils/include/audio_utils/
DLogPlot.h147 int maxCount = it->second; variable
153 if (it->second > maxCount) {
154 maxCount = it->second;
157 int height = log2(maxCount) + 1; // maxCount > 0, safe to call log2
/system/chre/util/tests/
Dstats_container_test.cc66 uint64_t maxCount = 3; in TEST() local
67 chre::StatsContainer<uint16_t> testContainer(maxCount); in TEST()