Lines Matching refs:v_f64_t
42 static v_f64_t
43 specialcase (v_f64_t s, v_f64_t y, v_f64_t n)
45 v_f64_t absn = v_abs_f64 (n);
49 v_f64_t s1 = v_as_f64_u64 (v_u64 (0x7000000000000000) - b);
50 v_f64_t s2 = v_as_f64_u64 (v_as_u64_f64 (s) - v_u64 (0x3010000000000000) + b);
52 v_f64_t r1 = s1 * s1;
53 v_f64_t r0 = v_fma_f64 (y, s2, s2) * s1;
58 v_f64_t
59 V_NAME(exp) (v_f64_t x)
61 v_f64_t n, r, r2, s, y, z;