Lines Matching +defs:d +defs:ry

96 static INLINE vdouble2 scale_d(vdouble2 d, vdouble s) {  in scale_d()
171 static INLINE vdouble2 div_dd(vdouble2 n, vdouble2 d) { in div_dd()
232 static INLINE vdouble2 rec_s(vdouble d) { in rec_s()
244 static INLINE vdouble2 sqrt_d(vdouble2 d) { in sqrt_d()
253 static INLINE vint xilogb(vdouble d) { in xilogb()
260 static INLINE vdouble xsin(vdouble d) { in xsin()
290 static INLINE vdouble xcos(vdouble d) { in xcos()
321 static INLINE vdouble2 xsincos(vdouble d) { in xsincos()
324 vdouble u, s, t, rx, ry; in xsincos() local
377 static INLINE vdouble xtan(vdouble d) { in xtan()
472 static INLINE vdouble xasin(vdouble d) { in xasin()
482 static INLINE vdouble xacos(vdouble d) { in xacos()
534 static INLINE vdouble xlog(vdouble d) { in xlog()
563 static INLINE vdouble xexp(vdouble d) { in xexp()
591 static INLINE vdouble2 logk(vdouble d) { in logk()
617 static INLINE vdouble expk(vdouble2 d) { in expk()
694 static INLINE vdouble2 expk2(vdouble2 d) { in expk2()
726 vdouble2 d = expk2(dd(y, vcast_vd_d(0))); in xsinh() local
738 vdouble2 d = expk2(dd(x, vcast_vd_d(0))); in xcosh() local
750 vdouble2 d = expk2(dd(y, vcast_vd_d(0))); in xtanh() local
762 static INLINE vdouble2 logk2(vdouble2 d) { in logk2()
791 vdouble2 d = logk2(add2_ds(sqrt_d(add2_ds(mul_ss(y, y), vcast_vd_d(1))), y)); in xasinh() local
802 vdouble2 d = logk2(add2_ds(sqrt_d(add2_ds(mul_ss(x, x), vcast_vd_d(-1))), x)); in xacosh() local
815 vdouble2 d = logk2(div_dd(add2_ss(vcast_vd_d(1), y), add2_ss(vcast_vd_d(1), -y))); in xatanh() local
825 static INLINE vdouble xcbrt(vdouble d) { in xcbrt()
874 vdouble2 d = add2_ds(expk2(dd(a, vcast_vd_d(0))), vcast_vd_d(-1.0)); in xexpm1() local
882 …vdouble2 d = mul_dd(logk(a), dd(vcast_vd_d(0.43429448190325176116), vcast_vd_d(6.64943477334254731… in xlog10() local
893 vdouble2 d = logk2(add2_ss(a, vcast_vd_d(1))); in xlog1p() local
972 static INLINE vmask vmaskf_isinf(vfloat d) { return vmaskf_eq(vabsf(d), vcast_vf_f(INFINITYf)); } in vmaskf_isinf()
973 static INLINE vmask vmaskf_ispinf(vfloat d) { return vmaskf_eq(d, vcast_vf_f(INFINITYf)); } in vmaskf_ispinf()
974 static INLINE vmask vmaskf_isminf(vfloat d) { return vmaskf_eq(d, vcast_vf_f(-INFINITYf)); } in vmaskf_isminf()
975 static INLINE vmask vmaskf_isnan(vfloat d) { return vmaskf_neq(d, d); } in vmaskf_isnan()
978 static INLINE vfloat visinf2f(vfloat d, vfloat m) { return (vfloat)vandm(vmaskf_isinf(d), vorm(vsig… in visinf2f()
979 static INLINE vfloat visinff(vfloat d) { return visinf2f(d, vcast_vf_f(1.0f)); } in visinff()
981 static INLINE vint2 vilogbp1f(vfloat d) { in vilogbp1f()
1000 static INLINE vfloat xsinf(vfloat d) { in xsinf()
1026 static INLINE vfloat xcosf(vfloat d) { in xcosf()
1053 static INLINE vfloat2 xsincosf(vfloat d) { in xsincosf()
1056 vfloat u, s, t, rx, ry; in xsincosf() local
1105 static INLINE vfloat xtanf(vfloat d) { in xtanf()
1212 static INLINE vfloat xasinf(vfloat d) { in xasinf()
1222 static INLINE vfloat xacosf(vfloat d) { in xacosf()
1234 static INLINE vfloat xlogf(vfloat d) { in xlogf()
1259 static INLINE vfloat xlogf1(vfloat d) { // does xlogf(vmaxf(d, 1.f)) but faster in xlogf1()
1283 static INLINE vfloat xlogf0(vfloat d) { in xlogf0()
1308 static INLINE vfloat xlogfNoCheck(vfloat d) { // this version does not check input values. Use it o… in xlogfNoCheck()
1328 static INLINE vfloat xexpf(vfloat d) { in xexpf()
1349 static INLINE vfloat xexpfNoCheck(vfloat d) { // this version does not check input values. Use it o… in xexpfNoCheck()
1367 static INLINE vfloat xcbrtf(vfloat d) { in xcbrtf()