Lines Matching refs:vector_size
24 typedef __attribute__((vector_size(1))) char v1i8;
26 typedef __attribute__((vector_size(2))) char v2i8;
27 typedef __attribute__((vector_size(2))) short v1i16;
29 typedef __attribute__((vector_size(4))) char v4i8;
30 typedef __attribute__((vector_size(4))) short v2i16;
31 typedef __attribute__((vector_size(4))) int v1i32;
32 typedef __attribute__((vector_size(4))) float v1f32;
34 typedef __attribute__((vector_size(8))) char v8i8;
35 typedef __attribute__((vector_size(8))) short v4i16;
36 typedef __attribute__((vector_size(8))) int v2i32;
37 typedef __attribute__((vector_size(8))) long long v1i64;
38 typedef __attribute__((vector_size(8))) float v2f32;
39 typedef __attribute__((vector_size(8))) double v1f64;
41 typedef __attribute__((vector_size(16))) char v16i8;
42 typedef __attribute__((vector_size(16))) short v8i16;
43 typedef __attribute__((vector_size(16))) int v4i32;
44 typedef __attribute__((vector_size(16))) long long v2i64;
45 typedef __attribute__((vector_size(16))) __int128 v1i128;
46 typedef __attribute__((vector_size(16))) float v4f32;
47 typedef __attribute__((vector_size(16))) double v2f64;
48 typedef __attribute__((vector_size(16))) long double v1f128;
50 typedef __attribute__((vector_size(32))) char v32i8;