OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:factorial
(Results
51 - 75
of
86
) sorted by null
1
2
3
4
/packages/apps/Calculator/res/values-ro/
strings.xml
47
<string name="factorialDesc" msgid="9217024218012761574">"
factorial
"</string>
68
<item msgid="6664829080840305856">"
factorial
"</item>
/packages/apps/Calculator/res/values-tl/
strings.xml
47
<string name="factorialDesc" msgid="9217024218012761574">"
factorial
"</string>
68
<item msgid="6664829080840305856">"
factorial
"</item>
/external/guava/guava-tests/test/com/google/common/math/
IntMathTest.java
439
// Depends on the correctness of BigIntegerMath.
factorial
.
443
BigInteger expectedBig = BigIntegerMath.
factorial
(n);
445
assertEquals(expectedInt, IntMath.
factorial
(n));
449
@GwtIncompatible("
factorial
")
453
IntMath.
factorial
(n);
LongMathTest.java
479
// Depends on the correctness of BigIntegerMath.
factorial
.
482
BigInteger expectedBig = BigIntegerMath.
factorial
(n);
484
assertEquals(expectedLong, LongMath.
factorial
(n));
491
LongMath.
factorial
(n);
/external/guava/guava/src/com/google/common/math/
BigIntegerMath.java
278
* <p>This uses an efficient binary recursive algorithm to compute the
factorial
284
public static BigInteger
factorial
(int n) {
method in class:BigIntegerMath
287
// If the
factorial
is small enough, just use LongMath to do it.
296
// Start from the pre-computed maximum long
factorial
.
DoubleMath.java
271
public static double
factorial
(int n) {
method in class:DoubleMath
IntMath.java
438
public static int
factorial
(int n) {
LongMath.java
535
public static long
factorial
(int n) {