Home
last modified time | relevance | path

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

/external/skia/tests/
DHashTest.cpp286 auto check_count_cap = [&](int count, int cap) { in DEF_TEST() local
292 check_count_cap(0,0); in DEF_TEST()
293 s.add(1); check_count_cap(1,4); in DEF_TEST()
294 s.add(2); check_count_cap(2,4); in DEF_TEST()
295 s.add(3); check_count_cap(3,4); in DEF_TEST()
296 s.add(4); check_count_cap(4,8); in DEF_TEST()
298 s.remove(4); check_count_cap(3,8); in DEF_TEST()
299 s.remove(3); check_count_cap(2,4); in DEF_TEST()
300 s.remove(2); check_count_cap(1,4); in DEF_TEST()
301 s.remove(1); check_count_cap(0,4); in DEF_TEST()
[all …]