Lines Matching refs:vector
145 static __inline vector double _tgammad2(vector double x) in _tgammad2()
147 vector double signbit = spu_splats(-0.0); in _tgammad2()
148 vector double zerod = spu_splats(0.0); in _tgammad2()
149 vector double halfd = spu_splats(0.5); in _tgammad2()
150 vector double oned = spu_splats(1.0); in _tgammad2()
151 vector double ninep9d = (vec_double2)spu_splats(0x4023FFFFFFFFFFFFull); in _tgammad2()
152 vector double twohd = spu_splats(200.0); in _tgammad2()
153 vector double pi = spu_splats(SM_PI); in _tgammad2()
154 vector double sqrt2pi = spu_splats(2.50662827463100050241576528481); in _tgammad2()
155 vector double inf = (vector double)spu_splats(0x7FF0000000000000ull); in _tgammad2()
156 vector double nan = (vector double)spu_splats(0x7FF8000000000000ull); in _tgammad2()
159 vector double xabs; in _tgammad2()
160 vector double xscaled; in _tgammad2()
161 vector double xtrunc; in _tgammad2()
162 vector double xinv; in _tgammad2()
163 vector double nresult; in _tgammad2()
164 vector double rresult; /* Rational Approx result */ in _tgammad2()
165 vector double sresult; /* Stirling's result */ in _tgammad2()
166 vector double result; in _tgammad2()
167 vector double pr,qr; in _tgammad2()
169 vector unsigned long long gt0 = spu_cmpgt(x, zerod); in _tgammad2()
170 vector unsigned long long gt1 = spu_cmpgt(x, oned); in _tgammad2()
171 vector unsigned long long gt9p9 = spu_cmpgt(x, ninep9d); in _tgammad2()
172 vector unsigned long long gt200 = spu_cmpgt(x, twohd); in _tgammad2()
239 vector double sum; in _tgammad2()