Home
last modified time | relevance | path

Searched refs:TEST_ALIGNOF (Results 1 – 5 of 5) sorted by relevance

/external/libcxx/test/std/containers/sequences/array/
Dsize_and_alignment.pass.cpp37 static_assert(TEST_ALIGNOF(ArrayT) == TEST_ALIGNOF(MyArrayT), ""); in test()
42 static_assert(TEST_ALIGNOF(ArrayT) == __alignof__(a.__elems_), ""); in test()
53 struct TEST_ALIGNAS(TEST_ALIGNOF(std::max_align_t) * 2) TestType1 {
57 struct TEST_ALIGNAS(TEST_ALIGNOF(std::max_align_t) * 2) TestType2 {
/external/libcxx/test/libcxx/language.support/support.dynamic/
Dlibcpp_deallocate.sh.cpp142 size_t over_align_val = TEST_ALIGNOF(std::max_align_t) * 2; in test_libcpp_dealloc()
143 size_t under_align_val = TEST_ALIGNOF(int); in test_libcpp_dealloc()
222 assert(stats.expect_align(TEST_ALIGNOF(AlignedType))); in test_allocator_and_new_match()
251 TEST_ALIGNOF(AlignedType))); in test_allocator_and_new_match()
/external/libcxx/test/support/
Dtest_macros.h101 #define TEST_ALIGNOF(...) alignof(__VA_ARGS__) macro
118 #define TEST_ALIGNOF(...) __alignof(__VA_ARGS__) macro
176 #define TEST_ALIGNAS_TYPE(...) TEST_ALIGNAS(TEST_ALIGNOF(__VA_ARGS__))
/external/libcxx/test/std/containers/sequences/array/array.data/
Ddata_const.pass.cpp60 assert(pint % TEST_ALIGNOF(std::max_align_t) == 0); in main()
Ddata.pass.cpp62 assert(pint % TEST_ALIGNOF(std::max_align_t) == 0); in main()