Home
last modified time | relevance | path

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

/third_party/ltp/testcases/kernel/mem/tunable/
Dovercommit_memory.c76 static long sum_total; variable
109 sum_total = mem_total + swap_total; in setup()
159 alloc_and_check(sum_total * 2, EXPECT_FAIL); in overcommit_memory_test()
164 alloc_and_check(sum_total / 2, EXPECT_PASS); in overcommit_memory_test()
165 alloc_and_check(sum_total, EXPECT_PASS); in overcommit_memory_test()
166 alloc_and_check(sum_total * 2, EXPECT_PASS); in overcommit_memory_test()
/third_party/boost/boost/gil/image_processing/
Dthreshold.hpp287 std::ptrdiff_t sum_total = 0, sum_back = 0; in otsu_impl() local
293 sum_total += t * histogram[t]; in otsu_impl()
307 mean_fore = (sum_total - sum_back) / weight_fore; // Mean Foreground in otsu_impl()