• Home
  • Raw
  • Download

Lines Matching refs:__cxxabiv1

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