Home
last modified time | relevance | path

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

/external/valgrind/main/coregrind/m_demangle/
Dvg_libciface.h87 #define XNEWVEC(_Ty, _Nn) \ argument
88 ((_Ty *) xmalloc(sizeof (_Ty) * (_Nn)))
90 #define XRESIZEVEC(_Ty, _Pt, _Nn) \ argument
91 ((_Ty *) xrealloc((void *) (_Pt), sizeof (_Ty) * (_Nn)))
93 #define XRESIZEVAR(_Ty, _Pt, _Sz) \ argument
94 ((_Ty *) xrealloc((_Pt), (_Sz)))
96 #define XNEW(_Ty) \ argument
97 ((_Ty *) xmalloc(sizeof (_Ty)))
/external/clang/test/SemaCXX/
DMicrosoftCompatibility.cpp171 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()