Searched refs:sqrt1 (Results 1 - 3 of 3) sorted by relevance

/external/guava/guava/src/com/google/common/math/
H A DBigIntegerMath.java244 BigInteger sqrt1 = sqrt0.add(x.divide(sqrt0)).shiftRight(1);
245 if (sqrt0.equals(sqrt1)) {
249 sqrt0 = sqrt1;
250 sqrt1 = sqrt0.add(x.divide(sqrt0)).shiftRight(1);
251 } while (sqrt1.compareTo(sqrt0) < 0);
H A DLongMath.java277 long sqrt1 = (sqrt0 + (x / sqrt0)) >> 1;
278 if (sqrt1 == sqrt0) {
282 sqrt0 = sqrt1;
283 sqrt1 = (sqrt0 + (x / sqrt0)) >> 1;
284 } while (sqrt1 < sqrt0);
/external/valgrind/main/VEX/priv/
H A Dguest_ppc_toIR.c9817 IRTemp sqrt1 = newTemp(Ity_F64); local
9831 assign( sqrt1, binop( Iop_SqrtF64, rm, mkexpr( b1 ) ) );
9848 resp ? mkexpr( b1 ) : mkexpr( sqrt1 ) ) ) ) );

Completed in 208 milliseconds