Home
last modified time | relevance | path

Searched refs:j2 (Results 1 – 25 of 44) sorted by relevance

12

/external/webrtc/src/modules/audio_processing/aec/
Daec_rdft.c318 int j0, j1, j2, j3, k, k1, k2, m2; in cftmdl_128_C() local
324 j2 = j0 + 16; in cftmdl_128_C()
330 x2r = a[j2 + 0] + a[j3 + 0]; in cftmdl_128_C()
331 x2i = a[j2 + 1] + a[j3 + 1]; in cftmdl_128_C()
332 x3r = a[j2 + 0] - a[j3 + 0]; in cftmdl_128_C()
333 x3i = a[j2 + 1] - a[j3 + 1]; in cftmdl_128_C()
336 a[j2 + 0] = x0r - x2r; in cftmdl_128_C()
337 a[j2 + 1] = x0i - x2i; in cftmdl_128_C()
346 j2 = j0 + 16; in cftmdl_128_C()
352 x2r = a[j2 + 0] + a[j3 + 0]; in cftmdl_128_C()
[all …]
Daec_rdft_sse2.c244 int j1, j2, k1, k2; in rftfsub_128_SSE2() local
253 for (j1 = 1, j2 = 2; j2 + 7 < 64; j1 += 4, j2 += 8) { in rftfsub_128_SSE2()
262 const __m128 a_j2_0 = _mm_loadu_ps(&a[0 + j2]); // 2, 3, 4, 5, in rftfsub_128_SSE2()
263 const __m128 a_j2_4 = _mm_loadu_ps(&a[4 + j2]); // 6, 7, 8, 9, in rftfsub_128_SSE2()
264 const __m128 a_k2_0 = _mm_loadu_ps(&a[122 - j2]); // 120, 121, 122, 123, in rftfsub_128_SSE2()
265 const __m128 a_k2_4 = _mm_loadu_ps(&a[126 - j2]); // 124, 125, 126, 127, in rftfsub_128_SSE2()
310 _mm_storeu_ps(&a[0 + j2], a_j2_0n); in rftfsub_128_SSE2()
311 _mm_storeu_ps(&a[4 + j2], a_j2_4n); in rftfsub_128_SSE2()
312 _mm_storeu_ps(&a[122 - j2], a_k2_0n); in rftfsub_128_SSE2()
313 _mm_storeu_ps(&a[126 - j2], a_k2_4n); in rftfsub_128_SSE2()
[all …]
/external/eigen/Eigen/src/Core/products/
DSelfadjointMatrixMatrix.h88 for(Index j2=0; j2<k2; j2+=nr) in operator() local
92 blockB[count+0] = rhs(k,j2+0); in operator()
93 blockB[count+1] = rhs(k,j2+1); in operator()
96 blockB[count+2] = rhs(k,j2+2); in operator()
97 blockB[count+3] = rhs(k,j2+3); in operator()
104 for(Index j2=k2; j2<(std::min)(k2+rows,packet_cols); j2+=nr) in operator() local
108 for(Index k=k2; k<j2; k++) in operator()
110 blockB[count+0] = conj(rhs(j2+0,k)); in operator()
111 blockB[count+1] = conj(rhs(j2+1,k)); in operator()
114 blockB[count+2] = conj(rhs(j2+2,k)); in operator()
[all …]
DTriangularSolverMatrix.h99 for(Index j2=0; j2<cols; j2+=subcols)
101 Index actual_cols = (std::min)(cols-j2,subcols);
115 for (Index j=j2; j<j2+actual_cols; ++j)
144 …pack_rhs(blockB+actual_kc*j2, &other(startBlock,j2), otherStride, actualPanelWidth, actual_cols, a…
153 …gebp_kernel(&other(startTarget,j2), otherStride, blockA, blockB+actual_kc*j2, lengthTarget, actual…
233 for (Index j2=0; j2<actual_kc; j2+=SmallPanelWidth)
235 Index actualPanelWidth = std::min<Index>(actual_kc-j2, SmallPanelWidth);
236 Index actual_j2 = actual_k2 + j2;
237 Index panelOffset = IsLower ? j2+actualPanelWidth : 0;
238 Index panelLength = IsLower ? actual_kc-j2-actualPanelWidth : j2;
[all …]
DTriangularMatrixMatrix.h288 for (Index j2=0; j2<actual_kc; j2+=SmallPanelWidth)
290 Index actualPanelWidth = std::min<Index>(actual_kc-j2, SmallPanelWidth);
291 Index actual_j2 = actual_k2 + j2;
292 Index panelOffset = IsLower ? j2+actualPanelWidth : 0;
293 Index panelLength = IsLower ? actual_kc-j2-actualPanelWidth : j2;
295 pack_rhs_panel(blockB+j2*actual_kc,
309 pack_rhs_panel(blockB+j2*actual_kc,
312 actual_kc, j2);
324 for (Index j2=0; j2<actual_kc; j2+=SmallPanelWidth)
326 Index actualPanelWidth = std::min<Index>(actual_kc-j2, SmallPanelWidth);
[all …]
DGeneralBlockPanelKernel.h550 for(Index j2=0; j2<packet_cols; j2+=nr)
552 traits.unpackRhs(depth*nr,&blockB[j2*strideB+offsetB*nr],unpackedB);
573 ResScalar* r0 = &res[(j2+0)*resStride + i];
931 ResScalar* r0 = &res[(j2+0)*resStride + i];
959 const RhsScalar* blB = &blockB[j2*strideB+offsetB*nr];
992 res[(j2+0)*resStride + i] += alpha*C0;
993 res[(j2+1)*resStride + i] += alpha*C1;
994 if(nr==4) res[(j2+2)*resStride + i] += alpha*C2;
995 if(nr==4) res[(j2+3)*resStride + i] += alpha*C3;
1000 for(Index j2=packet_cols; j2<cols; j2++)
[all …]
DGeneralMatrixMatrixTriangular.h109 Index j2 = i2+actual_mc;
110 …gebp(res+resStride*j2+i2, resStride, blockA, blockB+actual_kc*j2, actual_mc, actual_kc, (std::max)…
/external/svox/pico/lib/
Dpicofftsg.c1707 picoos_int32 i, i0, j, j0, j1, j2, j3, m, mh; in cftb1st() local
1715 j2 = j1 + m; in cftb1st()
1716 j3 = j2 + m; in cftb1st()
1717 x0r = a[0] + a[j2]; in cftb1st()
1718 x0i = -a[1] - a[j2 + 1]; in cftb1st()
1719 x1r = a[0] - a[j2]; in cftb1st()
1720 x1i = -a[1] + a[j2 + 1]; in cftb1st()
1729 a[j2] = x1r + x3i; in cftb1st()
1730 a[j2 + 1] = x1i + x3r; in cftb1st()
1759 j2 = j1 + m; in cftb1st()
[all …]
/external/webrtc/src/modules/audio_processing/utility/
Dfft4g.c904 int j, j1, j2, j3, l; in cftfsub() local
919 j2 = j1 + l; in cftfsub()
920 j3 = j2 + l; in cftfsub()
925 x2r = a[j2] + a[j3]; in cftfsub()
926 x2i = a[j2 + 1] + a[j3 + 1]; in cftfsub()
927 x3r = a[j2] - a[j3]; in cftfsub()
928 x3i = a[j2 + 1] - a[j3 + 1]; in cftfsub()
931 a[j2] = x0r - x2r; in cftfsub()
932 a[j2 + 1] = x0i - x2i; in cftfsub()
954 int j, j1, j2, j3, l; in cftbsub() local
[all …]
/external/eigen/Eigen/src/LU/
DInverse.h121 j2 = (j+2) % 3
123 return m.coeff(i1, j1) * m.coeff(i2, j2)
124 - m.coeff(i1, j2) * m.coeff(i2, j1);
189 (const MatrixBase<Derived>& matrix, int i1, int i2, int i3, int j1, int j2, int j3)
192 * (matrix.coeff(i2,j2) * matrix.coeff(i3,j3) - matrix.coeff(i2,j3) * matrix.coeff(i3,j2));
203 j2 = (j+2) % 4,
206 return general_det3_helper(matrix, i1, i2, i3, j1, j2, j3)
207 + general_det3_helper(matrix, i2, i3, i1, j1, j2, j3)
208 + general_det3_helper(matrix, i3, i1, i2, j1, j2, j3);
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
Dp14.cpp14 extern S j2;
19 N::S N::j2(i);
/external/llvm/test/Transforms/LoopDeletion/
Ddcetest.ll11 %j2 = phi i32 [ %j4, %BB7 ], [ 1, %BB1 ] ; <i32> [#uses=2]
17 %jcond = icmp slt i32 %j2, 20 ; <i1> [#uses=1]
21 ret i32 %j2
/external/llvm/test/Transforms/SCCP/
Dsccptest.ll29 %j2 = phi i32 [ %j4, %BB7 ], [ 1, %BB1 ]
34 %jcond = icmp slt i32 %j2, 20
39 ret i32 %j2
/external/eigen/test/
Dproduct_extra.cpp94 Index j2 = internal::random<Index>(0,m1.cols()-1); in product_extra() local
96 …VERIFY_IS_APPROX(m1.col(j2).adjoint() * m1.block(0,j,m1.rows(),c), m1.col(j2).adjoint().eval() * m… in product_extra()
/external/qemu/distrib/sdl-1.2.15/
DREADME.ANDROID7 make -j2
/external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
Dp3-0x.cpp15 int &j2 = g2(i); variable
/external/clang/test/SemaCXX/
Ddr1301.cpp60 int j2 = J().f(); // ok variable
Daddress-of-temporary.cpp48 void j2() { (void)S { A{} }; } in j2() function
/external/eigen/unsupported/Eigen/src/Splines/
DSpline.h402 DenseIndex rk,pk,j1,j2; in basisFunctionDerivativesImpl() local
414 if (r-1 <= pk) j2 = k-1; in basisFunctionDerivativesImpl()
415 else j2 = p-r; in basisFunctionDerivativesImpl()
417 for (j=j1; j<=j2; ++j) in basisFunctionDerivativesImpl()
/external/icu4c/stubdata/
Dreadme.txt26 e. make -j2
76 5. make -j2 check
/external/eigen/doc/
DAsciiQuickReference.txt62 R.col(j1).swap(mat1.col(j2)); // R(:, [j1 j2]) = R(:, [j2, j1])
/external/opencv/cv/src/
Dcvmorph.cpp424 int j1 = 0, j2 = 0, jx, t = 0; in init_binary_element() local
427 j2 = cols; in init_binary_element()
429 j1 = anchor.x, j2 = j1 + 1; in init_binary_element()
437 j2 = MIN( c + dx + 1, cols ); in init_binary_element()
450 if( jx == j2 ) in init_binary_element()
453 jx = j2, t = 1; in init_binary_element()
Dcvinpaint.cpp210 float FastMarching_solve(int i1,int j1,int i2,int j2, const CvMat* f, const CvMat* t) in FastMarching_solve() argument
214 a22=CV_MAT_ELEM(*t,float,i2,j2); in FastMarching_solve()
218 if( CV_MAT_ELEM(*f,uchar,i2,j2) != INSIDE ) in FastMarching_solve()
225 else if( CV_MAT_ELEM(*f,uchar,i2,j2) != INSIDE ) in FastMarching_solve()
/external/llvm/test/Analysis/BasicAA/
Dgep-alias.ll141 %j2 = shl i32 %j, 2
144 %P4 = getelementptr [4 x i8]* %P, i32 0, i32 %j2
/external/qemu/docs/
DANDROID-KERNEL.TXT58 make -j2 # build it

12