HomeSort by relevance Sort by last modified time
    Searched full:sqrt0 (Results 1 - 5 of 5) sorted by null

  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 262 BigInteger sqrt0; local
265 sqrt0 = sqrtApproxWithDoubles(x);
272 sqrt0 = sqrtApproxWithDoubles(x.shiftRight(shift)).shiftLeft(shift >> 1);
274 BigInteger sqrt1 = sqrt0.add(x.divide(sqrt0)).shiftRight(1);
275 if (sqrt0.equals(sqrt1)) {
276 return sqrt0;
279 sqrt0 = sqrt1;
280 sqrt1 = sqrt0.add(x.divide(sqrt0)).shiftRight(1)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
sqrt_const.go 18 {"sqrt0", 0, math.Sqrt(0), 0},
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
sqrt_const.go 18 {"sqrt0", 0, math.Sqrt(0), 0},
  /external/llvm/test/CodeGen/SystemZ/
fp-sqrt-01.ll 100 %sqrt0 = call float @llvm.sqrt.f32(float %val0)
136 store volatile float %sqrt0, float *%ptr
fp-sqrt-02.ll 102 %sqrt0 = call double @llvm.sqrt.f64(double %val0)
138 store volatile double %sqrt0, double *%ptr

Completed in 469 milliseconds