OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Factorial
(Results
1 - 5
of
5
) sorted by null
/external/google-breakpad/src/testing/gtest/samples/
sample1.cc
36
// Returns n! (the
factorial
of n). For negative n, n! is defined to be 1.
37
int
Factorial
(int n) {
/external/protobuf/gtest/samples/
sample1.cc
36
// Returns n! (the
factorial
of n). For negative n, n! is defined to be 1.
37
int
Factorial
(int n) {
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample1.cc
36
// Returns n! (the
factorial
of n). For negative n, n! is defined to be 1.
37
int
Factorial
(int n) {
/ndk/sources/third_party/googletest/googletest/samples/
sample1.cc
36
// Returns n! (the
factorial
of n). For negative n, n! is defined to be 1.
37
int
Factorial
(int n) {
/external/google-benchmark/test/
benchmark_test.cc
26
int BENCHMARK_NOINLINE
Factorial
(uint32_t n) {
27
return (n == 1) ? 1 : n *
Factorial
(n - 1);
55
fac_42 =
Factorial
(8);
Completed in 158 milliseconds