Home
last modified time | relevance | path

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

/system/bpf/libbpf_android/
DBpfMapTest.cpp194 int totalSum = 0; in TEST_F() local
195 const auto iterateWithDeletion = [&totalCount, &totalSum](const uint32_t& key, in TEST_F()
199 totalSum += key; in TEST_F()
204 EXPECT_EQ(((1 + TEST_MAP_SIZE - 1) * (TEST_MAP_SIZE - 1)) / 2, (uint32_t)totalSum); in TEST_F()
214 int totalSum = 0; in TEST_F() local
215 const auto iterateWithDeletion = [&totalCount, &totalSum](const uint32_t& key, in TEST_F()
221 totalSum += value; in TEST_F()
226 EXPECT_EQ(((1 + TEST_MAP_SIZE - 1) * (TEST_MAP_SIZE - 1)) * 5, (uint32_t)totalSum); in TEST_F()
/system/netd/libnetdbpf/
DBpfNetworkStatsTest.cpp187 int totalSum = 0; in TEST_F() local
188 const auto iterateWithoutDeletion = [&totalCount, &totalSum](const uint64_t& key, in TEST_F()
192 totalSum += key; in TEST_F()
197 EXPECT_EQ(1 + 2 + 3 + 4 + 5, totalSum); in TEST_F()