Lines Matching refs:vector
71 static __inline vector double _hypotd2(vector double x, vector double y) in _hypotd2()
73 vector unsigned long long emask = spu_splats(0x7FF0000000000000ull); in _hypotd2()
74 vector unsigned long long mmask = spu_splats(0x000FFFFFFFFFFFFFull); in _hypotd2()
75 vector signed long long bias = spu_splats(0x3FF0000000000000ll); in _hypotd2()
76 vector double oned = spu_splats(1.0); in _hypotd2()
77 vector double sbit = spu_splats(-0.0); in _hypotd2()
78 vector double inf = (vector double)spu_splats(0x7FF0000000000000ull); in _hypotd2()
79 vector double max, max_e, max_m; in _hypotd2()
80 vector double min, min_e, min_m; in _hypotd2()
81 vector unsigned long long xgty; in _hypotd2()
82 vector double sum; in _hypotd2()
83 vector double result; in _hypotd2()