Home
last modified time | relevance | path

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

12345678910>>...26

/external/valgrind/memcheck/tests/
Dwrap8.stdout.exp2 in wrapper1-pre: fact(15)
3 in wrapper2-pre: fact(14)
4 in wrapper1-pre: fact(13)
5 in wrapper2-pre: fact(12)
6 in wrapper1-pre: fact(11)
7 in wrapper2-pre: fact(10)
8 in wrapper1-pre: fact(9)
9 in wrapper2-pre: fact(8)
10 in wrapper1-pre: fact(7)
11 in wrapper2-pre: fact(6)
[all …]
Dwrap5.stdout.exp2 in wrapper1-pre: fact(7)
3 in wrapper2-pre: fact(6)
4 in wrapper1-pre: fact(5)
5 in wrapper2-pre: fact(4)
6 in wrapper1-pre: fact(3)
7 in wrapper2-pre: fact(2)
8 in wrapper1-pre: fact(1)
9 in wrapper2-pre: fact(0)
10 in wrapper2-post: fact(0) = 1
11 in wrapper1-post: fact(1) = 1
[all …]
Dwrap4.stdout.exp2 in wrapper1-pre: fact(5)
3 in wrapper2-pre: fact(4)
4 in wrapper1-pre: fact(3)
5 in wrapper2-pre: fact(2)
6 in wrapper1-pre: fact(1)
7 in wrapper2-pre: fact(0)
8 in wrapper2-post: fact(0) = 1
9 in wrapper1-post: fact(1) = 1
10 in wrapper2-post: fact(2) = 2
11 in wrapper1-post: fact(3) = 6
[all …]
Dwrap8.stdout.exp-ppc642 in wrapper1-pre: fact(15)
3 in wrapper2-pre: fact(14)
4 in wrapper1-pre: fact(13)
5 in wrapper2-pre: fact(12)
6 in wrapper1-pre: fact(11)
7 in wrapper2-pre: fact(10)
8 in wrapper1-pre: fact(9)
9 in wrapper2-pre: fact(8)
10 in wrapper1-pre: fact(7)
11 in wrapper2-pre: fact(6)
[all …]
Dwrap2.stdout.exp1 computing fact(5)
2 in wrapper1-pre: fact(5)
3 in wrapper1-pre: fact(4)
4 in wrapper1-pre: fact(3)
5 in wrapper1-pre: fact(2)
6 in wrapper1-pre: fact(1)
7 in wrapper1-pre: fact(0)
8 in wrapper1-post: fact(0) = 1
9 in wrapper1-post: fact(1) = 1
10 in wrapper1-post: fact(2) = 2
[all …]
Dwrap3.stdout.exp2 in wrapper1-pre: fact(5)
3 in wrapper2-pre: fact(4)
4 in wrapper1-pre: fact(3)
5 in wrapper2-pre: fact(2)
6 in wrapper1-pre: fact(1)
7 in wrapper2-pre: fact(0)
8 in wrapper2-post: fact(0) = 1
9 in wrapper1-post: fact(1) = 1
10 in wrapper2-post: fact(2) = 2
11 in wrapper1-post: fact(3) = 6
[all …]
Dwrap2.c11 int fact ( int n ) in fact() function
13 if (n == 0) return 1; else return mul(n, fact(n-1)); in fact()
16 int I_WRAP_SONAME_FNNAME_ZU(NONE,fact) ( int n ) in I_WRAP_SONAME_FNNAME_ZU() argument
33 r = fact(5); in main()
/external/valgrind/cachegrind/tests/
Dwrap5.stdout.exp2 in wrapper1-pre: fact(7)
3 in wrapper2-pre: fact(6)
4 in wrapper1-pre: fact(5)
5 in wrapper2-pre: fact(4)
6 in wrapper1-pre: fact(3)
7 in wrapper2-pre: fact(2)
8 in wrapper1-pre: fact(1)
9 in wrapper2-pre: fact(0)
10 in wrapper2-post: fact(0) = 1
11 in wrapper1-post: fact(1) = 1
[all …]
/external/apache-http/src/org/apache/http/conn/routing/
DBasicRouteDirector.java69 public int nextStep(RouteInfo plan, RouteInfo fact) { in nextStep() argument
77 if ((fact == null) || (fact.getHopCount() < 1)) in nextStep()
80 step = proxiedStep(plan, fact); in nextStep()
82 step = directStep(plan, fact); in nextStep()
112 protected int directStep(RouteInfo plan, RouteInfo fact) { in directStep() argument
114 if (fact.getHopCount() > 1) in directStep()
116 if (!plan.getTargetHost().equals(fact.getTargetHost())) in directStep()
125 if (plan.isSecure() != fact.isSecure()) in directStep()
130 !plan.getLocalAddress().equals(fact.getLocalAddress()) in directStep()
147 protected int proxiedStep(RouteInfo plan, RouteInfo fact) { in proxiedStep() argument
[all …]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dtransform.c19 double fact, phase; in WebRtcIsac_InitTransform() local
21 fact = PI / (FRAMESAMPLES_HALF); in WebRtcIsac_InitTransform()
26 phase += fact; in WebRtcIsac_InitTransform()
29 fact = PI * ((double) (FRAMESAMPLES_HALF - 1)) / ((double) FRAMESAMPLES_HALF); in WebRtcIsac_InitTransform()
30 phase = 0.5 * fact; in WebRtcIsac_InitTransform()
34 phase += fact; in WebRtcIsac_InitTransform()
46 double tmp1r, tmp1i, xr, xi, yr, yi, fact; in WebRtcIsac_Time2Spec() local
54 fact = 0.5 / sqrt(FRAMESAMPLES_HALF); in WebRtcIsac_Time2Spec()
58 tmpre[k] = (inre1[k] * tmp1r + inre2[k] * tmp1i) * fact; in WebRtcIsac_Time2Spec()
59 tmpim[k] = (inre2[k] * tmp1r - inre1[k] * tmp1i) * fact; in WebRtcIsac_Time2Spec()
[all …]
/external/eigen/unsupported/test/
Dlevenberg_marquardt.cpp434 double fact = 1./(1.+b[4]*x+b[5]*xx+b[6]*xxx); in df() local
435 fjac(i,0) = 1.*fact; in df()
436 fjac(i,1) = x*fact; in df()
437 fjac(i,2) = xx*fact; in df()
438 fjac(i,3) = xxx*fact; in df()
439 fact = - (b[0]+b[1]*x+b[2]*xx+b[3]*xxx) * fact * fact; in df()
440 fjac(i,4) = x*fact; in df()
441 fjac(i,5) = xx*fact; in df()
442 fjac(i,6) = xxx*fact; in df()
1206 double fact = 1./(1.+b[4]*x+b[5]*xx+b[6]*xxx); in df() local
[all …]
DNonLinearOptimization.cpp823 double fact = 1./(1.+b[4]*x+b[5]*xx+b[6]*xxx); in df() local
824 fjac(i,0) = 1.*fact; in df()
825 fjac(i,1) = x*fact; in df()
826 fjac(i,2) = xx*fact; in df()
827 fjac(i,3) = xxx*fact; in df()
828 fact = - (b[0]+b[1]*x+b[2]*xx+b[3]*xxx) * fact * fact; in df()
829 fjac(i,4) = x*fact; in df()
830 fjac(i,5) = xx*fact; in df()
831 fjac(i,6) = xxx*fact; in df()
1579 double fact = 1./(1.+b[4]*x+b[5]*xx+b[6]*xxx); in df() local
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DDfpMath.java294 Dfp fact = a.getOne(); in expInternal() local
299 fact = fact.divide(i); in expInternal()
300 y = y.add(x.multiply(fact)); in expInternal()
678 Dfp fact = a[0].getOne(); in sinInternal() local
685 fact = fact.divide((i-1)*i); // 1 over fact in sinInternal()
686 y = y.add(x.multiply(fact)); in sinInternal()
710 Dfp fact = one; in cosInternal() local
717 fact = fact.divide((i - 1) * i); // 1 over fact in cosInternal()
719 y = y.add(x.multiply(fact)); in cosInternal()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue143/
DGenericMapTest.java26 BeanWithMap fact = new BeanWithMap(); in testMap() local
27 GenericMap<Integer> shash = fact.getMap(); in testMap()
/external/python/cpython2/Demo/scripts/
Dfact.py11 def fact(n): function
46 print n, fact(n)
/external/skqp/tools/
DRegistry.h23 explicit Registry(T fact) : fFact(fact) { in Registry() argument
/external/skia/tools/
DRegistry.h23 explicit Registry(T fact) : fFact(fact) { in Registry() argument
/external/swiftshader/third_party/subzero/tests_lit/reader_tests/
Dcall.ll41 define internal i32 @fact(i32 %n) {
48 %call = tail call i32 @fact(i32 %sub)
56 ; CHECK-NEXT: define internal i32 @fact(i32 %n) {
62 ; CHECK-NEXT: %call = call i32 @fact(i32 %sub)
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dtransform_neon.c34 int32_t fact = 16921 << 5; in ComplexMulAndFindMaxNeon() local
35 int32x4_t factq = vdupq_n_s32(fact); in ComplexMulAndFindMaxNeon()
365 int32x4_t fact = vdupq_n_s32(factQ19); in PostShiftAndDivideAndDemodulateNeon() local
439 outre1_0 = vqdmulhq_s32(outre1_0, fact); in PostShiftAndDivideAndDemodulateNeon()
440 outre2_0 = vqdmulhq_s32(outre2_0, fact); in PostShiftAndDivideAndDemodulateNeon()
441 outre1_1 = vqdmulhq_s32(outre1_1, fact); in PostShiftAndDivideAndDemodulateNeon()
442 outre2_1 = vqdmulhq_s32(outre2_1, fact); in PostShiftAndDivideAndDemodulateNeon()
/external/skia/samplecode/
DSampleCode.cpp49 SkViewRegister::SkViewRegister(SkViewFactory* fact) : fFact(fact) { in SkViewRegister() argument
/external/skqp/samplecode/
DSampleCode.cpp49 SkViewRegister::SkViewRegister(SkViewFactory* fact) : fFact(fact) { in SkViewRegister() argument
/external/eigen/Eigen/src/IterativeLinearSolvers/
DIncompleteLUT.h362 Scalar fact = u(jj) / ki_it.value(); in factorize() local
365 if(abs(fact) <= m_droptol) in factorize()
375 Scalar prod = fact * ki_it.value(); in factorize()
401 u(len) = fact; in factorize()
/external/python/cpython2/Lib/test/
Dtest_itertools.py51 def fact(n): function
126 …self.assertEqual(len(result), 0 if r>n else fact(n) // fact(r) // fact(n-r)) # right number of com…
188 return fact(n+r-1) // fact(r) // fact(n-1)
274 … self.assertEqual(len(result), 0 if r>n else fact(n) // fact(n-r)) # right number of perms
311 self.assertEqual(len(cwr), (fact(n+r-1) // fact(r) // fact(n-1)) if n else (not r))
312 self.assertEqual(len(perm), 0 if r>n else fact(n) // fact(n-r))
313 self.assertEqual(len(comb), 0 if r>n else fact(n) // fact(r) // fact(n-r))
/external/llvm/docs/HistoricalNotes/
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
/external/swiftshader/third_party/LLVM/docs/HistoricalNotes/
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

12345678910>>...26