Home
last modified time | relevance | path

Searched refs:__cxxabiv1 (Results 1 – 25 of 93) sorted by relevance

1234

/external/llvm-project/libcxxabi/test/
Dtest_vector1.pass.cpp73 …vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, … in vec_on_stack()
74 …~vec_on_stack () CAN_THROW {__cxxabiv1::__cxa_vec_delete ( storage, 40, 8, … in ~vec_on_stack()
82 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, NULL, NULL ); in test_empty()
83 two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, NULL, NULL, my_alloc2, my_dealloc2 ); in test_empty()
84 three = __cxxabiv1::__cxa_vec_new3( 10, 40, 0, NULL, NULL, my_alloc2, my_dealloc3 ); in test_empty()
86 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, NULL ); in test_empty()
87 __cxxabiv1::__cxa_vec_delete2( two, 40, 0, NULL, my_dealloc2 ); in test_empty()
88 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, NULL, my_dealloc3 ); in test_empty()
91 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, my_construct, my_destruct ); in test_empty()
92 …two = __cxxabiv1::__cxa_vec_new2( 10, 40, 0, my_construct, my_destruct, my_alloc2, my_dealloc2… in test_empty()
[all …]
Dcxa_vec_new_overflow_PR41395.pass.cpp45 __cxxabiv1::__cxa_vec_new(elem_count, elem_size, padding, dummy_ctor, in test_overflow_in_multiplication()
55 __cxxabiv1::__cxa_vec_new2(elem_count, elem_size, padding, dummy_ctor, in test_overflow_in_multiplication()
65 __cxxabiv1::__cxa_vec_new3(elem_count, elem_size, padding, dummy_ctor, in test_overflow_in_multiplication()
86 __cxxabiv1::__cxa_vec_new(elem_count, elem_size, padding, dummy_ctor, in test_overflow_in_addition()
97 __cxxabiv1::__cxa_vec_new2(elem_count, elem_size, padding, dummy_ctor, in test_overflow_in_addition()
107 __cxxabiv1::__cxa_vec_new3(elem_count, elem_size, padding, dummy_ctor, in test_overflow_in_addition()
Dnoexception4.pass.cpp24 assert(nullptr == __cxxabiv1::__cxa_current_primary_exception()); in main()
25 assert(!__cxxabiv1::__cxa_uncaught_exception()); in main()
26 assert(0 == __cxxabiv1::__cxa_uncaught_exceptions()); in main()
Dtest_exception_storage.pass.cpp17 typedef __cxxabiv1::__cxa_eh_globals globals_t ;
23 glob1 = __cxxabiv1::__cxa_get_globals (); in thread_code()
27 glob2 = __cxxabiv1::__cxa_get_globals_fast (); in thread_code()
Dnoexception2.pass.cpp28 __cxxabiv1::__cxa_decrement_exception_refcount(nullptr); in main()
33 __cxxabiv1::__cxa_decrement_exception_refcount((void*) &gCounter); in main()
Dnoexception3.pass.cpp28 __cxxabiv1::__cxa_rethrow_primary_exception(nullptr); in main()
33 __cxxabiv1::__cxa_rethrow_primary_exception((void*) &gCounter); in main()
Dnoexception1.pass.cpp28 __cxxabiv1::__cxa_increment_exception_refcount(nullptr); in main()
33 __cxxabiv1::__cxa_increment_exception_refcount((void*) &gCounter); in main()
Dtest_demangle.pass.cpp29916 char* demang = __cxxabiv1::__cxa_demangle(cases[i][0], buf, &len, &status); in test()
29948 char* demang = __cxxabiv1::__cxa_demangle(invalid_cases[i], buf, &len, &status); in test_invalid_cases()
29979 char* demang = __cxxabiv1::__cxa_demangle(xfail_cases[i], buf, &len, &status); in test_xfail_cases()
30002 char* demang = __cxxabiv1::__cxa_demangle(fpCase->mangled, buf, &len, &status); in testFPLiterals()
Dexception_object_alignment.pass.cpp26 void *p = __cxxabiv1::__cxa_allocate_exception(16); in main()
30 __cxxabiv1::__cxa_free_exception(p); in main()
Dtest_vector2.pass.cpp58 …vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, … in vec_on_stack()
59 …~vec_on_stack () { __cxxabiv1::__cxa_vec_delete ( storage, 40, 8, … in ~vec_on_stack()
/external/libcxxabi/test/
Dtest_vector1.pass.cpp72 …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()
[all …]
Dnoexception4.pass.cpp25 assert(nullptr == __cxxabiv1::__cxa_current_primary_exception()); in main()
26 assert(!__cxxabiv1::__cxa_uncaught_exception()); in main()
27 assert(0 == __cxxabiv1::__cxa_uncaught_exceptions()); in main()
Dtest_exception_storage.pass.cpp20 typedef __cxxabiv1::__cxa_eh_globals globals_t ;
26 glob1 = __cxxabiv1::__cxa_get_globals (); in thread_code()
30 glob2 = __cxxabiv1::__cxa_get_globals_fast (); in thread_code()
Dnoexception1.pass.cpp29 __cxxabiv1::__cxa_increment_exception_refcount(nullptr); in main()
34 __cxxabiv1::__cxa_increment_exception_refcount((void*) &gCounter); in main()
Dnoexception3.pass.cpp29 __cxxabiv1::__cxa_rethrow_primary_exception(nullptr); in main()
34 __cxxabiv1::__cxa_rethrow_primary_exception((void*) &gCounter); in main()
Dnoexception2.pass.cpp29 __cxxabiv1::__cxa_decrement_exception_refcount(nullptr); in main()
34 __cxxabiv1::__cxa_decrement_exception_refcount((void*) &gCounter); in main()
Dtest_demangle.pass.cpp29849 char* demang = __cxxabiv1::__cxa_demangle(cases[i][0], buf, &len, &status); in test()
29882 char* demang = __cxxabiv1::__cxa_demangle(invalid_cases[i], buf, &len, &status); in test_invalid_cases()
29912 char* demang = __cxxabiv1::__cxa_demangle(xfail_cases[i], buf, &len, &status); in test_xfail_cases()
29935 char* demang = __cxxabiv1::__cxa_demangle(fpCase->mangled, buf, &len, &status); in testFPLiterals()
Dexception_object_alignment.pass.cpp27 void *p = __cxxabiv1::__cxa_allocate_exception(16); in main()
31 __cxxabiv1::__cxa_free_exception(p); in main()
Duncaught_exceptions.pass.cpp22 ~A() { assert( __cxxabiv1::__cxa_uncaught_exception()); } in ~A()
27 ~B() { assert( data_ == __cxxabiv1::__cxa_uncaught_exceptions()); } in ~B()
Dtest_vector2.pass.cpp58 …vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, … in vec_on_stack()
59 …~vec_on_stack () { __cxxabiv1::__cxa_vec_delete ( storage, 40, 8, … in ~vec_on_stack()
/external/libcxxabi/src/
Dcxa_exception_storage.cpp20 namespace __cxxabiv1 { namespace
30 namespace __cxxabiv1 { namespace
54 namespace __cxxabiv1 { namespace
/external/llvm-project/libcxxabi/src/
Dcxa_exception_storage.cpp19 namespace __cxxabiv1 { namespace
29 namespace __cxxabiv1 { namespace
57 namespace __cxxabiv1 { namespace
/external/llvm-project/clang/test/CodeGenCXX/
Druntime-dllstorage.cpp21 namespace __cxxabiv1 { namespace
32 namespace __cxxabiv1 { namespace
43 namespace __cxxabiv1 { namespace
/external/libabigail/tests/data/test-diff-filter/
Dtest31-pr18535-libstdc++-report-0.txt8 [A] 'function void __cxxabiv1::__cxa_throw_bad_array_length()'
9 [A] 'function void __cxxabiv1::__cxa_throw_bad_array_new_length()'
30 …[C] 'function __cxxabiv1::__cxa_dependent_exception* __cxxabiv1::__cxa_allocate_dependent_exceptio…
32 in pointed to type 'struct __cxxabiv1::__cxa_dependent_exception':
39 … '__cxxabiv1::__cxa_exception* nextException' offset changed from 96 to 128 (in bits) (by +32 bits)
41 …'__cxxabiv1::__cxa_exception* nextPropagatingException' offset changed from 160 to 192 (in bits) (…
Dtest31-pr18535-libstdc++-report-1.txt8 [A] 'function void __cxxabiv1::__cxa_throw_bad_array_length()'
9 [A] 'function void __cxxabiv1::__cxa_throw_bad_array_new_length()'
30 …[C] 'function __cxxabiv1::__cxa_dependent_exception* __cxxabiv1::__cxa_allocate_dependent_exceptio…
32 in pointed to type 'struct __cxxabiv1::__cxa_dependent_exception' at unwind-cxx.h:112:1:
39 … '__cxxabiv1::__cxa_exception* nextException' offset changed from 96 to 128 (in bits) (by +32 bits)
41 …'__cxxabiv1::__cxa_exception* nextPropagatingException' offset changed from 160 to 192 (in bits) (…

1234