HomeSort by relevance Sort by last modified time
    Searched refs:istep (Results 1 - 9 of 9) sorted by null

  /external/webrtc/src/common_audio/signal_processing/
complex_fft.c 161 int i, j, l, k, istep, n, m; local
181 istep = l << 1;
194 for (i = m; i < n; i += istep)
214 l = istep;
223 istep = l << 1;
243 for (i = m; i < n; i += istep)
281 l = istep;
289 int i, j, l, k, istep, n, m, scale, shift; local
327 istep = l << 1;
343 for (i = m; i < n; i += istep)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
random.py 220 istep = int(step)
221 if istep != step:
223 if istep > 0:
224 n = (width + istep - 1) // istep
225 elif istep < 0:
226 n = (width + istep + 1) // istep
234 return istart + istep*self._randbelow(n)
235 return istart + istep*int(self.random() * n
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
random.py 220 istep = int(step)
221 if istep != step:
223 if istep > 0:
224 n = (width + istep - 1) // istep
225 elif istep < 0:
226 n = (width + istep + 1) // istep
234 return istart + istep*self._randbelow(n)
235 return istart + istep*int(self.random() * n
    [all...]
  /external/opencv/cv/src/
cvsegmentation.cpp 107 int mstep, istep; local
170 istep = src->step;
190 img += istep; mask += mstep;
210 c_diff( ptr, ptr - istep, t );
215 c_diff( ptr, ptr + istep, t );
219 ws_push( idx, i*mstep + j, i*istep + j*3 );
301 c_diff( ptr, ptr - istep, t );
302 ws_push( t, mofs - mstep, iofs - istep );
309 ws_push( t, mofs + mstep, iofs + istep );
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
control_external.h 161 long *imin, long *imax, long *istep);
166 int64_t *imin, int64_t *imax, int64_t *istep);
control.h 410 int snd_ctl_elem_add_integer(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long imin, long imax, long istep);
411 int snd_ctl_elem_add_integer64(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long long imin, long long imax, long long istep);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
control_external.h 161 long *imin, long *imax, long *istep);
166 int64_t *imin, int64_t *imax, int64_t *istep);
control.h 418 int snd_ctl_elem_add_integer(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long imin, long imax, long istep);
419 int snd_ctl_elem_add_integer64(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long long imin, long long imax, long long istep);
  /external/opencv/cxcore/src/
cxutils.cpp 1065 int istep = idx ? idx->step/sizeof(int) : 0; local
    [all...]

Completed in 889 milliseconds