Home
last modified time | relevance | path

Searched refs:fact (Results 1 – 25 of 439) sorted by relevance

12345678910>>...18

/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dexplicit53.C3 template <int a> inline int fact ();
4 template <> inline int fact<1> ();
6 template <int a> inline int fact () in fact() function
8 return a * fact<a-1> (); in fact()
11 template <> inline int fact<1> ()
18 if (fact<3> () != 6 || fact<1> () != 1 in main()
19 || fact<3> () != 6 || fact<1> () != 1 || fact<1+0> () != 1) in main()
H A Dexplicit54.C5 template <int a> inline int fact () in fact() function
10 template <> inline int fact<1> ()
17 return a*fact<a-1>(); in fact2()
27 if (fact<3> () != 6 || fact<1> () != 1 in main()
28 || fact<3> () != 6 || fact<1> () != 1 || fact<1+0> () != 1) in main()
33 if (fact2<4> () != 24 || fact<4> () != 24) in main()
H A Dexplicit52.C3 template <int a> inline int fact () in fact() function
5 return a * fact<a-1> (); in fact()
8 template <> inline int fact<1> ()
15 if (fact<3> () != 6 || fact<1> () != 1 in main()
16 || fact<3> () != 6 || fact<1> () != 1 || fact<1+0> () != 1) in main()
H A Dexplicit51.C3 template <int a> int fact () in fact() function
8 template <> int fact<1> ()
15 if (fact<3> () != 0 || fact<1> () != 1 in main()
16 || fact<3> () != 0 || fact<1> () != 1 || fact<1+0> () != 1) in main()
/openbsd/games/factor/
H A Dfactor.c158 const ubig *fact; /* The factor found. */ in pr_fact() local
171 for (fact = &prime[0]; val > 1; ++fact) { in pr_fact()
174 if (val % (long)*fact == 0) in pr_fact()
176 } while (++fact <= pr_limit); in pr_fact()
179 if (fact > pr_limit) { in pr_fact()
189 (void)printf(" %lu", (unsigned long) *fact); in pr_fact()
190 val /= (long)*fact; in pr_fact()
191 } while ((val % (long)*fact) == 0); in pr_fact()
/openbsd/gnu/usr.bin/perl/lib/perl5db/t/
H A Dfact6 sub fact {
9 return $n * fact($n - 1);
14 fact(5);
H A Dtest-l-statement-26 sub fact {
9 return $n * fact($n - 1);
23 fact(5);
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D980414-1.c50 double fact (double x) in fact() function
61 y = fact (46.2); in main()
/openbsd/gnu/usr.bin/perl/t/op/
H A Deval.t36 $fact = 'if ($foo <= 1) {1;} else {push(@x,$foo--); (eval $fact) * pop(@x);}';
37 $ans = eval $fact;
41 $fact = 'local($foo)=$foo; $foo <= 1 ? 1 : $foo-- * (eval $fact);';
42 $ans = eval $fact;
/openbsd/gnu/llvm/llvm/docs/HistoricalNotes/
H A D2001-06-20-.NET-Differences.txt7 includes full information about classes and inheritance. In fact, I just
20 link-time code generation. In fact, he said that the .o file was nearly
H A D2001-02-06-TypeNotationDebateResp1.txt15 But in fact, if you read the entire answer carefully, he came to the same
27 > very simple and straightforward, which C is NOT). In fact, I would assert
H A D2001-02-06-TypeNotationDebateResp4.txt1 > But in fact, if you read the entire answer carefully, he came to the same
20 > > very simple and straightforward, which C is NOT). In fact, I would assert
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D981223-1.x7 # does in fact add the extra nop.
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D981130-1.x8 # but this would disguise the fact that there is a problem. Instead we use
/openbsd/gnu/llvm/clang/utils/ABITest/
H A DTypeGen.py229 def fact(n): function
238 return fact(n) // (fact(k) * fact(n - k))
/openbsd/gnu/usr.bin/perl/cpan/Memoize/t/
H A Dthreadsafe.t36 is $got->{V}, 1+$cached, '... and does in fact unmemoize the function';
H A Dunmemoize.t16 is \&u, $sub, '... and does in fact unmemoize it';
/openbsd/gnu/usr.bin/perl/ext/SDBM_File/
H A DCHANGES16 This may look like a micro-performance tweak (maybe it is), but in fact,
/openbsd/gnu/usr.bin/perl/dist/Carp/
H A DChanges17 and in fact no 1.47 should ever see the wild.
25 and in fact no 1.47 should ever see the wild.
/openbsd/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A Dsearch26.t7 # "kleene" rhymes with "zany". It's a fact!
/openbsd/gnu/usr.bin/perl/lib/
H A Dperl5db.t1418 6\s+sub\ fact\ \{\n
1421 9:\s+return\ \$n\ \*\ fact\(\$n\ -\ 1\);
1426 DB<1>\s+l\ fact\n
1452 ^main::fact\([^\n]*?:7\):\n
2884 't fact(3)',
2887 prog => '../lib/perl5db/t/fact',
/openbsd/gnu/llvm/compiler-rt/lib/dfsan/
H A Ddfsan_flags.inc26 "(e.g., when comparing strings, ignore the fact that the output of the"
/openbsd/gnu/gcc/gcc/config/xtensa/
H A Dcrtn.asm29 # fact return. Users may put any desired instructions in those sections.
/openbsd/sys/dev/usb/
H A Dutpms.c626 detect_pos(int *sensors, int n_sensors, int threshold, int fact, in detect_pos() argument
647 *pos_ret = w * fact / s; in detect_pos()
/openbsd/gnu/gcc/gcc/config/score/
H A Dcrtn.asm36 # fact return.

12345678910>>...18