Home
last modified time | relevance | path

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

/third_party/skia/tests/
H A DHashTest.cpp287 auto check_count_cap = [&](int count, int cap) { in DEF_TEST() local
293 check_count_cap(0,0); in DEF_TEST()
294 s.add(1); check_count_cap(1,4); in DEF_TEST()
295 s.add(2); check_count_cap(2,4); in DEF_TEST()
296 s.add(3); check_count_cap(3,4); in DEF_TEST()
297 s.add(4); check_count_cap(4,8); in DEF_TEST()
299 s.remove(4); check_count_cap(3,8); in DEF_TEST()
300 s.remove(3); check_count_cap(2,4); in DEF_TEST()
301 s.remove(2); check_count_cap(1,4); in DEF_TEST()
302 s.remove(1); check_count_cap( in DEF_TEST()
[all...]

Completed in 1 milliseconds