Home | History | Annotate | Download | only in test

Lines Matching defs:one

66     void *one, *two, *three;
69 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, NULL, NULL );
73 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, NULL );
78 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, my_construct, my_destruct );
82 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, my_destruct );
87 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, NULL, NULL );
91 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, NULL );
96 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, my_construct, my_destruct );
100 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, my_destruct );
110 void *one, *two, *three;
114 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, count_construct, count_destruct );
118 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, count_destruct );
131 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, count_construct, count_destruct );
135 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, count_destruct );
151 void *one, *two, *three;
158 one = two = three = NULL;
159 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, throw_construct, throw_destruct );
165 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, throw_destruct );
184 one = two = three = NULL;
185 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct );
191 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, throw_destruct );
208 void *one, *two, *three;
215 one = two = three = NULL;
216 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct );
223 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, throw_destruct );