Home
last modified time | relevance | path

Searched refs:_CntrlBlk (Results 1 – 2 of 2) sorted by relevance

/external/libcxx/include/
Dmemory4040 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
4041 __cntrl_ = new _CntrlBlk(__p, default_delete<_Yp>(), allocator<_Yp>());
4056 typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk;
4057 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Yp>());
4078 typedef __shared_ptr_pointer<nullptr_t, _Dp, allocator<_Tp> > _CntrlBlk;
4079 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Tp>());
4100 typedef __shared_ptr_pointer<_Yp*, _Dp, _Alloc> _CntrlBlk;
4101 typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _A2;
4104 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
4106 _CntrlBlk(__p, __d, __a);
[all …]
/external/lldb/include/lldb/Utility/
DSharingPtr.h202 typedef imp::shared_ptr_pointer<Y*> _CntrlBlk; in SharingPtr() typedef
203 cntrl_ = new _CntrlBlk(p); in SharingPtr()