Searched refs:_Ty (Results 1 – 2 of 2) sorted by relevance
87 #define XNEWVEC(_Ty, _Nn) \ argument88 ((_Ty *) xmalloc(sizeof (_Ty) * (_Nn)))90 #define XRESIZEVEC(_Ty, _Pt, _Nn) \ argument91 ((_Ty *) xrealloc((void *) (_Pt), sizeof (_Ty) * (_Nn)))93 #define XRESIZEVAR(_Ty, _Pt, _Sz) \ argument94 ((_Ty *) xrealloc((_Pt), (_Sz)))96 #define XNEW(_Ty) \ argument97 ((_Ty *) xmalloc(sizeof (_Ty)))
171 template<class _Ty>172 void del(_Ty *_Ptr) { in del()173 _Ptr->~_Ty(); // expected-warning {{pseudo-destructors on type void are a Microsoft extension}} in del()