Home
last modified time | relevance | path

Searched refs:do_is_equal (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__memory_resource/
H A Dmemory_resource.h44 …M_ABI bool is_equal(const memory_resource& __other) const noexcept { return do_is_equal(__other); } in is_equal()
49 virtual bool do_is_equal(memory_resource const&) const noexcept = 0;
H A Dsynchronized_pool_resource.h77 bool do_is_equal(const memory_resource& __other) const noexcept override; // key function
H A Dunsynchronized_pool_resource.h88 …_LIBCPP_HIDE_FROM_ABI_VIRTUAL bool do_is_equal(const memory_resource& __other) const _NOEXCEPT ove… in do_is_equal() function
H A Dmonotonic_buffer_resource.h106 …_LIBCPP_HIDE_FROM_ABI_VIRTUAL bool do_is_equal(const memory_resource& __other) const _NOEXCEPT ove… in do_is_equal() function
/freebsd/contrib/llvm-project/libcxx/src/experimental/
H A Dmemory_resource.cpp
/freebsd/contrib/llvm-project/libcxx/src/
H A Dmemory_resource.cpp58 bool do_is_equal(const memory_resource& other) const noexcept override { return &other == this; } in do_is_equal() function in pmr::__new_delete_memory_resource_imp
66 bool do_is_equal(const memory_resource& other) const noexcept override { return &other == this; } in do_is_equal() function in pmr::__null_memory_resource_imp
411 bool synchronized_pool_resource::do_is_equal(const memory_resource& other) const noexcept { return &other == this; }
410 bool synchronized_pool_resource::do_is_equal(const memory_resource& other) const noexcept { return &other == this; } do_is_equal() function in pmr::synchronized_pool_resource
/freebsd/contrib/llvm-project/libcxx/include/experimental/
H A Dmemory_resource