OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sqrt1
(Results
1 - 3
of
3
) sorted by null
/external/guava/guava/src/com/google/common/math/
BigIntegerMath.java
244
BigInteger
sqrt1
= sqrt0.add(x.divide(sqrt0)).shiftRight(1);
local
245
if (sqrt0.equals(
sqrt1
)) {
249
sqrt0 =
sqrt1
;
250
sqrt1
= sqrt0.add(x.divide(sqrt0)).shiftRight(1);
251
} while (
sqrt1
.compareTo(sqrt0) < 0);
LongMath.java
277
long
sqrt1
= (sqrt0 + (x / sqrt0)) >> 1;
local
278
if (
sqrt1
== sqrt0) {
282
sqrt0 =
sqrt1
;
283
sqrt1
= (sqrt0 + (x / sqrt0)) >> 1;
284
} while (
sqrt1
< sqrt0);
/external/valgrind/main/VEX/priv/
guest_ppc_toIR.c
9817
IRTemp
sqrt1
= newTemp(Ity_F64);
local
[
all
...]
Completed in 178 milliseconds