Home | History | Annotate | Download | only in ext

Lines Matching refs:_Tp

53   template<typename _Tp>
59 typedef _Tp* pointer;
60 typedef const _Tp* const_pointer;
61 typedef _Tp& reference;
62 typedef const _Tp& const_reference;
63 typedef _Tp value_type;
92 pointer __ret = static_cast<_Tp*>(std::malloc(__n * sizeof(_Tp)));
105 { return size_t(-1) / sizeof(_Tp); }
110 construct(pointer __p, const _Tp& __val)
117 { ::new((void *)__p) _Tp(std::forward<_Args>(__args)...); }
121 destroy(pointer __p) { __p->~_Tp(); }
124 template<typename _Tp>
126 operator==(const malloc_allocator<_Tp>&, const malloc_allocator<_Tp>&)
129 template<typename _Tp>
131 operator!=(const malloc_allocator<_Tp>&, const malloc_allocator<_Tp>&)