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

<<11121314151617181920>>

  /external/opencv/cv/src/
cvsumpixels.cpp 401 src_step = src->step ? src->step : CV_STUB_STEP;
402 sum_step = sum->step ? sum->step : CV_STUB_STEP;
403 sqsum_step = !sqsum ? 0 : sqsum->step ? sqsum->step : CV_STUB_STEP;
404 tilted_step = !tilted ? 0 : tilted->step ? tilted->step : CV_STUB_STEP;
cvimgwarp.cpp     [all...]
cvlkpyramid.cpp 79 int **step, CvSize** size,
95 *step = 0;
125 /* set pointers and step for every level */
146 (sizeof(imgI[0][0]) * 2 + sizeof(step[0][0]) +
153 *step = (int *) (*imgJ + level1);
154 *scale = (double *) (*step + level1);
159 step[0][0] = imgA->step;
190 step[0][i] = cvAlign( levelSize.width, ALIGN ) * elem_size;
193 levelBytes = step[0][i] * levelSize.height
295 int *step = 0; local
685 int *step = 0; local
    [all...]
  /external/python/cpython3/Lib/test/
test_colorsys.py 4 def frange(start, stop, step):
7 start += step
  /external/replicaisland/src/com/replica/replicaisland/
MotionBlurComponent.java 91 // draw each step
93 final int step = (startStep - x) < 0 ? (STEP_COUNT + (startStep - x)) : (startStep - x);
94 final BlurRecord record = mHistory[step];
  /external/skia/samplecode/
SampleCircle.cpp 80 SkScalar step = SK_ScalarPI * 2 / n; local
83 angle += step;
  /external/skia/src/gpu/effects/
GrDitherEffect.fp 70 // Simulate the integer effect used above using step/mod. For speed, simulates a 4x4
73 half4 stepValues = step(modValues, half4(1.0, 1.0, 2.0, 2.0));
  /external/skia/tests/
PaintBreakTextTest.cpp 21 const SkScalar step = SkMaxScalar(width / 10, SK_Scalar1); local
22 for (SkScalar w = 0; w <= width; w += step) {
  /external/skqp/samplecode/
SampleCircle.cpp 80 SkScalar step = SK_ScalarPI * 2 / n; local
83 angle += step;
  /external/skqp/src/gpu/effects/
GrDitherEffect.fp 70 // Simulate the integer effect used above using step/mod. For speed, simulates a 4x4
73 half4 stepValues = step(modValues, half4(1.0, 1.0, 2.0, 2.0));
  /external/skqp/tests/
PaintBreakTextTest.cpp 21 const SkScalar step = SkMaxScalar(width / 10, SK_Scalar1); local
22 for (SkScalar w = 0; w <= width; w += step) {
  /external/tensorflow/tensorflow/core/kernels/
histogram_op_gpu.cu.cc 54 const double step = static_cast<double>(value_range(1) - value_range(0)) / local
59 static_cast<T>(static_cast<double>(value_range(0)) + step * i);
  /external/tensorflow/tensorflow/examples/tutorials/word2vec/
word2vec_basic.py 53 # Step 1: Download the data.
88 # Step 2: Build the dictionary and replace rare words with UNK token.
126 # Step 3: Function to generate a training batch for the skip-gram model.
161 # Step 4: Build and train a skip-gram model.
243 # Step 5: Begin training.
255 for step in xrange(num_steps):
263 # We perform one update step by evaluating the optimizer op (including it
273 # Add returned summaries to writer in each step.
274 writer.add_summary(summary, step)
276 if step == (num_steps - 1)
    [all...]
  /external/v8/base/trace_event/common/
trace_event_common.h 529 // operation must use the same |name| and |id|. Each step can have its own
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
MotionEventInjector.java 338 GestureDescription.GestureStep step = steps.get(i); local
339 int currentTouchPointSize = step.numTouchPoints;
346 appendMoveEventIfNeeded(motionEvents, step.touchPoints, currentTouchPointSize,
347 startTime + step.timeSinceGestureStart);
348 appendUpEvents(motionEvents, step.touchPoints, currentTouchPointSize,
349 startTime + step.timeSinceGestureStart);
350 appendDownEvents(motionEvents, step.touchPoints, currentTouchPointSize,
351 startTime + step.timeSinceGestureStart);
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
AdjacencyList.java 38 * actual step in the chain building process, and the associated
68 * <code>POSSIBLE</code> denotes that the current step represents a
118 * Recursive, private method which actually builds the step list from
147 // entered as a possible step before we take any actions
167 // successful step? If there's only one entry without
168 // a throwable, then that's the successful step. Otherwise,
182 // which might be the succeed step...how do we know
250 for (Vertex step : l) {
251 sb.append(step.toString()).append("\n");
  /prebuilts/go/darwin-x86/src/cmd/fix/
cftype.go 46 // step 1: Find all the nils with the offending types.
55 // step 2: find all uses of the bad nils, replace them with 0.
97 // step 3: fix up invalid casts.
98 // It used to be ok to cast between *unsafe.Pointer and *C.CFTypeRef in a single step.
  /prebuilts/go/darwin-x86/src/sort/
search_test.go 75 step := 1
78 // step == 10**(exp-2)
80 for x := 0; x < n; x += step {
91 step *= 10
  /prebuilts/go/linux-x86/src/cmd/fix/
cftype.go 46 // step 1: Find all the nils with the offending types.
55 // step 2: find all uses of the bad nils, replace them with 0.
97 // step 3: fix up invalid casts.
98 // It used to be ok to cast between *unsafe.Pointer and *C.CFTypeRef in a single step.
  /prebuilts/go/linux-x86/src/sort/
search_test.go 75 step := 1
78 // step == 10**(exp-2)
80 for x := 0; x < n; x += step {
91 step *= 10
  /external/ImageMagick/MagickCore/
shear.c 238 step;
242 for (step=1; step < GetMatrixColumns(p); step*=2)
244 for (x=0; x < (ssize_t) GetMatrixColumns(p); x+=2*(ssize_t) step)
256 for (i=0; i < (ssize_t) step; i++)
262 if (GetMatrixElement(p,x+i+step,y+i,&neighbor) == MagickFalse)
267 if (GetMatrixElement(p,x+i+step,y+i+1,&neighbor) == MagickFalse)
277 if (GetMatrixElement(p,x+i+step,y+i,&neighbor) == MagickFalse)
235 step; local
1210 step; local
1407 step; local
    [all...]
  /external/adhd/cras/src/server/
cras_mix_ops.c 98 float scaler, float increment, int step)
111 while (i + step <= count) {
112 for (j = 0; j < step; j++) {
287 float scaler, float increment, int step)
300 while (i + step <= count) {
301 for (j = 0; j < step; j++) {
460 float scaler, float increment, int step)
473 while (i + step <= count) {
474 for (j = 0; j < step; j++) {
662 float scaler, float increment, int step)
    [all...]
  /prebuilts/go/darwin-x86/src/regexp/
exec.go 125 r, width = i.step(pos)
127 r1, width1 = i.step(pos + width)
152 r, width = i.step(pos)
153 r1, width1 = i.step(pos + width)
163 m.step(runq, nextq, pos, pos+width, r, flag)
175 r1, width1 = i.step(pos + width)
193 // step executes one step of the machine, running each of the threads
195 // The step processes the rune c (which may be endOfText),
198 func (m *machine) step(runq, nextq *queue, pos, nextPos int, c rune, nextCond syntax.EmptyOp) func
    [all...]
  /prebuilts/go/linux-x86/src/regexp/
exec.go 125 r, width = i.step(pos)
127 r1, width1 = i.step(pos + width)
152 r, width = i.step(pos)
153 r1, width1 = i.step(pos + width)
163 m.step(runq, nextq, pos, pos+width, r, flag)
175 r1, width1 = i.step(pos + width)
193 // step executes one step of the machine, running each of the threads
195 // The step processes the rune c (which may be endOfText),
198 func (m *machine) step(runq, nextq *queue, pos, nextPos int, c rune, nextCond syntax.EmptyOp) func
    [all...]
  /external/opencv/cxcore/src/
cxsumpixels.cpp 122 step /= sizeof(src[0])
234 const arrtype* src, int step, CvSize size, \
235 sumtype_final* sum ), (src, step, size, sum) ) \
240 for( ; size.height--; src += step ) \
264 const arrtype* src, int step, CvSize size, \
265 sumtype_final* sum ), (src, step, size, sum) ) \
270 for( ; size.height--; src += step ) \
284 const arrtype* src, int step, CvSize size, \
286 (src, step, size, sum, cvAlgHintAccurate) ) \
291 for( ; size.height--; src += step ) \
    [all...]

Completed in 2038 milliseconds

<<11121314151617181920>>