/packages/apps/Calculator/res/values-es/ |
strings.xml | 53 <string name="desc_op_fact" msgid="5004950609277631750">"factorial"</string>
|
/packages/apps/Calculator/res/values-es-rUS/ |
strings.xml | 53 <string name="desc_op_fact" msgid="5004950609277631750">"factorial"</string>
|
/packages/apps/Calculator/res/values-gl-rES/ |
strings.xml | 53 <string name="desc_op_fact" msgid="5004950609277631750">"factorial"</string>
|
/packages/apps/Calculator/res/values-ro/ |
strings.xml | 53 <string name="desc_op_fact" msgid="5004950609277631750">"factorial"</string>
|
/packages/apps/Calculator/res/values-tl/ |
strings.xml | 53 <string name="desc_op_fact" msgid="5004950609277631750">"factorial"</string>
|
/external/vixl/ |
SConstruct | 50 examples/factorial-rec.cc 51 examples/factorial.cc
|
/packages/apps/Calculator/res/values/ |
strings.xml | 100 <string name="desc_op_fact">factorial</string>
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/ |
gmp.info | 151 Node: Factorial Algorithm319936
|
gmp.info-2 | 455 * Factorial Algorithm:: 462 File: gmp.info, Node: Prime Testing Algorithm, Next: Factorial Algorithm, Prev: Other Algorithms, Up: Other Algorithms 488 File: gmp.info, Node: Factorial Algorithm, Next: Binomial Coefficients Algorithm, Prev: Prime Testing Algorithm, Up: Other Algorithms 490 16.7.2 Factorial 524 File: gmp.info, Node: Binomial Coefficients Algorithm, Next: Fibonacci Numbers Algorithm, Prev: Factorial Algorithm, Up: Other Algorithms [all...] |
/external/clang/test/CodeGenCXX/ |
const-init-cxx11.cpp | 274 constexpr int factorial(int n) { function in namespace:NonLiteralConstexpr 275 return n ? factorial(n-1) * n : 1; 280 constexpr NonTrivialDtor() : n(factorial(5)), p(&n) {}
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_random.py | 87 def factorial(n): function in function:TestBasicOps.test_sample_distribution 90 expected = factorial(n) // factorial(n-k)
|
test_math.py | 380 self.assertEqual(math.factorial(cast(x)), fact(x), (x, fact(x), math.factorial(x))) 381 self.assertRaises(ValueError, math.factorial, -1) 382 self.assertRaises(ValueError, math.factorial, math.pi) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_random.py | 87 def factorial(n): function in function:TestBasicOps.test_sample_distribution 90 expected = factorial(n) // factorial(n-k)
|
test_math.py | 380 self.assertEqual(math.factorial(cast(x)), fact(x), (x, fact(x), math.factorial(x))) 381 self.assertRaises(ValueError, math.factorial, -1) 382 self.assertRaises(ValueError, math.factorial, math.pi) [all...] |
/external/chromium_org/third_party/gtk+/gtk/ |
compose-parse.py | 118 def factorial(n): function 122 return n * factorial(n-1) 915 counter_combinations += factorial(len(decomposedsequence)-1) 919 counter_combinations_greek += factorial(len(decomposedsequence)-1) [all...] |
/external/guava/guava/src/com/google/common/math/ |
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) {
|
/external/chromium_org/ui/chromeos/ |
touch_exploration_controller_unittest.cc | 67 int Factorial(int n) { 72 return n * Factorial(n - 1); [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/ |
math_fwd.hpp | 343 // Factorial functions. 348 RT factorial(unsigned int); 350 RT factorial(unsigned int, const Policy& pol); [all...] |
/external/clang/utils/ABITest/ |
TypeGen.py | 222 # Factorial
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
dc.sed | 10 # 20 factorial: echo "[d1-d1<!*]s! 20l!xp" | dc.sed
|
/packages/apps/Calculator/ |
arity-2.1.2.jar | |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/doc/mpfr/ |
NEWS | 255 base-2 exponential and logarithm, base-10 logarithm, expm1, factorial,
|
/external/llvm/lib/Transforms/Scalar/ |
TailRecursionElimination.cpp | 20 // accumulator variable, thus compiling the typical naive factorial or [all...] |