Home
last modified time | relevance | path

Searched defs:aligned_struct (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/move/include/boost/move/detail/
Dtype_traits.hpp1145 template <> struct aligned_struct<1> { char data; }; struct
1146 template <> struct aligned_struct<2> { short data; }; argument
1147 template <> struct aligned_struct<4> { int data; }; argument
1148 template <> struct aligned_struct<8> { double data; }; argument
/aosp_15_r20/external/clang/test/Sema/
H A Dtls_alignment.cpp12 struct __attribute__(( aligned(64) )) aligned_struct { struct
22 typedef aligned_struct another_aligned_struct; argument
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dcxx11-gnu-attrs.cpp37 struct [[gnu::aligned(8)]] aligned_struct {}; struct