Lines Matching refs:float32x2_t
129 typedef struct { float e[2]; } float32x2_t; typedef
132 typedef struct { float32x2_t val[2]; } float32x2x2_t;
141 static float32x2_t vld1_f32(const float *p) in vld1_f32()
143 return (float32x2_t){ { p[0], p[1] } }; in vld1_f32()
173 static void vst1_f32(float *p, float32x2_t v) in vst1_f32()
189 static float32x2_t vneg_f32(float32x2_t a) in vneg_f32()
191 return (float32x2_t){ { -a.e[0], -a.e[1] } }; in vneg_f32()
215 static float32x2_t vfma_f32(float32x2_t a, float32x2_t b, float32x2_t c) in vfma_f32()
217 return (float32x2_t){ { in vfma_f32()
230 static float32x2_t vfms_f32(float32x2_t a, float32x2_t b, float32x2_t c) in vfms_f32()
232 return (float32x2_t){ { in vfms_f32()
250 static float32x2_t vcreate_f32(uint64_t u) in vcreate_f32()
253 return (float32x2_t){ { f[0] , f[1] } }; in vcreate_f32()
257 static float32x4_t vcombine_f32(float32x2_t a, float32x2_t b) in vcombine_f32()
263 static float32x2_t vget_low_f32(float32x4_t a) in vget_low_f32()
265 return (float32x2_t){ { a.e[0], a.e[1] } }; in vget_low_f32()
269 static float32x2_t vget_high_f32(float32x4_t a) in vget_high_f32()
271 return (float32x2_t){ { a.e[2], a.e[3] } }; in vget_high_f32()
281 static float32x2_t vrev64_f32(float32x2_t v) in vrev64_f32()
283 return (float32x2_t){ { v.e[1], v.e[0] } }; in vrev64_f32()
293 static float32x2_t vtrn1_f32(float32x2_t a, float32x2_t b) in vtrn1_f32()
295 return (float32x2_t){ { a.e[0], b.e[0] } }; in vtrn1_f32()
299 static float32x2_t vtrn2_f32(float32x2_t a, float32x2_t b) in vtrn2_f32()
301 return (float32x2_t){ { a.e[1], b.e[1] } }; in vtrn2_f32()