HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 301 - 325 of 2078) sorted by null

<<11121314151617181920>>

  /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/cvaux/src/
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/lzma/CPP/7zip/Compress/
Lzma2Decoder.cpp 98 UInt32 step = _outStepSize; local
100 if (step < kOutStepSize_Min)
101 step = kOutStepSize_Min;
105 SizeT next = (_state.decoder.dicBufSize - _state.decoder.dicPos < step) ?
107 _state.decoder.dicPos + step;
161 next = (_state.decoder.dicBufSize - _state.decoder.dicPos < step) ?
163 _state.decoder.dicPos + step;
  /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...]
  /external/skia/infra/bots/recipes/
bookmaker.py 20 'recipe_engine/step',
37 api.step,
62 api.run(api.step, 'Validate docs match include/core/*.h', cmd=cmd)
63 except api.step.StepFailure as e:
67 'step to see how to get this bot green.'
77 # Step 1: Extract all fiddles out of markdown files.
82 api.run(api.step, 'Extract all fiddles out of md files', cmd=cmd)
84 # Step 2: Forces fiddle.skia.org to compile all fiddles extracted out of
92 api.run(api.step, 'Force fiddle to compile all examples', cmd=cmd)
94 # Step 3: Scan the output of fiddlecli for any compiletime/runtime errors
    [all...]
  /external/skqp/infra/bots/recipes/
bookmaker.py 20 'recipe_engine/step',
37 api.step,
62 api.run(api.step, 'Validate docs match include/core/*.h', cmd=cmd)
63 except api.step.StepFailure as e:
67 'step to see how to get this bot green.'
77 # Step 1: Extract all fiddles out of markdown files.
82 api.run(api.step, 'Extract all fiddles out of md files', cmd=cmd)
84 # Step 2: Forces fiddle.skia.org to compile all fiddles extracted out of
92 api.run(api.step, 'Force fiddle to compile all examples', cmd=cmd)
94 # Step 3: Scan the output of fiddlecli for any compiletime/runtime errors
    [all...]
  /external/bart/bart/common/
signal.py 171 :param step: The step behaviour for area and time
173 :type step: str
229 step = kwargs.get("step", "post")
245 duration = interval_sum(mask[pivot_val], step=step) / duration
266 :param step: The step behaviour for calculation of area
268 :type step: st
    [all...]
  /external/opencv/cv/src/
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/python/cpython3/Lib/test/
test_range.py 10 def pyrange(start, stop, step):
11 if (start - stop) // step < 0:
13 # that are congruent to start modulo step.
14 stop += (start - stop) % step
17 start += step
19 def pyrange_reversed(start, stop, step):
20 stop += (start - stop) % step
21 return pyrange(stop - step, start - step, -step)
    [all...]
  /external/skia/infra/bots/recipe_modules/swarming_client/
api.py 29 """Returns a step to checkout swarming client into a separate directory.
32 src/tools/swarming_client. This step configures recipe module to use
61 'checkout_swarming_client' step was used.
71 """Yields a step to query a swarming script for its version.
97 step_result = self.m.step.active_result
107 It should have been queried by 'query_script_version' step before. Raises
132 step_result.presentation.status = self.m.step.FAILURE
135 raise self.m.step.StepFailure(abort_reason)
  /external/skqp/infra/bots/recipe_modules/swarming_client/
api.py 29 """Returns a step to checkout swarming client into a separate directory.
32 src/tools/swarming_client. This step configures recipe module to use
61 'checkout_swarming_client' step was used.
71 """Yields a step to query a swarming script for its version.
97 step_result = self.m.step.active_result
107 It should have been queried by 'query_script_version' step before. Raises
132 step_result.presentation.status = self.m.step.FAILURE
135 raise self.m.step.StepFailure(abort_reason)
  /external/tensorflow/tensorflow/compiler/xla/tests/
exhaustive_f32_elementwise_op_test.cc 117 const int64 step = 1 << 25; local
118 for (int64 i = 0; i < (1l << 32); i += step) {
119 result.push_back({i, i + step});
  /external/tensorflow/tensorflow/core/kernels/
summary_kernels.cc 131 OP_REQUIRES_OK(ctx, ctx->input("step", &tmp));
132 const int64 step = tmp->scalar<int64>()(); variable
141 OP_REQUIRES_OK(ctx, s->WriteTensor(step, *t, tag, serialized_metadata));
177 OP_REQUIRES_OK(ctx, ctx->input("step", &tmp));
178 const int64 step = tmp->scalar<int64>()(); variable
185 OP_REQUIRES_OK(ctx, s->WriteScalar(step, *t, tag));
200 OP_REQUIRES_OK(ctx, ctx->input("step", &tmp));
201 const int64 step = tmp->scalar<int64>()(); variable
208 OP_REQUIRES_OK(ctx, s->WriteHistogram(step, *t, tag));
229 OP_REQUIRES_OK(ctx, ctx->input("step", &tmp))
230 const int64 step = tmp->scalar<int64>()(); variable
266 const int64 step = tmp->scalar<int64>()(); variable
295 const int64 step = t->scalar<int64>()(); variable
    [all...]
  /external/webp/src/dsp/
alpha_processing_mips_dsp_r2.c 129 const uint8_t* b, int len, int step,
147 "addu %[offset], %[offset], %[step] \n\t"
161 : [a]"r"(a), [r]"r"(r), [g]"r"(g), [b]"r"(b), [step]"r"(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_enc.c 323 int step,
329 const int off = i * step;
437 int step, int rgb_stride,
482 ImportOneRow(r_ptr, g_ptr, b_ptr, step, picture->width, src1);
485 step, picture->width, src2);
563 #define SUM4(ptr, step) LinearToGamma( \
565 GammaToLinear((ptr)[(step)]) + \
567 GammaToLinear((ptr)[rgb_stride + (step)]), 0) \
729 uint32_t total_a, int step,
733 a_ptr[step] * GammaToLinear(src[step])
    [all...]
  /external/opencv/cxcore/src/
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...]
  /external/libvpx/libvpx/vpx_dsp/arm/
fdct16x16_neon.c 83 // Load step of each pass. Add and subtract clear across the input, requiring
86 // To maybe reduce register usage this could be combined with the load() step to
231 int16x8_t step[8]; local
245 // fdct4(step, step);
278 // step 2
281 // difference is that "in_high" is the first 8 values and "step 1" is the
291 // step 3
301 // step 4
310 // step
    [all...]
  /frameworks/ml/nn/runtime/
ExecutionPlan.cpp 279 for (const auto& step : mSteps) {
280 for (const auto& input : step->getTempsAsSubModelInputs()) {
292 VLOG(COMPILATION) << "ExecutionStep::finishSubModel, step " << mIndex;
449 for (const auto& step : mSteps) {
450 int n = step->finishSubModel(fromModel, &mHasSubModelOutputOfUnknownSize,
532 for (const auto& step : compound()->mSteps) {
533 for (const auto& output: step->getTempsAsSubModelOutputs()) {
602 // First (and only) step.
632 const auto step = compoundBody->mSteps[controller->mNextStepIndex]; local
635 step->getSubModel()
707 auto step = std::make_shared<ExecutionStep>(this, steps.size(), device); local
    [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);

Completed in 405 milliseconds

<<11121314151617181920>>