Home
last modified time | relevance | path

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

/external/webrtc/src/common_audio/signal_processing/
Dcomplex_fft.c161 int i, j, l, k, istep, n, m; in WebRtcSpl_ComplexFFT() local
181 istep = l << 1; in WebRtcSpl_ComplexFFT()
194 for (i = m; i < n; i += istep) in WebRtcSpl_ComplexFFT()
214 l = istep; in WebRtcSpl_ComplexFFT()
223 istep = l << 1; in WebRtcSpl_ComplexFFT()
243 for (i = m; i < n; i += istep) in WebRtcSpl_ComplexFFT()
281 l = istep; in WebRtcSpl_ComplexFFT()
289 int i, j, l, k, istep, n, m, scale, shift; in WebRtcSpl_ComplexIFFT() local
327 istep = l << 1; in WebRtcSpl_ComplexIFFT()
343 for (i = m; i < n; i += istep) in WebRtcSpl_ComplexIFFT()
[all …]
/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/bluetooth/bluez/audio/
Dctl_bluetooth.c132 long *imin, long *imax, long *istep) in bluetooth_get_integer_info() argument
136 *istep = 1; in bluetooth_get_integer_info()
/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()