Searched refs:v_f32_t (Results 1 – 9 of 9) sorted by relevance
/third_party/optimized-routines/math/ |
D | v_math.h | 101 typedef f32_t v_f32_t; typedef 114 static inline v_f32_t 131 v_get_f32 (v_f32_t x, int i) in v_get_f32() 147 v_set_f32 (v_f32_t *x, int i, f32_t v) in v_set_f32() 174 static inline v_f32_t 175 v_abs_f32 (v_f32_t x) in v_abs_f32() 179 static inline v_f32_t 180 v_fma_f32 (v_f32_t x, v_f32_t y, v_f32_t z) in v_fma_f32() 184 static inline v_f32_t 185 v_round_f32 (v_f32_t x) in v_round_f32() [all …]
|
D | v_exp2f_1u.c | 29 static v_f32_t 30 specialcase (v_f32_t poly, v_f32_t n, v_u32_t e, v_f32_t absn) in specialcase() 34 v_f32_t s1 = v_as_f32_u32 (v_u32 (0x7f000000) + b); in specialcase() 35 v_f32_t s2 = v_as_f32_u32 (e - b); in specialcase() 37 v_f32_t r1 = s1 * s1; in specialcase() 38 v_f32_t r0 = poly * s1 * s2; in specialcase() 43 v_f32_t 44 V_NAME(exp2f_1u) (v_f32_t x) in V_NAME() 46 v_f32_t n, r, scale, poly, absn; in V_NAME() 52 v_f32_t z; in V_NAME()
|
D | v_expf_1u.c | 32 static v_f32_t 33 specialcase (v_f32_t poly, v_f32_t n, v_u32_t e, v_f32_t absn) in specialcase() 37 v_f32_t s1 = v_as_f32_u32 (v_u32 (0x7f000000) + b); in specialcase() 38 v_f32_t s2 = v_as_f32_u32 (e - b); in specialcase() 40 v_f32_t r1 = s1 * s1; in specialcase() 41 v_f32_t r0 = poly * s1 * s2; in specialcase() 46 v_f32_t 47 V_NAME(expf_1u) (v_f32_t x) in V_NAME() 49 v_f32_t n, r, scale, poly, absn, z; in V_NAME()
|
D | v_exp2f.c | 29 static v_f32_t 30 specialcase (v_f32_t poly, v_f32_t n, v_u32_t e, v_f32_t absn, v_u32_t cmp1, v_f32_t scale) in specialcase() 34 v_f32_t s1 = v_as_f32_u32 (v_u32 (0x7f000000) + b); in specialcase() 35 v_f32_t s2 = v_as_f32_u32 (e - b); in specialcase() 45 v_f32_t 46 V_NAME(exp2f) (v_f32_t x) in V_NAME() 48 v_f32_t n, r, r2, scale, p, q, poly, absn; in V_NAME() 54 v_f32_t z; in V_NAME()
|
D | v_expf.c | 32 static v_f32_t 33 specialcase (v_f32_t poly, v_f32_t n, v_u32_t e, v_f32_t absn, v_u32_t cmp1, v_f32_t scale) in specialcase() 37 v_f32_t s1 = v_as_f32_u32 (v_u32 (0x7f000000) + b); in specialcase() 38 v_f32_t s2 = v_as_f32_u32 (e - b); in specialcase() 48 v_f32_t 49 V_NAME(expf) (v_f32_t x) in V_NAME() 51 v_f32_t n, r, r2, scale, p, q, poly, absn, z; in V_NAME()
|
D | v_cosf.c | 33 static v_f32_t 34 specialcase (v_f32_t x, v_f32_t y, v_u32_t cmp) in specialcase() 41 v_f32_t 42 V_NAME(cosf) (v_f32_t x) in V_NAME() 44 v_f32_t n, r, r2, y; in V_NAME()
|
D | v_logf.c | 32 __attribute__ ((noinline)) static v_f32_t 33 specialcase (v_f32_t x, v_f32_t y, v_u32_t cmp) in specialcase() 40 v_f32_t 41 V_NAME(logf) (v_f32_t x) in V_NAME() 43 v_f32_t n, p, q, r, r2, y; in V_NAME()
|
D | v_sinf.c | 32 static v_f32_t 33 specialcase (v_f32_t x, v_f32_t y, v_u32_t cmp) in specialcase() 40 v_f32_t 41 V_NAME(sinf) (v_f32_t x) in V_NAME() 43 v_f32_t n, r, r2, y; in V_NAME()
|
D | v_powf.c | 140 __attribute__ ((noinline)) static v_f32_t 141 specialcase (v_f32_t x, v_f32_t y, v_f32_t ret, v_u32_t cmp) in specialcase() 147 v_f32_t 148 V_NAME(powf) (v_f32_t x, v_f32_t y) in V_NAME() 152 v_f32_t ret; in V_NAME()
|