Lines Matching defs:ptr
5 int ptr(unsigned idx) { in ptr() function
6 int * ptr = new int[1]; in ptr() local
14 const int * ptr = new int[1]; in ptr_to_const() local
22 int * const ptr = new int[1]; in const_ptr() local
30 const int * const ptr = new int[1]; in const_ptr_to_const() local
38 const volatile int * ptr = new int[1]; in ptr_to_const_volatile() local
46 int * const volatile ptr = new int[1]; in const_volatile_ptr() local
54 const volatile int * const volatile ptr = new int[1]; in const_volatile_ptr_to_const_volatile() local
63 my_const_int_star ptr = new int[1]; in typedef_ptr_to_const() local
72 my_int_star_const ptr = new int[1]; in typedef_const_ptr() local
81 my_const_int_star_const ptr = new int[1]; in typedef_const_ptr_to_const() local
90 decltype(a) * ptr = new int[1]; in ptr_to_decltype() local
98 decltype(p) ptr = new int[1]; in decltype_ptr() local