Lines Matching refs:tracked_safe_allocation
22 tracked_safe_allocation<T> from(10, libkern::allocate_memory); in tests()
25 tracked_safe_allocation<T> to(20, libkern::allocate_memory); in tests()
28 tracked_safe_allocation<T>& ref = (to = std::move(from)); in tests()
48 tracked_safe_allocation<T> from = nullptr; in tests()
50 tracked_safe_allocation<T> to(20, libkern::allocate_memory); in tests()
53 tracked_safe_allocation<T>& ref = (to = std::move(from)); in tests()
73 tracked_safe_allocation<T> from(10, libkern::allocate_memory); in tests()
76 tracked_safe_allocation<T> to = nullptr; in tests()
79 tracked_safe_allocation<T>& ref = (to = std::move(from)); in tests()
99 tracked_safe_allocation<T> from = nullptr; in tests()
101 tracked_safe_allocation<T> to = nullptr; in tests()
104 tracked_safe_allocation<T>& ref = (to = std::move(from)); in tests()
124 tracked_safe_allocation<T> obj(10, libkern::allocate_memory); in tests()
128 tracked_safe_allocation<T>& ref = (obj = std::move(obj)); in tests()