Lines Matching refs:acc
23 accumulator_set<int, stats<tag::count> > acc; in test_stat() local
25 acc(1); in test_stat()
26 BOOST_CHECK_EQUAL(1u, count(acc)); in test_stat()
28 acc(1); in test_stat()
29 BOOST_CHECK_EQUAL(2u, count(acc)); in test_stat()
31 acc(1); in test_stat()
32 BOOST_CHECK_EQUAL(3u, count(acc)); in test_stat()
34 acc(1); in test_stat()
35 BOOST_CHECK_EQUAL(4u, count(acc)); in test_stat()
37 acc(1); in test_stat()
38 BOOST_CHECK_EQUAL(5u, count(acc)); in test_stat()
49 accumulator_set<int, stats<tag::count> > acc; in test_persistency() local
50 acc(1); in test_persistency()
51 acc(1); in test_persistency()
52 acc(1); in test_persistency()
53 acc(1); in test_persistency()
54 BOOST_CHECK_EQUAL(4u, count(acc)); in test_persistency()
56 acc.serialize(oa, 0); in test_persistency()
58 accumulator_set<int, stats<tag::count> > acc; in test_persistency() local
59 BOOST_CHECK_EQUAL(0u, count(acc)); in test_persistency()
61 acc.serialize(ia, 0); in test_persistency()
62 BOOST_CHECK_EQUAL(4u, count(acc)); in test_persistency()