HomeSort by relevance Sort by last modified time
    Searched full:sqrt0 (Results 1 - 3 of 3) 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...]
  /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 51 milliseconds