Searched refs:ALIGNOF (Results 1 – 7 of 7) sorted by relevance
/third_party/boost/libs/type_traits/test/ |
D | alignment_of_test.cpp | 77 #define ALIGNOF(x) align_calc< x>::get() macro 85 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<char>::value, ALIGNOF(char)); 86 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<short>::value, ALIGNOF(short)); 87 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<int>::value, ALIGNOF(int)); 88 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<long>::value, ALIGNOF(long)); 89 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<float>::value, ALIGNOF(float)); 90 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<double>::value, ALIGNOF(double)); 91 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<long double>::value, ALIGNOF(long double)); 93 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of< ::boost::long_long_type>::value, ALIGNOF(::boost:… 96 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<__int64>::value, ALIGNOF(__int64)); [all …]
|
D | alignment_of_a2_test.cpp | 82 #define ALIGNOF(x) align_calc< x>::get() macro 90 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<char>::value, ALIGNOF(char)); 91 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<short>::value, ALIGNOF(short)); 92 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<int>::value, ALIGNOF(int)); 93 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<long>::value, ALIGNOF(long)); 94 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<float>::value, ALIGNOF(float)); 95 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<double>::value, ALIGNOF(double)); 96 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<long double>::value, ALIGNOF(long double)); 98 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of< ::boost::long_long_type>::value, ALIGNOF(::boost:… 101 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<__int64>::value, ALIGNOF(__int64)); [all …]
|
D | tricky_partial_spec_test.cpp | 49 #define ALIGNOF(x) align_calc<x>::get() macro 58 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<char&>::value, ALIGNOF(void*)); 59 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<char (&)(int)>::value, ALIGNOF(void*)); 60 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<char(&)[4]>::value, ALIGNOF(void*));
|
/third_party/boost/libs/type_traits/doc/ |
D | alignment_of.qbk | 10 struct alignment_of : public __integral_constant<std::size_t, ALIGNOF(T)> {}; 13 `__integral_constant<std::size_t, ALIGNOF(T)>`, where `ALIGNOF(T)` is the 17 the value of `ALIGNOF(T)` being a multiple of the true alignment of T, although 24 [:`alignment_of<int>` inherits from `__integral_constant<std::size_t, ALIGNOF(int)>`.] 26 [:`alignment_of<char>::type` is the type `__integral_constant<std::size_t, ALIGNOF(char)>`.] 29 expression with value `ALIGNOF(double)`.]
|
/third_party/popt/src/ |
D | popt.c | 23 #define ALIGNOF(x) alignof(x) macro 25 #define ALIGNOF(x) __alignof__(x) macro 27 #define ALIGNOF(x) sizeof(x) macro 912 if (arg == NULL || (((unsigned long)arg) & (ALIGNOF(*arg)-1))) in poptSaveLongLong() 953 if (arg == NULL || (((unsigned long)arg) & (ALIGNOF(*arg)-1))) in poptSaveLong() 986 if (arg == NULL || (((unsigned long)arg) & (ALIGNOF(*arg)-1))) in poptSaveInt() 1019 if (arg == NULL || (((unsigned long)arg) & (ALIGNOF(*arg)-1))) in poptSaveShort()
|
/third_party/boost/libs/wave/samples/cpp_tokens/slex/ |
D | cpp_slex_lexer.hpp | 454 TOKEN_DATA(ALIGNOF, "alignof"),
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | ccapitst.c | 39 #define ALIGNOF(type) offsetof (struct { char c; type member; }, member) macro 1836 if( actualSizes[idx] <= (bufferSizes[j] - (int32_t)ALIGNOF(UConverter)) && in TestConvertSafeClone()
|