Searched refs:v_u32_t (Results 1 – 9 of 9) sorted by relevance
/third_party/optimized-routines/math/ |
D | v_math.h | 102 typedef u32_t v_u32_t; typedef 119 static inline v_u32_t 136 v_get_u32 (v_u32_t x, int i) in v_get_u32() 152 v_set_u32 (v_u32_t *x, int i, u32_t v) in v_set_u32() 164 v_any_u32 (v_u32_t x) in v_any_u32() 169 static inline v_u32_t 170 v_cond_u32 (v_u32_t x) in v_cond_u32() 201 v_to_f32_u32 (v_u32_t x) in v_to_f32_u32() 206 static inline v_u32_t 209 union { v_f32_t f; v_u32_t u; } r = {x}; in v_as_u32_f32() [all …]
|
D | v_exp2f.c | 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() 33 v_u32_t b = v_cond_u32 (n <= v_f32 (0.0f)) & v_u32 (0x82000000); in specialcase() 36 v_u32_t cmp2 = v_cond_u32 (absn > v_f32 (192.0f)); in specialcase() 37 v_u32_t r2 = v_as_u32_f32 (s1 * s1); in specialcase() 38 v_u32_t r1 = v_as_u32_f32 (v_fma_f32 (poly, s2, s2) * s1); in specialcase() 40 v_u32_t r0 = v_as_u32_f32 (v_fma_f32 (poly, scale, scale)); in specialcase() 49 v_u32_t cmp, e; in V_NAME()
|
D | v_expf.c | 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() 36 v_u32_t b = v_cond_u32 (n <= v_f32 (0.0f)) & v_u32 (0x82000000); in specialcase() 39 v_u32_t cmp2 = v_cond_u32 (absn > v_f32 (192.0f)); in specialcase() 40 v_u32_t r2 = v_as_u32_f32 (s1 * s1); in specialcase() 41 v_u32_t r1 = v_as_u32_f32 (v_fma_f32 (poly, s2, s2) * s1); in specialcase() 43 v_u32_t r0 = v_as_u32_f32 (v_fma_f32 (poly, scale, scale)); in specialcase() 52 v_u32_t cmp, e; in V_NAME()
|
D | v_exp2f_1u.c | 30 specialcase (v_f32_t poly, v_f32_t n, v_u32_t e, v_f32_t absn) in specialcase() 33 v_u32_t b = v_cond_u32 (n <= v_f32 (0.0f)) & v_u32 (0x83000000); in specialcase() 36 v_u32_t cmp = v_cond_u32 (absn > v_f32 (192.0f)); in specialcase() 47 v_u32_t cmp, e; in V_NAME()
|
D | v_expf_1u.c | 33 specialcase (v_f32_t poly, v_f32_t n, v_u32_t e, v_f32_t absn) in specialcase() 36 v_u32_t b = v_cond_u32 (n <= v_f32 (0.0f)) & v_u32 (0x83000000); in specialcase() 39 v_u32_t cmp = v_cond_u32 (absn > v_f32 (192.0f)); in specialcase() 50 v_u32_t cmp, e; in V_NAME()
|
D | v_cosf.c | 34 specialcase (v_f32_t x, v_f32_t y, v_u32_t cmp) in specialcase() 45 v_u32_t odd, cmp; in V_NAME()
|
D | v_logf.c | 33 specialcase (v_f32_t x, v_f32_t y, v_u32_t cmp) in specialcase() 44 v_u32_t u, cmp; in V_NAME()
|
D | v_sinf.c | 33 specialcase (v_f32_t x, v_f32_t y, v_u32_t cmp) in specialcase() 44 v_u32_t sign, odd, cmp; in V_NAME()
|
D | v_powf.c | 141 specialcase (v_f32_t x, v_f32_t y, v_f32_t ret, v_u32_t cmp) in specialcase() 150 v_u32_t u, tmp, cmp, i, top, iz; in V_NAME()
|