Home
last modified time | relevance | path

Searched refs:istep (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/webrtc/common_audio/signal_processing/
Dcomplex_fft.c31 int i, j, l, k, istep, n, m; in WebRtcSpl_ComplexFFT() local
51 istep = l << 1; in WebRtcSpl_ComplexFFT()
64 for (i = m; i < n; i += istep) in WebRtcSpl_ComplexFFT()
82 l = istep; in WebRtcSpl_ComplexFFT()
91 istep = l << 1; in WebRtcSpl_ComplexFFT()
110 for (i = m; i < n; i += istep) in WebRtcSpl_ComplexFFT()
152 l = istep; in WebRtcSpl_ComplexFFT()
160 size_t i, j, l, istep, n, m; in WebRtcSpl_ComplexIFFT() local
199 istep = l << 1; in WebRtcSpl_ComplexIFFT()
215 for (i = m; i < n; i += istep) in WebRtcSpl_ComplexIFFT()
[all …]
Dcomplex_fft_mips.c26 int istep = 0; in WebRtcSpl_ComplexFFT() local
139 [m] "=&r" (m), [istep] "=&r" (istep), [l] "=&r" (l), [k] "=&r" (k), in WebRtcSpl_ComplexFFT()
153 int istep = 0, n = 0, m = 0; in WebRtcSpl_ComplexIFFT() local
316 [istep] "=&r" (istep), [wi] "=&r" (wi), [wr] "=&r" (wr), [l] "=&r" (l), in WebRtcSpl_ComplexIFFT()
/external/opencv/cv/src/
Dcvsegmentation.cpp107 int mstep, istep; in cvWatershed() local
170 istep = src->step; in cvWatershed()
190 img += istep; mask += mstep; in cvWatershed()
210 c_diff( ptr, ptr - istep, t ); in cvWatershed()
215 c_diff( ptr, ptr + istep, t ); in cvWatershed()
219 ws_push( idx, i*mstep + j, i*istep + j*3 ); in cvWatershed()
301 c_diff( ptr, ptr - istep, t ); in cvWatershed()
302 ws_push( t, mofs - mstep, iofs - istep ); in cvWatershed()
309 ws_push( t, mofs + mstep, iofs + istep ); in cvWatershed()
/external/opencv3/modules/imgproc/src/
Dsegmentation.cpp165 int istep = int(src.step/sizeof(img[0])); in watershed() local
185 img += istep; mask += mstep; in watershed()
206 c_diff( ptr, ptr - istep, t ); in watershed()
211 c_diff( ptr, ptr + istep, t ); in watershed()
217 ws_push( idx, i*mstep + j, i*istep + j*3 ); in watershed()
310 c_diff( ptr, ptr - istep, t ); in watershed()
311 ws_push( t, mofs - mstep, iofs - istep ); in watershed()
317 c_diff( ptr, ptr + istep, t ); in watershed()
318 ws_push( t, mofs + mstep, iofs + istep ); in watershed()
Ddrawing.cpp174 size_t istep = img.step; in LineIterator() local
193 ptr = (uchar*)(img.data + pt1.y * istep + pt1.x * bt_pix0); in LineIterator()
197 istep = (istep ^ s) - s; in LineIterator()
206 bt_pix ^= istep & s; in LineIterator()
207 istep ^= bt_pix & s; in LineIterator()
208 bt_pix ^= istep & s; in LineIterator()
217 plusStep = (int)istep; in LineIterator()
228 plusStep = (int)istep - bt_pix; in LineIterator()
Dimgwarp.cpp6309 int step = (int)(matM.step/sizeof(M[0])), istep = (int)(_iM.step/sizeof(iM[0])); in invertAffineTransform() local
6318 iM[istep] = (float)A21; iM[istep+1] = (float)A22; iM[istep+2] = (float)b2; in invertAffineTransform()
6324 int step = (int)(matM.step/sizeof(M[0])), istep = (int)(_iM.step/sizeof(iM[0])); in invertAffineTransform() local
6333 iM[istep] = A21; iM[istep+1] = A22; iM[istep+2] = b2; in invertAffineTransform()
/external/opencv3/modules/ml/src/
Ddata.cpp442 int istep = data.isContinuous() ? 1 : (int)data.step1(); in preprocessCategorical() local
450 if( fdata[i*istep] == MISSED_VAL ) in preprocessCategorical()
454 idata[i] = cvRound(fdata[i*istep]); in preprocessCategorical()
455 CV_Assert( (float)idata[i] == fdata[i*istep] ); in preprocessCategorical()
458 istep = 1; in preprocessCategorical()
464 std::sort(idx, idx + n, CmpByIdx(idata, istep)); in preprocessCategorical()
468 clscount += idata[idx[i]*istep] != idata[idx[i-1]*istep]; in preprocessCategorical()
471 int prev = ~idata[idx[0]*istep]; in preprocessCategorical()
480 int l = idata[idx[i]*istep]; in preprocessCategorical()
/external/opencv/cxcore/src/
Dcxutils.cpp1065 int istep = idx ? idx->step/sizeof(int) : 0; in cvSort() local
1132 idxptr += istep*(src->rows - 1); in cvSort()
1133 istep = -istep; in cvSort()
1147 icvCopy1D( tidx, 1, idxptr + i, istep, len, sizeof(int) ); in cvSort()
1180 int* idx_ = idx->data.i + istep*i; in cvSort()