HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 151 - 175 of 532) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/zlib/contrib/testzlib/
testzlib.c 196 int step=0; local
212 step++;
220 printf("total compress size = %u, in %u step\n",lSizeCpr,step);
237 int step=0; local
253 step++;
261 printf("total uncompress size = %u, in %u step\n",lSizeUncpr,step);
  /frameworks/base/opengl/tests/testLatency/src/com/android/testlatency/
TestLatencyView.java 118 for(int step = 0; step < 8; step++) {
119 float sx = (x + dx * step) * mScaleX + mOffsetX;
120 float sy = (y + dy * step) * mScaleY + mOffsetY;
121 int cbase = step * 4;
  /external/opencv/cv/src/
cvcontours.cpp 44 #define CV_INIT_3X3_DELTAS( deltas, step, nch ) \
45 ((deltas)[0] = (nch), (deltas)[1] = -(step) + (nch), \
46 (deltas)[2] = -(step), (deltas)[3] = -(step) - (nch), \
47 (deltas)[4] = -(nch), (deltas)[5] = (step) - (nch), \
48 (deltas)[6] = (step), (deltas)[7] = (step) + (nch))
157 int img_step; /* image step */
198 int step; local
217 step = mat->step
839 int step; local
    [all...]
cvstereogc.cpp 450 int sstep = src->step;
457 uchar* dptr = dst->data.ptr + dst->step*y;
496 const uchar* lptr = state->left->data.ptr + state->left->step*y;
497 const uchar* rptr = state->right->data.ptr + state->right->step*y;
538 int step = state->left->step; local
539 int dstep = (int)(state->dispLeft->step/sizeof(short));
541 assert( state->left->step == state->right->step &&
542 state->dispLeft->step == state->dispRight->step )
680 int step = state->left->step; local
    [all...]
cvfeatureselect.cpp 164 mask_step = mask->step;
167 eig_step = eig->step / sizeof(eig_data[0]);
168 tmp_step = tmp->step / sizeof(tmp_data[0]);
191 y = ofs / eig->step;
192 x = (ofs - y * eig->step)/sizeof(float);
cvfloodfill.cpp 95 icvFloodFill_8u_CnIR( uchar* pImage, int step, CvSize roi, CvPoint seed,
99 uchar* img = pImage + step * seed.y;
167 img = pImage + (YC + dir) * step;
227 icvFloodFill_32f_CnIR( int* pImage, int step, CvSize roi, CvPoint seed,
231 int* img = pImage + (step /= sizeof(pImage[0])) * seed.y;
299 img = pImage + (YC + dir) * step;
373 icvFloodFill_Grad_8u_CnIR( uchar* pImage, int step, uchar* pMask, int maskStep,
378 uchar* img = pImage + step*seed.y;
480 curstep = dir * step;
481 img = pImage + (YC + dir) * step;
    [all...]
  /external/opencv/cxcore/src/
cxmeansdv.cpp 247 step /= sizeof(src[0])
377 ( const arrtype* src, int step, \
379 (src, step, size, mean, sdv) ) \
386 for( ; size.height--; src += step ) \
412 ( const arrtype* src, int step, \
414 (src, step, size, mean, sdv) ) \
420 for( ; size.height--; src += step ) \
436 ( const arrtype* src, int step, \
446 for( ; size.height--; src += step ) \
472 ( const arrtype* src, int step, CvSize size,
    [all...]
cxnorm.cpp 140 IPCVAPI_IMPL( CvStatus, name, ( const arrtype* src, int step, \
141 CvSize size, double* _norm ), (src, step, size, _norm) ) \
146 step /= sizeof(src[0]); \
148 for( ; size.height--; src += step ) \
174 IPCVAPI_IMPL( CvStatus, name, ( const arrtype* src, int step, \
175 CvSize size, double* _norm ), (src, step, size, _norm) ) \
178 step /= sizeof(src[0]); \
180 for( ; size.height--; src += step ) \
198 IPCVAPI_IMPL( CvStatus, name, ( const arrtype* src, int step, \
200 (src, step, size, _norm, cvAlgHintAccurate) )
    [all...]
cxdrawing.cpp 172 int bt_pix, bt_pix0, step; local
191 step = mat->step;
210 iterator->ptr = (uchar*)(mat->data.ptr + pt1.y * step + pt1.x * bt_pix0);
214 step = (step ^ s) - s;
223 bt_pix ^= step & s;
224 step ^= bt_pix & s;
225 bt_pix ^= step & s;
234 iterator->plus_step = step;
310 int step = img->step; local
573 int step = img->step; local
1414 int step = img->step; local
    [all...]
cxrand.cpp 70 icvRandBits_##flavor##_C1R( arrtype* arr, int step, CvSize size, \
75 step /= sizeof(arr[0]); \
77 for( ; size.height--; arr += step ) \
152 icvRand_##flavor##_C1R( arrtype* arr, int step, CvSize size, \
156 step /= sizeof(arr[0]); \
158 for( ; size.height--; arr += step ) \
211 icvRand_64f_C1R( double* arr, int step, CvSize size,
215 step /= sizeof(arr[0]);
217 for( ; size.height--; arr += step )
342 icvRandn_##flavor##_C1R( arrtype* arr, int step, CvSize size,
    [all...]
cxmatmul.cpp 1732 int step = shift->step ? shift->step\/sizeof(double) : 1; local
1738 int step = shift->step ? shift->step\/sizeof(float) : 1; local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLInputElement.cpp 240 double step; local
241 if (!getAllowedValueStep(&step))
243 return m_inputType->stepMismatch(value, step);
263 double step; local
264 if (!getAllowedValueStep(&step)) {
269 return serializeForNumberType(step / m_inputType->stepScaleFactor());
282 bool HTMLInputElement::getAllowedValueStep(double* step) const
284 return getAllowedValueStepWithDecimalPlaces(step, 0);
287 bool HTMLInputElement::getAllowedValueStepWithDecimalPlaces(double* step, unsigned* decimalPlaces) const
289 ASSERT(step);
330 double step; local
1402 double step, base; local
    [all...]
  /external/libxslt/libxslt/
pattern.c 71 int step; member in struct:_xsltStepState
288 * Add an step to an XSLT Compiled Match
479 int step, xmlNodePtr node) {
499 states->states[states->nbstates].step = step;
502 fprintf(stderr, "Push: %d, %s\n", step, node->name);
516 * and not a step by step evaluation.
536 sel = &comp->steps[0]; /* store extra in first step arbitrarily */
631 xsltStepOpPtr step, sel = NULL local
    [all...]
  /build/core/
cleanbuild.mk 19 # id for each step by taking makefile path, INTERNAL_CLEAN_BUILD_VERSION
23 # $(2): indicate to not use makefile path as part of step id if not empty.
25 define _add-clean-step
42 define add-clean-step
43 $(eval # for build/core/cleanspec.mk, dont use makefile path as part of step id) \
45 $(eval $(call _add-clean-step,$(1),true)),\
46 $(eval $(call _add-clean-step,$(1))))
77 $(foreach step,$(steps), \
78 $(info Clean step: $(INTERNAL_CLEAN_STEP.$(step))) \
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_pxm.cpp 196 bool GrFmtPxMReader::ReadData( uchar* data, int step, int color )
240 for( y = 0; y < m_height; y++, data += step )
253 for( y = 0; y < m_height; y++, data += step )
269 for( y = 0; y < m_height; y++, data += step )
375 bool GrFmtPxMWriter::WriteImage( const uchar* data, int step,
385 assert( data && width > 0 && height > 0 && step >= fileStep );
415 for( y = 0; y < height; y++, data += step )
  /frameworks/base/media/libstagefright/codecs/aacenc/src/asm/ARMV5E/
Radix4FFT_v5.s 37 mov r9, r2, lsl #3 @ step = 2*bgn@
56 add r14, r14, r9 @ xptr += step@
71 add r14, r14, r9 @ xptr += step@
91 add r14, r14, r9 @ xptr += step@
122 sub r14, r14, r9 @ xptr -= step@
128 sub r14, r14, r9 @ xptr -= step@
134 sub r14, r14, r9 @ xptr -= step@
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_FilterDeblockingLuma_HorEdge_I_s.s 50 step RN 10 label
176 ADD step, srcdstStep, srcdstStep
189 VLD1 dP_3, [pSrcDst], step
190 VLD1 dP_2, [pTmp], step
191 VLD1 dP_1, [pSrcDst], step
192 VLD1 dP_0, [pTmp], step
193 VLD1 dQ_0, [pSrcDst], step
  /external/opencv/ml/src/
ml_inner_functions.cpp 379 int step; local
386 step = matrix->step / CV_ELEM_SIZE(matrix->type);
397 dst += step;
398 for( j = 0; j < i; j++, src += step )
402 for( i = 0; i < rows-1; i++, dst += step )
404 const float* src = (const float*)(matrix->data.fl + (i+1)*step + i);
405 for( j = i+1; j < cols; j++, src += step )
417 dst += step;
418 for( j = 0; j < i; j++, src += step )
467 int i, idx_total, idx_selected = 0, step, type, prev = INT_MIN, is_sorted = 1; local
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetSegGraph.py 67 def CalcCoord(self, step, height, ColorFct):
72 self.iStart = step * iStartM
73 self.iEnd = step * iEndM
75 self.iStart = self.iStart + ((step / 4.0) * (self.StartMbt[1]-1))
76 self.iEnd = self.iEnd + ((step / 4.0) * (self.EndMbt[1]-1))
79 self.iStart = self.iStart + ((pctTickOfBeat * (step / 4.0)))
81 self.iEnd = self.iEnd + ((pctTickOfBeat * (step / 4.0)))
229 step = int(gWidth / (self.iLengthInMeasures + .01))
232 Marker.CalcCoord(step, gHeight, self.GetAColor)
301 beatStep = step / 4.0
    [all...]
  /frameworks/base/media/tests/SoundPoolTest/src/com/android/
SoundPoolTest.java 155 for (int step = 0; step < count; step++) {
157 NORMAL_PRIORITY, DEFAULT_LOOP, mScale[step]);
186 for (int step = 1; step < count; step++) {
188 mSoundPool.setRate(id, mScale[step]);
189 if (DEBUG) Log.d(LOG_TAG, "Change rate " + mScale[step]);
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
pitch_f4.c 79 Word16 max, t0, step, temp; local
119 step = 1; /* 1/4 subsample resolution */
123 step = 2; /* 1/2 subsample resolution */
132 for (i = fraction + step; i <= 3; i += step)
  /cts/apps/CtsVerifier/jni/audioquality/
CompareSpectra.cpp 29 step and advance step samples. The approximate, conservative
31 static void findEndpoints(short* data, int n, int step, float signalOnRms,
33 int size = step;
36 for (int frame = 0; frame < last_frame; frame += step) {
  /external/webkit/Source/WebCore/platform/
ScrollAnimatorWin.cpp 77 bool ScrollAnimatorWin::scroll(ScrollbarOrientation orientation, ScrollGranularity granularity, float step, float multiplier)
81 return ScrollAnimator::scroll(orientation, granularity, step, multiplier);
85 float newPos = std::max(std::min(data->m_desiredPos + (step * multiplier), static_cast<float>(m_scrollableArea->scrollSize(orientation))), 0.0f);
101 // increment the desired position by |step| (with |multiplier| == 1) every
110 // lag = |step| - v(0.5tA + tD)
113 // |step| / ScrollbarTheme::nativeTheme()->autoscrollTimerDelay()
124 // float animationStep = step;
147 // here, because the further behind we are, the larger the base step value
152 // lag = |step| * ((r / k) - 1)
162 // with |animationStep| == |step| * |multiplier| despite the actual distanc
    [all...]
  /external/webkit/Source/WebKit2/Shared/gtk/
WebEventFactory.cpp 161 float step = static_cast<float>(Scrollbar::pixelsPerLineStep()); local
162 FloatSize delta(wheelTicks.width() * step, wheelTicks.height() * step);
  /external/valgrind/unittest/
linear_solver.h 271 double step = 1024.0; local
274 if (current[i] + derivative[i] * step < 0.0) {
275 step = - current[i] / derivative[i];
279 new_curr = current + derivative*step;
280 step /= 2.0;
282 if (step < 0.00001) {

Completed in 282 milliseconds

1 2 3 4 5 67 8 91011>>