mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-08-26 12:24:45 -04:00
10 lines
311 B
C++
10 lines
311 B
C++
struct foo {
|
|
__attribute__((__vector_size__(1 * sizeof(long long)))) long long mMember;
|
|
};
|
|
|
|
typedef float __m128 __attribute__ ((__vector_size__ (16)));
|
|
typedef double __m128d __attribute__((__vector_size__(16)));
|
|
typedef long long __m128i __attribute__((__vector_size__(16)));
|
|
|
|
__m128 foo(__m128i, __m128d);
|