Home
last modified time | relevance | path

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

/external/valgrind/coregrind/m_demangle/
Dvg_libciface.h101 #define XNEWVEC(_Ty, _Nn) \ argument
102 ((_Ty *) xmalloc(sizeof (_Ty) * (_Nn)))
104 #define XRESIZEVEC(_Ty, _Pt, _Nn) \ argument
105 ((_Ty *) xrealloc((void *) (_Pt), sizeof (_Ty) * (_Nn)))
107 #define XRESIZEVAR(_Ty, _Pt, _Sz) \ argument
108 ((_Ty *) xrealloc((_Pt), (_Sz)))
110 #define XNEW(_Ty) \ argument
111 ((_Ty *) xmalloc(sizeof (_Ty)))
/external/clang/test/SemaCXX/
DMicrosoftCompatibility.cpp219 template<class _Ty>
220 void del(_Ty *_Ptr) { in del()
221 _Ptr->~_Ty(); // expected-warning {{pseudo-destructors on type void are a Microsoft extension}} in del()