Lines Matching full:two

79     void *one, *two, *three;  in test_empty()  local
83 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, NULL, NULL, my_alloc2, my_dealloc2 ); in test_empty()
87 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, NULL, my_dealloc2 ); in test_empty()
92two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, my_construct, my_destruct, my_alloc2, my_dealloc2… in test_empty()
96 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, my_destruct, my_dealloc2 ); in test_empty()
101 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, NULL, NULL, my_alloc2, my_dealloc2 ); in test_empty()
105 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, NULL, my_dealloc2 ); in test_empty()
110two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, my_construct, my_destruct, my_alloc2, my_dealloc2… in test_empty()
114 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, my_destruct, my_dealloc2 ); in test_empty()
123 void *one, *two, *three; in test_counted() local
128two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, count_construct, count_destruct, my_alloc2, my_de… in test_counted()
132 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, count_destruct, my_dealloc2 ); in test_counted()
145two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, count_construct, count_destruct, my_alloc2, my_de… in test_counted()
149 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, count_destruct, my_dealloc2 ); in test_counted()
165 void *one, *two, *three; in test_exception_in_constructor() local
172 one = two = three = NULL; in test_exception_in_constructor()
174two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, throw_construct, throw_destruct, my_alloc2, my_de… in test_exception_in_constructor()
180 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, throw_destruct, my_dealloc2 ); in test_exception_in_constructor()
197 one = two = three = NULL; in test_exception_in_constructor()
199two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, throw_construct, throw_destruct, my_alloc2, my_de… in test_exception_in_constructor()
205 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, throw_destruct, my_dealloc2 ); in test_exception_in_constructor()
222 void *one, *two, *three; in test_exception_in_destructor() local
223 one = two = three = NULL; in test_exception_in_destructor()
230 one = two = NULL; in test_exception_in_destructor()
232two = __cxxabiv1::__cxa_vec_new2( 10, 40, 8, throw_construct, throw_destruct, my_alloc2, my_de… in test_exception_in_destructor()
238 __cxxabiv1::__cxa_vec_delete2( two, 40, 8, throw_destruct, my_dealloc2 ); in test_exception_in_destructor()
243 // We should have thrown in the middle of cleaning up "two", which means that in test_exception_in_destructor()