Home | History | Annotate | Download | only in test

Lines Matching refs:__cxxabiv1

72     vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new    (            10, 40, 8, throw_construct, throw_destruct )) {}
73 ~vec_on_stack () CAN_THROW {__cxxabiv1::__cxa_vec_delete ( storage, 40, 8, throw_destruct ); }
81 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, NULL, NULL );
82 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, NULL, NULL, my_alloc2, my_dealloc2 );
83 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, NULL, NULL, my_alloc2, my_dealloc3 );
85 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, NULL );
86 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, NULL, my_dealloc2 );
87 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, NULL, my_dealloc3 );
90 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, my_construct, my_destruct );
91 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, my_construct, my_destruct, my_alloc2, my_dealloc2 );
92 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, my_construct, my_destruct, my_alloc2, my_dealloc3 );
94 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, my_destruct );
95 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, my_destruct, my_dealloc2 );
96 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, my_destruct, my_dealloc3 );
99 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, NULL, NULL );
100 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, NULL, NULL, my_alloc2, my_dealloc2 );
101 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, NULL, NULL, my_alloc2, my_dealloc3 );
103 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, NULL );
104 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, NULL, my_dealloc2 );
105 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, NULL, my_dealloc3 );
108 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, my_construct, my_destruct );
109 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, my_construct, my_destruct, my_alloc2, my_dealloc2 );
110 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, my_construct, my_destruct, my_alloc2, my_dealloc3 );
112 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, my_destruct );
113 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, my_destruct, my_dealloc2 );
114 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, my_destruct, my_dealloc3 );
126 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, count_construct, count_destruct );
127 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, count_construct, count_destruct, my_alloc2, my_dealloc2 );
128 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, count_construct, count_destruct, my_alloc2, my_dealloc3 );
130 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, count_destruct );
131 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, count_destruct, my_dealloc2 );
132 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, count_destruct, my_dealloc3 );
143 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, count_construct, count_destruct );
144 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, count_construct, count_destruct, my_alloc2, my_dealloc2 );
145 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, count_construct, count_destruct, my_alloc2, my_dealloc3 );
147 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, count_destruct );
148 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, count_destruct, my_dealloc2 );
149 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, count_destruct, my_dealloc3 );
172 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, throw_construct, throw_destruct );
173 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, throw_construct, throw_destruct, my_alloc2, my_dealloc2 );
174 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, throw_construct, throw_destruct, my_alloc2, my_dealloc3 );
178 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, throw_destruct );
179 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, throw_destruct, my_dealloc2 );
180 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, throw_destruct, my_dealloc3 );
198 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct );
199 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, throw_construct, throw_destruct, my_alloc2, my_dealloc2 );
200 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 8, throw_construct, throw_destruct, my_alloc2, my_dealloc3 );
204 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, throw_destruct );
205 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, throw_destruct, my_dealloc2 );
206 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, throw_destruct, my_dealloc3 );
232 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct );
233 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, throw_construct, throw_destruct, my_alloc2, my_dealloc2 );
238 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, throw_destruct );
239 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, throw_destruct, my_dealloc2 );