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

  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 232 BigInteger sqrt0; local
235 sqrt0 = sqrtApproxWithDoubles(x);
242 sqrt0 = sqrtApproxWithDoubles(x.shiftRight(shift)).shiftLeft(shift >> 1);
244 BigInteger sqrt1 = sqrt0.add(x.divide(sqrt0)).shiftRight(1);
245 if (sqrt0.equals(sqrt1)) {
246 return sqrt0;
249 sqrt0 = sqrt1;
250 sqrt1 = sqrt0.add(x.divide(sqrt0)).shiftRight(1)
    [all...]
LongMath.java 275 long sqrt0 = (long) Math.sqrt(x); local
277 long sqrt1 = (sqrt0 + (x / sqrt0)) >> 1;
278 if (sqrt1 == sqrt0) {
279 return sqrt0;
282 sqrt0 = sqrt1;
283 sqrt1 = (sqrt0 + (x / sqrt0)) >> 1;
284 } while (sqrt1 < sqrt0);
285 return sqrt0;
    [all...]
  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c 9818 IRTemp sqrt0 = newTemp(Ity_F64); local
    [all...]

Completed in 409 milliseconds