OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:oddfac
(Results
1 - 1
of
1
) sorted by null
/external/clang/test/SemaCXX/
constexpr-factorial.cpp
3
constexpr unsigned
oddfac
(unsigned n) {
function
4
return n == 1 ? 1 : n *
oddfac
(n-2);
6
constexpr unsigned k =
oddfac
(123);
Completed in 3780 milliseconds