Searched defs:test_allocator_statistics (Results 1 – 1 of 1) sorted by relevance
29 struct test_allocator_statistics { struct30 int time_to_throw = 0;31 int throw_after = INT_MAX;32 int count = 0; // the number of active instances33 int alloc_count = 0; // the number of allocations not deallocating34 int allocated_size = 0; // the size of allocated elements35 int construct_count = 0; // the number of times that ::construct was called36 int destroy_count = 0; // the number of times that ::destroy was called37 int copied = 0;38 int moved = 0;[all …]