Searched refs:is_boring (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/ |
H A D | tanhf.c | 25 special_case (float32x4_t x, uint32x4_t is_boring, float32x4_t boring, in special_case() argument 30 vbslq_f32 (is_boring, boring, vdivq_f32 (q, vaddq_f32 (q, v_f32 (2.0)))), in special_case() 46 uint32x4_t is_boring = vcgtq_u32 (iax, d->boring_bound); in V_NAME_F1() local 56 x = v_zerofy_f32 (x, is_boring); in V_NAME_F1() 67 return special_case (vreinterpretq_f32_u32 (ix), is_boring, boring, q, in V_NAME_F1() 71 return vbslq_f32 (is_boring, boring, y); in V_NAME_F1()
|
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/ |
H A D | tanhf.c | 29 special_case (svfloat32_t x, svbool_t pg, svbool_t is_boring, in special_case() argument 33 = svsel_f32 (is_boring, boring, svdiv_x (pg, q, svadd_x (pg, q, 2.0))); in special_case() 50 svbool_t is_boring = svacgt (pg, x, d->boring_bound); in SV_NAME_F1() local 57 return special_case (x, pg, is_boring, boring, q, special); in SV_NAME_F1() 59 return svsel_f32 (is_boring, boring, y); in SV_NAME_F1()
|