Lines Matching refs:SQRT
557 var sqrt = []float64{
2144 a := Abs(1e200 * tanh[i] * Sqrt(2))
2158 a := Abs(1e200 * tanh[i] * Sqrt(2))
2492 if f := SqrtGo(a); sqrt[i] != f {
2493 t.Errorf("SqrtGo(%g) = %g, want %g", a, f, sqrt[i])
2496 if f := Sqrt(a); sqrt[i] != f {
2497 t.Errorf("Sqrt(%g) = %g, want %g", a, f, sqrt[i])
2504 if f := Sqrt(vfsqrtSC[i]); !alike(sqrtSC[i], f) {
2505 t.Errorf("Sqrt(%g) = %g, want %g", vfsqrtSC[i], f, sqrtSC[i])
2991 x += Sqrt(y)
2998 f := Sqrt
3015 // but calling Sqrt repeatedly in this way demonstrates
3016 // the benefit of using a direct SQRT instruction on systems
3019 for j := 2; float64(j) <= Sqrt(float64(i)); j++ {