HomeSort by relevance Sort by last modified time
    Searched defs:fact2 (Results 1 - 4 of 4) sorted by null

  /external/valgrind/main/memcheck/tests/
wrap3.c 9 static int fact2 ( int n );
17 if (n == 0) return 1; else return mul(n, fact2(n-1));
19 int fact2 ( int n ) function
36 int I_WRAP_SONAME_FNNAME_ZU(NONE,fact2) ( int n )
wrap4.c 13 static int fact2 ( int n );
21 if (n == 0) return 1; else return mul(n, fact2(n-1));
23 int fact2 ( int n ) function
37 if (n >= 3) r += fact2(2);
41 int I_WRAP_SONAME_FNNAME_ZU(NONE,fact2) ( int n )
wrap5.c 33 static int fact2 ( int n );
42 if (n == 0) return 1; else return mul(n, fact2(n-1));
44 int fact2 ( int n ) function
61 if (n >= 3) r += fact2(2);
65 int I_WRAP_SONAME_FNNAME_ZU(NONE,fact2) ( int n )
wrap8.c 40 static int fact2 ( int n );
49 if (n == 0) return 1; else return mul(n, fact2(n-1));
51 int fact2 ( int n ) function
68 if (n >= 3) r += fact2(2);
72 int I_WRAP_SONAME_FNNAME_ZU(NONE,fact2) ( int n )

Completed in 35 milliseconds