Lines Matching refs:vector_size
11 typedef char V8c __attribute__((vector_size(8 * sizeof(char))));
12 typedef signed short V4s __attribute__((vector_size(8)));
13 typedef signed int V2i __attribute__((vector_size(8)));
14 typedef signed long long V1LLi __attribute__((vector_size(8)));
16 typedef float V2f __attribute__((vector_size(8)));
19 typedef char V16c __attribute__((vector_size(16)));
20 typedef signed short V8s __attribute__((vector_size(16)));
21 typedef signed int V4i __attribute__((vector_size(16)));
22 typedef signed long long V2LLi __attribute__((vector_size(16)));
24 typedef float V4f __attribute__((vector_size(16)));
25 typedef double V2d __attribute__((vector_size(16)));
28 typedef char V32c __attribute__((vector_size(32)));
29 typedef signed int V8i __attribute__((vector_size(32)));
30 typedef signed long long V4LLi __attribute__((vector_size(32)));
32 typedef double V4d __attribute__((vector_size(32)));
33 typedef float V8f __attribute__((vector_size(32)));