Home | History | Annotate | Download | only in memory.resource.public

Lines Matching refs:deallocate

15 // TESTING void * memory_resource::deallocate(void *, size_t, size_t = max_align)
18 // A) 'memory_resource' contains a member 'deallocate' with the required
20 // B) The return type of 'deallocate' is 'void'.
21 // C) 'deallocate' is not marked as 'noexcept'.
22 // D) Invoking 'deallocate' invokes 'do_deallocate' with the same arguments.
41 std::is_same<decltype(M.deallocate(nullptr, 0, 0)), void>::value
45 std::is_same<decltype(M.deallocate(nullptr, 0)), void>::value
51 ! noexcept(M.deallocate(nullptr, 0, 0))
55 ! noexcept(M.deallocate(nullptr, 0))
63 M.deallocate(p, s, a);
70 M.deallocate(p, s);