Lines Matching full:__cxxabiv1
61 vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct )) {}
62 ~vec_on_stack () CAN_THROW {__cxxabiv1::__cxa_vec_delete ( storage, 40, 8, throw_destruct ); }
70 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, NULL, NULL );
71 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, NULL, NULL, my_alloc2, my_dealloc2 );
72 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, NULL, NULL, my_alloc2, my_dealloc3 );
74 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, NULL );
75 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, NULL, my_dealloc2 );
76 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, NULL, my_dealloc3 );
79 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, my_construct, my_destruct );
80 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, my_construct, my_destruct, my_alloc2, my_dealloc2 );
81 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, my_construct, my_destruct, my_alloc2, my_dealloc3 );
83 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, my_destruct );
84 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, my_destruct, my_dealloc2 );
85 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, my_destruct, my_dealloc3 );
88 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, NULL, NULL );
89 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, NULL, NULL, my_alloc2, my_dealloc2 );
90 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, NULL, NULL, my_alloc2, my_dealloc3 );
92 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, NULL );
93 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, NULL, my_dealloc2 );
94 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, NULL, my_dealloc3 );
97 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, my_construct, my_destruct );
98 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, my_construct, my_destruct, my_alloc2, my_dealloc2 );
99 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, my_construct, my_destruct, my_alloc2, my_dealloc3 );
101 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, my_destruct );
102 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, my_destruct, my_dealloc2 );
103 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, my_destruct, my_dealloc3 );
115 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, count_construct, count_destruct );
116 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, count_construct, count_destruct, my_alloc2, my_dealloc2 );
117 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, count_construct, count_destruct, my_alloc2, my_dealloc3 );
119 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, count_destruct );
120 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, count_destruct, my_dealloc2 );
121 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, count_destruct, my_dealloc3 );
132 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, count_construct, count_destruct );
133 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, count_construct, count_destruct, my_alloc2, my_dealloc2 );
134 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, count_construct, count_destruct, my_alloc2, my_dealloc3 );
136 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, count_destruct );
137 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, count_destruct, my_dealloc2 );
138 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, count_destruct, my_dealloc3 );
160 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, throw_construct, throw_destruct );
161 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, throw_construct, throw_destruct, my_alloc2, my_dealloc2 );
162 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, throw_construct, throw_destruct, my_alloc2, my_dealloc3 );
166 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, throw_destruct );
167 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, throw_destruct, my_dealloc2 );
168 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, throw_destruct, my_dealloc3 );
186 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct );
187 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, throw_construct, throw_destruct, my_alloc2, my_dealloc2 );
188 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, throw_construct, throw_destruct, my_alloc2, my_dealloc3 );
192 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, throw_destruct );
193 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, throw_destruct, my_dealloc2 );
194 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, throw_destruct, my_dealloc3 );
218 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct );
219 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, throw_construct, throw_destruct, my_alloc2, my_dealloc2 );
224 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, throw_destruct );
225 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, throw_destruct, my_dealloc2 );