Home
last modified time | relevance | path

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

123

/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] = numext::conj(rhs(j2+0,k)); in operator()
111 blockB[count+1] = numext::conj(rhs(j2+1,k)); in operator()
114 blockB[count+2] = numext::conj(rhs(j2+2,k)); in operator()
[all …]
DTriangularSolverMatrix.h106 for(Index j2=0; j2<cols; j2+=subcols)
108 Index actual_cols = (std::min)(cols-j2,subcols);
122 for (Index j=j2; j<j2+actual_cols; ++j)
151 …pack_rhs(blockB+actual_kc*j2, &other(startBlock,j2), otherStride, actualPanelWidth, actual_cols, a…
160 …gebp_kernel(&other(startTarget,j2), otherStride, blockA, blockB+actual_kc*j2, lengthTarget, actual…
246 for (Index j2=0; j2<actual_kc; j2+=SmallPanelWidth)
248 Index actualPanelWidth = std::min<Index>(actual_kc-j2, SmallPanelWidth);
249 Index actual_j2 = actual_k2 + j2;
250 Index panelOffset = IsLower ? j2+actualPanelWidth : 0;
251 Index panelLength = IsLower ? actual_kc-j2-actualPanelWidth : j2;
[all …]
DTriangularMatrixMatrix.h313 for (Index j2=0; j2<actual_kc; j2+=SmallPanelWidth)
315 Index actualPanelWidth = std::min<Index>(actual_kc-j2, SmallPanelWidth);
316 Index actual_j2 = actual_k2 + j2;
317 Index panelOffset = IsLower ? j2+actualPanelWidth : 0;
318 Index panelLength = IsLower ? actual_kc-j2-actualPanelWidth : j2;
320 pack_rhs_panel(blockB+j2*actual_kc,
334 pack_rhs_panel(blockB+j2*actual_kc,
337 actual_kc, j2);
349 for (Index j2=0; j2<actual_kc; j2+=SmallPanelWidth)
351 Index actualPanelWidth = std::min<Index>(actual_kc-j2, SmallPanelWidth);
[all …]
DGeneralBlockPanelKernel.h557 for(Index j2=0; j2<packet_cols; j2+=nr)
559 traits.unpackRhs(depth*nr,&blockB[j2*strideB+offsetB*nr],unpackedB);
580 ResScalar* r0 = &res[(j2+0)*resStride + i];
938 ResScalar* r0 = &res[(j2+0)*resStride + i];
966 const RhsScalar* blB = &blockB[j2*strideB+offsetB*nr];
999 res[(j2+0)*resStride + i] += alpha*C0;
1000 res[(j2+1)*resStride + i] += alpha*C1;
1001 if(nr==4) res[(j2+2)*resStride + i] += alpha*C2;
1002 if(nr==4) res[(j2+3)*resStride + i] += alpha*C3;
1007 for(Index j2=packet_cols; j2<cols; j2++)
[all …]
DGeneralMatrixMatrixTriangular.h112 Index j2 = i2+actual_mc;
113 …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/mesa3d/src/mesa/program/
Dprog_noise.c353 int i2, j2, k2; /* Offsets for third corner of simplex in (i,j,k) coords */ in _mesa_noise3() local
362 j2 = 1; in _mesa_noise3()
370 j2 = 0; in _mesa_noise3()
378 j2 = 0; in _mesa_noise3()
388 j2 = 1; in _mesa_noise3()
396 j2 = 1; in _mesa_noise3()
404 j2 = 1; in _mesa_noise3()
419 y2 = y0 - j2 + 2.0f * G3; in _mesa_noise3()
455 t2 * t2 * grad3(perm[ii + i2 + perm[jj + j2 + perm[kk + k2]]], x2, in _mesa_noise3()
526 int i2, j2, k2, l2; /* The integer offsets for the third simplex corner */ in _mesa_noise4() local
[all …]
/external/eigen/Eigen/src/LU/
DInverse.h123 j2 = (j+2) % 3
125 return m.coeff(i1, j1) * m.coeff(i2, j2)
126 - m.coeff(i1, j2) * m.coeff(i2, j1);
192 (const MatrixBase<Derived>& matrix, int i1, int i2, int i3, int j1, int j2, int j3)
195 * (matrix.coeff(i2,j2) * matrix.coeff(i3,j3) - matrix.coeff(i2,j3) * matrix.coeff(i3,j2));
206 j2 = (j+2) % 4,
209 return general_det3_helper(matrix, i1, i2, i3, j1, j2, j3)
210 + general_det3_helper(matrix, i2, i3, i1, j1, j2, j3)
211 + general_det3_helper(matrix, i3, i1, i2, j1, j2, j3);
/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/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
Dp14.cpp14 extern S j2;
19 N::S N::j2(i);
/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/openssh/openbsd-compat/
Dchacha_private.h92 u32 j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, j15; in chacha_encrypt_bytes() local
101 j2 = x->input[2]; in chacha_encrypt_bytes()
125 x2 = j2; in chacha_encrypt_bytes()
151 x2 = PLUS(x2,j2); in chacha_encrypt_bytes()
/external/openssh/
Dchacha.c93 u32 j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, j15; in chacha_encrypt_bytes() local
102 j2 = x->input[2]; in chacha_encrypt_bytes()
126 x2 = j2; in chacha_encrypt_bytes()
152 x2 = PLUS(x2,j2); in chacha_encrypt_bytes()
/external/ltrace/sysdeps/linux-gnu/arm/
Dtrace.c447 const unsigned j2 = BIT(inst2, 11); in thumb_get_next_pcs() local
451 offset ^= ((!j2) << 22) | ((!j1) << 23); in thumb_get_next_pcs()
479 const unsigned j2 = BIT(inst2, 11); in thumb_get_next_pcs() local
482 + (j2 << 19) + (j1 << 18); in thumb_get_next_pcs()
/external/llvm/test/Analysis/DivergenceAnalysis/NVPTX/
Ddiverge.ll150 ; j1 = i1 + 1 ---> i3 = phi(j1, j2) <--- j2 = i2 + 2
169 %j2 = add i32 %i2, 2
172 %i3 = phi i32 [ %j1, %loop_entry_1 ], [ %j2, %loop_entry_2 ]
/external/eigen/test/
Dproduct_extra.cpp93 Index j2 = internal::random<Index>(0,m1.cols()-1); in product_extra() local
95 …VERIFY_IS_APPROX(m1.col(j2).adjoint() * m1.block(0,j,m1.rows(),c), m1.col(j2).adjoint().eval() * m… in product_extra()
/external/llvm/test/Analysis/BasicAA/
Dstruct-geps.ll93 …]]]* %st, i64 %i, i64 %j, i64 %k, i64 %i1, i64 %j1, i64 %k1, i64 %i2, i64 %j2, i64 %k2, i64 %i3, i…
95 …[1 x [1 x [1 x %struct]]], [1 x [1 x [1 x %struct]]]* %st, i64 %j, i64 %j1, i64 %j2, i64 %j3, i32 1
144 …ying_object_different_indices(%struct* %st, i64 %i1, i64 %j1, i64 %k1, i64 %i2, i64 %k2, i64 %j2) {
147 %y2 = getelementptr %struct, %struct* %st2, i64 %j2, i32 1
/external/eigen/unsupported/Eigen/src/Splines/
DSpline.h412 DenseIndex rk,pk,j1,j2; in basisFunctionDerivativesImpl() local
424 if (r-1 <= pk) j2 = k-1; in basisFunctionDerivativesImpl()
425 else j2 = p-r; in basisFunctionDerivativesImpl()
427 for (j=j1; j<=j2; ++j) in basisFunctionDerivativesImpl()
/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/valgrind/drd/scripts/
Ddownload-and-build-firefox61 make -s -j2 || exit $?

123