Home
last modified time | relevance | path

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

1234

/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_rdft.c311 int j0, j1, j2, j3, k, k1, k2, m2; in cftmdl_128_C() local
317 j2 = j0 + 16; in cftmdl_128_C()
323 x2r = a[j2 + 0] + a[j3 + 0]; in cftmdl_128_C()
324 x2i = a[j2 + 1] + a[j3 + 1]; in cftmdl_128_C()
325 x3r = a[j2 + 0] - a[j3 + 0]; in cftmdl_128_C()
326 x3i = a[j2 + 1] - a[j3 + 1]; in cftmdl_128_C()
329 a[j2 + 0] = x0r - x2r; in cftmdl_128_C()
330 a[j2 + 1] = x0i - x2i; in cftmdl_128_C()
339 j2 = j0 + 16; in cftmdl_128_C()
345 x2r = a[j2 + 0] + a[j3 + 0]; in cftmdl_128_C()
[all …]
Daec_rdft_sse2.c242 int j1, j2, k1, k2; in rftfsub_128_SSE2() local
251 for (j1 = 1, j2 = 2; j2 + 7 < 64; j1 += 4, j2 += 8) { in rftfsub_128_SSE2()
260 const __m128 a_j2_0 = _mm_loadu_ps(&a[0 + j2]); // 2, 3, 4, 5, in rftfsub_128_SSE2()
261 const __m128 a_j2_4 = _mm_loadu_ps(&a[4 + j2]); // 6, 7, 8, 9, in rftfsub_128_SSE2()
262 const __m128 a_k2_0 = _mm_loadu_ps(&a[122 - j2]); // 120, 121, 122, 123, in rftfsub_128_SSE2()
263 const __m128 a_k2_4 = _mm_loadu_ps(&a[126 - j2]); // 124, 125, 126, 127, in rftfsub_128_SSE2()
308 _mm_storeu_ps(&a[0 + j2], a_j2_0n); in rftfsub_128_SSE2()
309 _mm_storeu_ps(&a[4 + j2], a_j2_4n); in rftfsub_128_SSE2()
310 _mm_storeu_ps(&a[122 - j2], a_k2_0n); in rftfsub_128_SSE2()
311 _mm_storeu_ps(&a[126 - j2], a_k2_4n); in rftfsub_128_SSE2()
[all …]
Daec_rdft_neon.c190 int j1, j2; in rftfsub_128_neon() local
195 for (j1 = 1, j2 = 2; j2 + 7 < 64; j1 += 4, j2 += 8) { in rftfsub_128_neon()
204 float32x4x2_t a_j2_p = vld2q_f32(&a[0 + j2]); in rftfsub_128_neon()
206 const float32x4x2_t k2_0_4 = vld2q_f32(&a[122 - j2]); in rftfsub_128_neon()
244 vst2q_f32(&a[0 + j2], a_j2_p); in rftfsub_128_neon()
246 vst1q_f32(&a[122 - j2], a_k2_n.val[1]); in rftfsub_128_neon()
247 vst1q_f32(&a[126 - j2], a_k2_n.val[0]); in rftfsub_128_neon()
251 for (; j2 < 64; j1 += 1, j2 += 2) { in rftfsub_128_neon()
252 const int k2 = 128 - j2; in rftfsub_128_neon()
256 const float xr = a[j2 + 0] - a[k2 + 0]; in rftfsub_128_neon()
[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/webrtc/common_audio/
Dfft4g.c910 size_t j, j1, j2, j3, l; in cftfsub() local
925 j2 = j1 + l; in cftfsub()
926 j3 = j2 + l; in cftfsub()
931 x2r = a[j2] + a[j3]; in cftfsub()
932 x2i = a[j2 + 1] + a[j3 + 1]; in cftfsub()
933 x3r = a[j2] - a[j3]; in cftfsub()
934 x3i = a[j2 + 1] - a[j3 + 1]; in cftfsub()
937 a[j2] = x0r - x2r; in cftfsub()
938 a[j2 + 1] = x0i - x2i; in cftfsub()
960 size_t j, j1, j2, j3, l; in cftbsub() local
[all …]
/external/llvm/test/Transforms/StraightLineStrengthReduce/AMDGPU/
Dreassociate-geps-and-slsr-addrspace.ll20 %j2 = add nsw i32 %i2, 1023
21 %tmp5 = sext i32 %j2 to i64
47 %j2 = add nsw i32 %i2, 1024
48 %tmp5 = sext i32 %j2 to i64
74 %j2 = add nsw i32 %i2, 16383
75 %p2 = getelementptr inbounds float, float addrspace(3)* %arr, i32 %j2
87 ; CHECK: %j2 = add i32 %j1, %i
88 ; CHECK: getelementptr inbounds float, float addrspace(3)* %arr, i32 %j2
99 %j2 = add nsw i32 %i2, 16384
100 %p2 = getelementptr inbounds float, float addrspace(3)* %arr, i32 %j2
/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/minijail/test/
Dlibminijail_test.cpp126 minijail *j2 = minijail_new(); in main() local
127 minijail_change_uid(j2, 5 * kSystemUid); in main()
128 minijail_change_gid(j2, 5 * kSystemUid); in main()
129 minijail_enter(j2); in main()
/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/v8/test/cctest/compiler/
Dtest-jump-threading.cc661 int j2 = code.Jump(2); in TEST() local
668 CheckNop(code, j2); in TEST()
681 int j2 = code.Jump(2); in TEST() local
691 CheckNop(code, j2); in TEST()
710 int j2 = code.Jump(3); in TEST() local
717 CheckJump(code, j2, 3); in TEST()
733 int j2 = code.Jump(4); in TEST() local
744 CheckNop(code, j2); in TEST()
746 CheckJump(code, j2, 4); in TEST()
/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/autotest/client/deps/glbench/src/
Dutils.cc254 for (int j2 = 0; j2 < swath_height; j2++) { in CreateMesh() local
255 GLushort first = (j + j2) * (width + 1) + i; in CreateMesh()
/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/Transforms/StraightLineStrengthReduce/NVPTX/
Dreassociate-geps-and-slsr.ll47 %j2 = add nsw i32 %i2, 5
48 %p2 = getelementptr inbounds float, float* %arr, i32 %j2
/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/v8/test/mjsunit/regress/
Dregress-2825.js16 var j2 = 2;
/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/opencv3/modules/photo/src/
Dfast_nlmeans_denoising_invoker_commons.hpp166 static inline int calcDist(const Mat& m, int i1, int j1, int i2, int j2) in calcDist() argument
169 const T b = m.at<T>(i2, j2); in calcDist()
288 static inline int calcDist(const Mat& m, int i1, int j1, int i2, int j2) in calcDist() argument
291 const T b = m.at<T>(i2, j2); in calcDist()

1234