Searched refs:_M_ptr (Results 1 - 3 of 3) sorted by relevance

/freebsd-10-stable/contrib/libstdc++/include/std/
H A Dstd_memory.h135 _Tp1* _M_ptr; member in struct:auto_ptr_ref
138 auto_ptr_ref(_Tp1* __p): _M_ptr(__p) { }
177 _Tp* _M_ptr; member in class:auto_ptr
190 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
199 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { }
212 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { }
259 ~auto_ptr() { delete _M_ptr; }
272 _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0);
273 return *_M_ptr;
285 _GLIBCXX_DEBUG_ASSERT(_M_ptr !
[all...]
/freebsd-10-stable/contrib/libstdc++/include/tr1/
H A Dboost_shared_ptr.h242 : _M_ptr(__p), _M_del(__d) { }
246 { _M_del(_M_ptr); }
256 _Ptr _M_ptr; // copy constructor must not throw member in class:std::_Sp_counted_base_impl
512 : _M_ptr(0), _M_refcount() // never throws
523 : _M_ptr(__p), _M_refcount(__p, _Sp_deleter<_Tp1>())
544 : _M_ptr(__p), _M_refcount(__p, __d)
562 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount) // never throws
578 // It is now safe to copy __r._M_ptr, as _M_refcount(__r._M_refcount)
580 _M_ptr
728 _Tp* _M_ptr; // Contained pointer. member in class:std::__shared_ptr
915 _Tp* _M_ptr; // Contained pointer. member in class:std::__weak_ptr
[all...]
/freebsd-10-stable/contrib/libstdc++/include/bits/
H A Dstl_function.h484 _Result (*_M_ptr)(_Arg); member in class:pointer_to_unary_function
490 : _M_ptr(__x) {}
494 { return _M_ptr(__x); }
509 _Result (*_M_ptr)(_Arg1, _Arg2); member in class:pointer_to_binary_function
515 : _M_ptr(__x) {}
519 { return _M_ptr(__x, __y); }

Completed in 139 milliseconds