Lines Matching defs:v_f32_t

101 typedef f32_t v_f32_t;
114 static inline v_f32_t
131 v_get_f32 (v_f32_t x, int i)
147 v_set_f32 (v_f32_t *x, int i, f32_t v)
174 static inline v_f32_t
175 v_abs_f32 (v_f32_t x)
179 static inline v_f32_t
180 v_fma_f32 (v_f32_t x, v_f32_t y, v_f32_t z)
184 static inline v_f32_t
185 v_round_f32 (v_f32_t x)
190 v_round_s32 (v_f32_t x)
195 static inline v_f32_t
200 static inline v_f32_t
207 v_as_u32_f32 (v_f32_t x)
209 union { v_f32_t f; v_u32_t u; } r = {x};
212 static inline v_f32_t
215 union { v_u32_t u; v_f32_t f; } r = {x};
230 static inline v_f32_t
240 static inline v_f32_t
241 v_call_f32 (f32_t (*f) (f32_t), v_f32_t x, v_f32_t y, v_u32_t p)
245 static inline v_f32_t
246 v_call2_f32 (f32_t (*f) (f32_t, f32_t), v_f32_t x1, v_f32_t x2, v_f32_t y,
369 typedef float32x4_t v_f32_t;
382 static inline v_f32_t
385 return (v_f32_t){x, x, x, x};
399 v_get_f32 (v_f32_t x, int i)
415 v_set_f32 (v_f32_t *x, int i, f32_t v)
443 static inline v_f32_t
444 v_abs_f32 (v_f32_t x)
448 static inline v_f32_t
449 v_fma_f32 (v_f32_t x, v_f32_t y, v_f32_t z)
453 static inline v_f32_t
454 v_round_f32 (v_f32_t x)
459 v_round_s32 (v_f32_t x)
464 static inline v_f32_t
467 return (v_f32_t){x[0], x[1], x[2], x[3]};
469 static inline v_f32_t
472 return (v_f32_t){x[0], x[1], x[2], x[3]};
476 v_as_u32_f32 (v_f32_t x)
478 union { v_f32_t f; v_u32_t u; } r = {x};
481 static inline v_f32_t
484 union { v_u32_t u; v_f32_t f; } r = {x};
499 static inline v_f32_t
502 return (v_f32_t){tab[idx[0]], tab[idx[1]], tab[idx[2]], tab[idx[3]]};
509 static inline v_f32_t
510 v_call_f32 (f32_t (*f) (f32_t), v_f32_t x, v_f32_t y, v_u32_t p)
512 return (v_f32_t){p[0] ? f (x[0]) : y[0], p[1] ? f (x[1]) : y[1],
515 static inline v_f32_t
516 v_call2_f32 (f32_t (*f) (f32_t, f32_t), v_f32_t x1, v_f32_t x2, v_f32_t y,
520 v_f32_t){p[0] ? f (x1[0], x2[0]) : y[0], p[1] ? f (x1[1], x2[1]) : y[1],