Lines Matching refs:one
86 void *one, *two, *three; in test_empty() local
89 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, NULL, NULL ); in test_empty()
93 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, NULL ); in test_empty()
98 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, my_construct, my_destruct ); in test_empty()
102 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, my_destruct ); in test_empty()
107 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, NULL, NULL ); in test_empty()
111 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, NULL ); in test_empty()
116 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, my_construct, my_destruct ); in test_empty()
120 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, my_destruct ); in test_empty()
130 void *one, *two, *three; in test_counted() local
134 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, count_construct, count_destruct ); in test_counted()
138 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, count_destruct ); in test_counted()
151 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, count_construct, count_destruct ); in test_counted()
155 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, count_destruct ); in test_counted()
171 void *one, *two, *three; in test_exception_in_constructor() local
178 one = two = three = NULL; in test_exception_in_constructor()
179 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, throw_construct, throw_destruct ); in test_exception_in_constructor()
185 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, throw_destruct ); in test_exception_in_constructor()
204 one = two = three = NULL; in test_exception_in_constructor()
205 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct ); in test_exception_in_constructor()
211 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, throw_destruct ); in test_exception_in_constructor()
228 void *one, *two, *three; in test_exception_in_destructor() local
235 one = two = three = NULL; in test_exception_in_destructor()
236 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct ); in test_exception_in_destructor()
243 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, throw_destruct ); in test_exception_in_destructor()