Lines Matching refs:vector
91 static __inline vector double _tanhd2(vector double x) in _tanhd2()
93 vector double signbit = spu_splats(-0.0); in _tanhd2()
94 vector double oned = spu_splats(1.0); in _tanhd2()
95 vector double twod = spu_splats(2.0); in _tanhd2()
96 vector double infd = (vector double)spu_splats(0x7FF0000000000000ull); in _tanhd2()
97 vector double xabs; in _tanhd2()
98 vector double x2; in _tanhd2()
99 vector unsigned long long gttaylor; in _tanhd2()
100 vector double e; in _tanhd2()
101 vector double tresult; in _tanhd2()
102 vector double eresult; in _tanhd2()
103 vector double result; in _tanhd2()