Lines Matching refs:VEC_SIZE
3 #if defined(__i386__) && VEC_SIZE == 16
61 #ifndef VEC_SIZE
62 # define VEC_SIZE ELEM_SIZE macro
64 __attribute__((mode(MODE), vector_size(VEC_SIZE))) vec_t;
66 #define ELEM_COUNT (VEC_SIZE / ELEM_SIZE)
68 typedef unsigned int __attribute__((mode(QI), vector_size(VEC_SIZE))) byte_vec_t;
71 typedef char __attribute__((vector_size(VEC_SIZE))) vqi_t;
72 typedef short __attribute__((vector_size(VEC_SIZE))) vhi_t;
73 #if VEC_SIZE >= 4
74 typedef int __attribute__((vector_size(VEC_SIZE))) vsi_t;
75 typedef float __attribute__((vector_size(VEC_SIZE))) vsf_t;
77 #if VEC_SIZE >= 8
78 typedef long long __attribute__((vector_size(VEC_SIZE))) vdi_t;
79 typedef double __attribute__((vector_size(VEC_SIZE))) vdf_t;
92 #if VEC_SIZE >= 16
95 # if VEC_SIZE > 32
96 # define HALF_SIZE (VEC_SIZE / 2)
112 # if VEC_SIZE > 64
113 # define QUARTER_SIZE (VEC_SIZE / 4)
128 # if VEC_SIZE > 128
129 # define EIGHTH_SIZE (VEC_SIZE / 8)
170 #if VEC_SIZE == 16
173 #elif VEC_SIZE == 32
175 #elif VEC_SIZE == 64
218 # if VEC_SIZE > ELEM_SIZE && (defined(VEC_MAX) ? VEC_MAX : VEC_SIZE) < 64