Lines Matching refs:alloc_stats
23 test_allocator_statistics alloc_stats; in tests() local
25 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5, &alloc_stats)); in tests()
26 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5, &alloc_stats)); in tests()
64 alloc_stats.clear(); in tests()
67 Vect v(test_allocator<bool>(42, 101, &alloc_stats)); in tests()
68 assert(alloc_stats.count == 1); in tests()
71 assert(alloc_stats.count == 2); in tests()
75 assert(alloc_stats.count == 1); in tests()
76 alloc_stats.clear_ctor_counters(); in tests()
79 assert(alloc_stats.count == 2); in tests()
80 assert(alloc_stats.copied == 0); in tests()
81 assert(alloc_stats.moved == 1); in tests()