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

1 2 3 4 5 67 8 91011>>

  /external/libvpx/libvpx/vp9/encoder/
vp9_subexp.c 125 const int step = *bestp > oldp ? -1 : 1; local
127 for (newp = *bestp; newp != oldp; newp += step) {
144 int i, old_b, new_b, update_b, savings, bestsavings, step; local
156 step = (*bestp > oldp[PIVOT_NODE] ? -1 : 1);
158 for (newp = *bestp; newp != oldp[PIVOT_NODE]; newp += step) {
  /external/skia/resources/
slides_transitions.lua 64 self:step()
74 rec.step = function (self)
85 rec.step = function (self)
110 self:step()
117 rec.step = function (self)
142 self:step()
148 rec.step = function (self)
155 rec.step = function (self)
185 self:step()
189 step = function (self
    [all...]
  /external/icu/icu4c/source/i18n/
collationrootelements.cpp 89 int32_t step; local
94 step = (int32_t)q & PRIMARY_STEP_MASK;
95 if(step == 0) {
106 step = (int32_t)nextElement & PRIMARY_STEP_MASK;
110 return Collation::decTwoBytePrimaryByOneStep(p, isCompressible, step);
112 return Collation::decThreeBytePrimaryByOneStep(p, isCompressible, step);
174 int32_t step; local
175 if((q & SEC_TER_DELTA_FLAG) == 0 && (step = (int32_t)q & PRIMARY_STEP_MASK) != 0) {
178 return Collation::incTwoBytePrimaryByOffset(p, isCompressible, step);
180 return Collation::incThreeBytePrimaryByOffset(p, isCompressible, step);
    [all...]
  /external/opencv/cv/src/
cvmotempl.cpp 141 mhi_step = mhi->step;
142 silh_step = silh->step;
227 dX_min_row.data.ptr = dX_min->data.ptr + y*dX_min->step;
228 dY_max_row.data.ptr = dY_max->data.ptr + y*dY_max->step;
229 orient_row.data.ptr = orient->data.ptr + y*orient->step;
230 mask_row.data.ptr = mask->data.ptr + y*mask->step;
257 dX_min_row.data.ptr = dX_min->data.ptr + y*dX_min->step;
258 dY_max_row.data.ptr = dY_max->data.ptr + y*dY_max->step;
259 mask_row.data.ptr = mask->data.ptr + y*mask->step;
260 orient_row.data.ptr = orient->data.ptr + y*orient->step;
    [all...]
cvadapthresh.cpp 88 const uchar* s = src->data.ptr + i*src->step;
89 const uchar* m = mean->data.ptr + i*mean->step;
90 uchar* d = dst->data.ptr + i*dst->step;
cvhistogram.cpp 809 int step = 1; local
812 step = ((CvMatND*)(hist->bins))->dim[i].step/sizeof(float);
818 idx *= step;
832 int step = 1; local
835 step = ((CvMatND*)(hist->bins))->dim[i].step/sizeof(float);
851 write_idx = idx*step;
871 icvCalcHist_8u_C1R( uchar** img, int step, uchar* mask, int maskStep,
906 for( ; size.height--; img[0] += step )
1411 int maskstep = 0, step = 0; local
2056 int dststep = 0, step = 0; local
    [all...]
  /external/opencv/cvaux/src/
cvdpstereo.cpp 70 uchar step; //local-optimal step member in struct:_CvDPCell
183 CELL(0,x).step = CELL(dispH-1,x).step = ICV_DP_STEP_LEFT;
188 CELL(d,d-2).step = ICV_DP_STEP_UP;
191 CELL(1,0).step = ICV_DP_STEP_LEFT;
205 //check left step
208 //check up step
209 if( _cell[d+1].step != ICV_DP_STEP_DIAG && e0 )
213 if( _cell[d-1-dispH].step != ICV_DP_STEP_UP && (_edges[1-d] & 2) )
    [all...]
cvsegment.cpp 84 icvSegmFloodFill_Stage1( uchar* pImage, int step,
91 uchar* img = pImage + step * seed.y;
103 img = pImage + seed.y*step;
144 /*curstep = flag * step;*/
145 img = pImage + (YC + flag) * step;
170 img = pImage + YC * step;
206 icvSegmFloodFill_Stage2( uchar* pImage, int step,
211 uchar* img = pImage + step * rect.y + rect.x * 3;
216 for( y = 0; y < rect.height; y++, img += step, mask += maskStep )
335 icvGetComponent( uchar* img, int step, CvRect rect
    [all...]
  /external/aac/libSBRdec/src/
sbrdec_freq_sca.cpp 432 /* Scaled bandfactor and step 1 bit right to avoid overflow
435 FIXP_DBL step = FL2FXCONST_DBL(0.125f); /* Initial increment for factor */ local
448 while ( step > FL2FXCONST_DBL(0.0f)) {
459 /* Halfen step. Right shift is not done as fract because otherwise the
461 step = (FIXP_DBL)((LONG)step >> 1);
463 bandfactor = bandfactor + step;
467 step = (FIXP_DBL)((LONG)step >> 1);
469 bandfactor = bandfactor - step;
654 int step; local
    [all...]
  /external/opencv/cxcore/src/
cxmean.cpp 114 step /= sizeof(src[0])
242 ( const arrtype* src, int step, \
245 (src, step, mask, maskstep, size, mean)) \
249 for( ; size.height--; src += step, mask += maskstep ) \
273 ( const arrtype* src, int step, \
276 (src, step, mask, maskstep, size, mean)) \
280 for( ; size.height--; src += step, mask += maskstep ) \
294 icvMean_##flavor##_CnCMR( const arrtype* src, int step, \
302 for( ; size.height--; src += step, mask += maskstep ) \
326 icvMean_##flavor##_CnCMR( const arrtype* src, int step, \
    [all...]
cxarray.cpp 118 if( (int64)arr->step*arr->rows > INT_MAX )
144 arr->step = rows == 1 ? 0 : cvAlign(min_step, CV_DEFAULT_MAT_ROW_ALIGN);
146 (arr->step == 0 || arr->step == min_step ? CV_MAT_CONT_FLAG : 0);
167 int type, void* data, int step )
196 if( step != CV_AUTOSTEP && step != 0 )
198 if( step < min_step )
200 arr->step = step & mask
288 int64 step = CV_ELEM_SIZE(type); local
490 int64 step; local
960 size_t step, total_size; local
3034 int step; local
    [all...]
cxcmp.cpp 124 uchar* dst, int step, CvSize size ) \
127 step3 /= sizeof(src3[0]); step /= sizeof(dst[0]); \
130 src3 += step3, dst += step ) \
191 uchar* dst, int step, CvSize size, \
194 step1 /= sizeof(src1[0]); step /= sizeof(dst[0]); \
196 for( ; size.height--; src1 += step1, dst += step ) \
320 src1_step = src1->step;
321 src2_step = src2->step;
322 src3_step = src3->step;
323 dst_step = dst->step;
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
s10_8pf.cpp 134 step = step size (Word16)
181 Word16 step, // i : stepsize
236 for (i3 = ipos[3]; i3 < L_CODE; i3 += step)
238 s = L_mult (rr[i3][i3], _1_8); // index incr= step+L_CODE
239 s = L_mac (s, rr[i0][i3], _1_4); // index increment = step
240 s = L_mac (s, rr[i1][i3], _1_4); // index increment = step
251 for (i2 = ipos[2]; i2 < L_CODE; i2 += step)
253 // index increment = step
256 // index incr= step+L_COD
    [all...]
  /external/opencv/ml/src/
mlestimate.cpp 97 // Result is 0 if function can't make next step (error input or folds are finished),
164 int step;
207 step = trainClasses->rows == 1 ? 1 : trainClasses->step / sizeof(float);
211 te1 = responses_fl[*data * step];
226 step = trainClasses->rows == 1 ? 1 : trainClasses->step / sizeof(int);
230 te1 = responses_i[*data * step];
255 step = trainClasses->rows == 1 ? 1 : trainClasses->step / sizeof(float)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Intra.c 44 * zigzag positioning, and IDCT, with appropriate clipping on each step, are
58 * step - width of the destination plane
101 * - step is not the multiple of 8
111 OMX_INT step,
141 armRetArgErrIf((step % 8) != 0, OMX_Sts_BadArgErr);
232 pDst += step;
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
Exif.java 189 int step = 1; local
192 step = -1;
198 offset += step;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Exif.java 184 int step = 1; local
187 step = -1;
193 offset += step;
  /external/webp/src/enc/
picture_csp.c 347 int step,
352 const int off = i * step;
459 int step, int rgb_stride,
501 step, picture->width, src1);
504 step, picture->width, src2);
577 #define SUM4(ptr, step) LinearToGamma( \
579 GammaToLinear((ptr)[(step)]) + \
581 GammaToLinear((ptr)[rgb_stride + (step)]), 0) \
743 uint32_t total_a, int step,
747 a_ptr[step] * GammaToLinear(src[step])
    [all...]
  /developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
Recipe.java 80 JSONObject step = steps.getJSONObject(i); local
82 recipeStep.stepText = step.getString(Constants.RECIPE_FIELD_TEXT);
83 if (step.has(Constants.RECIPE_FIELD_IMAGE)) {
84 recipeStep.stepImage = step.getString(Constants.RECIPE_FIELD_IMAGE);
RecipeActivity.java 117 for (Recipe.RecipeStep step : recipe.recipeSteps) {
120 if (step.stepImage == null) {
123 Bitmap stepImage = AssetUtils.loadBitmapAsset(this, step.stepImage);
127 (stepNumber++) + ". " + step.stepText);
  /developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
Recipe.java 80 JSONObject step = steps.getJSONObject(i); local
82 recipeStep.stepText = step.getString(Constants.RECIPE_FIELD_TEXT);
83 if (step.has(Constants.RECIPE_FIELD_IMAGE)) {
84 recipeStep.stepImage = step.getString(Constants.RECIPE_FIELD_IMAGE);
RecipeActivity.java 117 for (Recipe.RecipeStep step : recipe.recipeSteps) {
120 if (step.stepImage == null) {
123 Bitmap stepImage = AssetUtils.loadBitmapAsset(this, step.stepImage);
127 (stepNumber++) + ". " + step.stepText);
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gles3jni.h 96 void step();
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java 154 step(event.getEventTime());
194 step(event.getEventTime());
267 step(historyPos < 0 ? event.getEventTime() : event.getHistoricalEventTime(historyPos));
348 step(currentStepTime);
357 private void step(long currentStepTime) {
365 if (!mShip.step(tau)) {
373 if (!bullet.step(tau)) {
384 if (!obstacle.step(tau)) {
542 public boolean step(float tau) {
585 step(0)
    [all...]
  /development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
Recipe.java 80 JSONObject step = steps.getJSONObject(i); local
82 recipeStep.stepText = step.getString(Constants.RECIPE_FIELD_TEXT);
83 if (step.has(Constants.RECIPE_FIELD_IMAGE)) {
84 recipeStep.stepImage = step.getString(Constants.RECIPE_FIELD_IMAGE);

Completed in 655 milliseconds

1 2 3 4 5 67 8 91011>>