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

  /external/webrtc/webrtc/common_audio/signal_processing/
complex_fft.c 31 int i, j, l, k, istep, n, m; local
51 istep = l << 1;
64 for (i = m; i < n; i += istep)
82 l = istep;
91 istep = l << 1;
110 for (i = m; i < n; i += istep)
152 l = istep;
160 size_t i, j, l, istep, n, m; local
199 istep = l << 1;
215 for (i = m; i < n; i += istep)
    [all...]
complex_fft_mips.c 26 int istep = 0; local
52 "sll %[istep], %[l], 1 \n\t"
79 "addu %[i], %[i], %[istep] \n\t"
130 "move %[l], %[istep] \n\t"
139 [m] "=&r" (m), [istep] "=&r" (istep), [l] "=&r" (l), [k] "=&r" (k),
153 int istep = 0, n = 0, m = 0; local
228 "sll %[istep], %[l], 1 \n\t"
254 "addu %[i], %[i], %[istep] \n\t"
307 "move %[l], %[istep] \n\t
    [all...]
  /external/opencv/cvaux/src/
cvfacedetection.cpp 101 int iMinLevel = 0, iMaxLevel = 255, iStep = 255 / iNumLayers;
102 ThresholdingParam(imgGray, iNumLayers, iMinLevel, iMaxLevel, iStep);
118 for (int l = iMinLevel, i = 0; l < iMaxLevel; l += iStep, i++)
132 void FaceDetection::ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, int &iStep)
183 iStep = (iMaxLevel - iMinLevel) / iNumLayers;
185 }// void FaceDetection::ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, int &iStep)
_cvfacedetection.h 350 void ThresholdingParam(IplImage* imgGray, int iNumLayers, int& iMinLevel, int& iMaxLevel, int& iStep);
cvvecfacetracking.cpp 659 }// void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, int &iStep)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
MotionIndicatorView.java 399 int iStep = (data - mLow)/mStep;
401 if (iStep>=0 && iStep<getNSteps()) {
405 if (mCovered[iStep]) {
408 mCovered[iStep] = true;
  /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 );
  /external/opencv3/modules/imgproc/src/
segmentation.cpp 165 int istep = int(src.step/sizeof(img[0])); local
185 img += istep; mask += mstep;
206 c_diff( ptr, ptr - istep, t );
211 c_diff( ptr, ptr + istep, t );
217 ws_push( idx, i*mstep + j, i*istep + j*3 );
310 c_diff( ptr, ptr - istep, t );
311 ws_push( t, mofs - mstep, iofs - istep );
317 c_diff( ptr, ptr + istep, t );
318 ws_push( t, mofs + mstep, iofs + istep );
drawing.cpp 174 size_t istep = img.step; local
193 ptr = (uchar*)(img.data + pt1.y * istep + pt1.x * bt_pix0);
197 istep = (istep ^ s) - s;
206 bt_pix ^= istep & s;
207 istep ^= bt_pix & s;
208 bt_pix ^= istep & s;
217 plusStep = (int)istep;
228 plusStep = (int)istep - bt_pix;
    [all...]
imgwarp.cpp     [all...]
  /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/opencv3/modules/ml/src/
data.cpp 442 int istep = data.isContinuous() ? 1 : (int)data.step1(); local
450 if( fdata[i*istep] == MISSED_VAL )
454 idata[i] = cvRound(fdata[i*istep]);
455 CV_Assert( (float)idata[i] == fdata[i*istep] );
458 istep = 1;
464 std::sort(idx, idx + n, CmpByIdx(idata, istep));
468 clscount += idata[idx[i]*istep] != idata[idx[i-1]*istep];
471 int prev = ~idata[idx[0]*istep];
480 int l = idata[idx[i]*istep];
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/cxcore/src/
cxutils.cpp 1065 int istep = idx ? idx->step/sizeof(int) : 0; local
    [all...]
  /external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
TestConversion.java 728 int iStep = step;
734 source.limit((iStep <= sourceLen) ? iStep : sourceLen);
789 iStep += step;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.debug.core_3.6.0.v20100519.jar 
  /external/opencv3/modules/calib3d/src/
circlesgrid.cpp 829 int iStep = isClockwiseBefore ? 1 : -1;
830 for (int i = iStart; i != iEnd; i += iStep)
    [all...]

Completed in 1056 milliseconds