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

1 2 3 4 5 6 7 891011>>

  /external/opencv/cv/include/
cvtypes.h 109 #define CV_INIT_3X3_DELTAS( deltas, step, nch ) \
110 ((deltas)[0] = (nch), (deltas)[1] = -(step) + (nch), \
111 (deltas)[2] = -(step), (deltas)[3] = -(step) - (nch), \
112 (deltas)[4] = -(nch), (deltas)[5] = (step) - (nch), \
113 (deltas)[6] = (step), (deltas)[7] = (step) + (nch))
  /external/opencv/cv/src/
cvcalccontrasthistogram.cpp 45 IPCVAPI(CvStatus, icvCalcContrastHist8uC1R, ( uchar** img, int step, CvSize size,
48 IPCVAPI(CvStatus, icvCalcContrastHistMask8uC1R, ( uchar** img, int step,
62 icvCalcContrastHist8uC1R( uchar** img, int step, CvSize size,
113 for( y = 0; y < size.height; y++, data0 += step )
131 int v1_d = MIN( data0[x], data0[x + step] );
132 int v2_d = MAX( data0[x], data0[x + step] );
175 icvCalcContrastHistMask8uC1R( uchar** img, int step, uchar* mask, int mask_step,
228 for( y = 0; y < size.height; y++, data0 += step, maskp += mask_step )
255 int v1_d = MIN( data0[x], data0[x + step] );
256 int v2_d = MAX( data0[x], data0[x + step] );
    [all...]
  /external/tensorflow/tensorflow/python/profiler/
profile_context.py 54 step, locked = state
56 if locked and not self.profile_context._is_fast_path(step):
57 # Maybe trace this step.
58 if self.profile_context._should_trace(step, self.graph, fetches):
60 sys.stderr.write('debug: tracing step: %d\n' % step)
76 self.profile_context._dump_file(run_metadata, 'run_meta_%d' % step)
79 self.profile_context.profiler.add_step(step, run_metadata)
85 self.profile_context._maybe_dump(step)
92 sys.stderr.write('debug: profiling %s step: %d\n' % (cmd, step)
    [all...]
  /build/make/core/
cleanbuild.mk 46 # id for each step by taking makefile path, INTERNAL_CLEAN_BUILD_VERSION
50 # $(2): indicate to not use makefile path as part of step id if not empty.
52 define _add-clean-step
69 define add-clean-step
70 $(eval # for build/make/core/cleanspec.mk, dont use makefile path as part of step id) \
72 $(eval $(call _add-clean-step,$(1),true)),\
73 $(eval $(call _add-clean-step,$(1))))
107 $(foreach step,$(steps), \
108 $(info Clean step: $(INTERNAL_CLEAN_STEP.$(step))) \
    [all...]
  /external/opencv/cxcore/src/
cxminmaxloc.cpp 52 step /= sizeof(src[0]); \
89 icvMinMaxIndx_##flavor##_C1R,( const srctype* src, int step, CvSize size, \
91 (src, step, size, minVal, maxVal, minLoc, maxLoc) ) \
95 for( ; size.height--; src += step ) \
107 icvMinMaxIndx_##flavor##_CnCR( const srctype* src, int step, \
115 for( ; size.height--; src += step ) \
169 step /= sizeof(src[0]); \
171 if( width*(cn) == step && width == maskStep ) \
177 for( y = 0; y < size.height; y++, src += step, \
216 icvMinMaxIndx_##flavor##_C1MR,( const srctype* src, int step, \
    [all...]
cxutils.cpp 92 ids_delta = labels->step ? labels->step/(int)sizeof(int) : 1;
113 float* s = (float*)(samples->data.ptr + i*samples->step);
115 double* c = (double*)(centers->data.ptr + k*centers->step);
140 double* c = (double*)(centers->data.ptr + k*centers->step);
150 float* s = (float*)(samples->data.ptr + i*samples->step);
158 double* c_o = (double*)(old_centers->data.ptr + k*old_centers->step);
172 float* s = (float*)(samples->data.ptr + i*samples->step);
178 double* c = (double*)(centers->data.ptr + k*centers->step);
276 int step = 1, coeff_count local
819 int cont_flag, arr_size, elem_size, cols, step; local
915 int type, step; local
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.cpp 152 bool GrFmtJpeg2000Reader::ReadData( uchar* data, int step, int color )
235 result = ReadComponent8u( data + i, buffer, step, cmptlut[i], maxval, offset, ncmpts );
237 result = ReadComponent16u( ((unsigned short *)data) + i, buffer, step / 2, cmptlut[i], maxval, offset, ncmpts );
260 int step, int cmpt,
280 uchar* dst = data + (y - yoffset) * step - xoffset;
312 for( ++y; y < y1; y++, dst += step )
314 dst[x*ncmpts + step] = dst[x*ncmpts];
322 int step, int cmpt,
342 ushort* dst = data + (y - yoffset) * step - xoffset;
374 for( ++y; y < y1; y++, dst += step )
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRootElements.java 41 * Mask for getting the primary range step value from a primary-range-end element.
136 return elements[(int)elements[IX_FIRST_PRIMARY_INDEX]]; // step=0: cannot be a range end
222 int step; local
227 step = (int)q & PRIMARY_STEP_MASK;
228 if(step == 0) {
239 step = (int)nextElement & PRIMARY_STEP_MASK;
243 return Collation.decTwoBytePrimaryByOneStep(p, isCompressible, step);
245 return Collation.decThreeBytePrimaryByOneStep(p, isCompressible, step);
326 int step; local
327 if((q & SEC_TER_DELTA_FLAG) == 0 && (step = (int)q & PRIMARY_STEP_MASK) != 0)
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRootElements.java 39 * Mask for getting the primary range step value from a primary-range-end element.
134 return elements[(int)elements[IX_FIRST_PRIMARY_INDEX]]; // step=0: cannot be a range end
220 int step; local
225 step = (int)q & PRIMARY_STEP_MASK;
226 if(step == 0) {
237 step = (int)nextElement & PRIMARY_STEP_MASK;
241 return Collation.decTwoBytePrimaryByOneStep(p, isCompressible, step);
243 return Collation.decThreeBytePrimaryByOneStep(p, isCompressible, step);
324 int step; local
325 if((q & SEC_TER_DELTA_FLAG) == 0 && (step = (int)q & PRIMARY_STEP_MASK) != 0)
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_imaadpcm.c 84 pState->decoderL.step = 0;
85 pState->decoderR.step = 0;
132 /* if start of block, fetch new predictor and step index */
144 /* get step index for left channel - upper 8 bits are reserved */
148 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Step: Was %d, now %d\n", pState->decoderL.step, sTemp); */ }
150 pState->decoderL.step = sTemp & 0xff;
159 /* get step index for right channel - upper 8 bits are reserved */
163 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Step: Was %d, now %d\n", pState->decoderR.step, sTemp); */
    [all...]
  /external/python/cpython3/Lib/test/
test_slice.py 31 # Compute step and length as integers.
33 step = 1 if slice.step is None else evaluate_slice_index(slice.step)
35 # Raise ValueError for negative length or zero step.
38 if step == 0:
39 raise ValueError("slice step cannot be zero")
42 lower = -1 if step < 0 else 0
43 upper = length - 1 if step < 0 else length
47 start = upper if step < 0 else lowe
    [all...]
  /external/tensorflow/tensorflow/contrib/summary/
summary_ops.py 69 # TODO(apassos) consider how to handle local step here.
152 writing to an event log file, the associated step will be zero.
346 def generic(name, tensor, metadata=None, family=None, step=None):
359 _choose_step(step),
367 def scalar(name, tensor, family=None, step=None):
379 step: The `int64` monotonic step variable, which defaults
391 _choose_step(step),
399 def histogram(name, tensor, family=None, step=None):
406 _choose_step(step),
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_userstring.py 98 for step in (None, 1, -1):
103 data = L[start:stop:step]
105 L[start:stop:step] = data
106 s[start:stop:step] = "".join(data)
109 del L[start:stop:step]
110 del s[start:stop:step]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
RungeKuttaIntegrator.java 31 * This class implements the common part of all fixed step Runge-Kutta
66 /** Prototype of the step interpolator. */
69 /** Integration step. */
70 private final double step; field in class:RungeKuttaIntegrator
74 * step. The default step handler does nothing.
79 * @param prototype prototype of the step interpolator to use
80 * @param step integration step
85 final double step) {
    [all...]
  /external/python/cpython2/Lib/test/
test_userstring.py 95 for step in (None, 1, -1):
100 data = L[start:stop:step]
102 L[start:stop:step] = data
103 s[start:stop:step] = "".join(data)
106 del L[start:stop:step]
107 del s[start:stop:step]
  /external/skia/infra/bots/recipes/
upload_coverage_results.py 20 'recipe_engine/step',
74 api.step('create raw data archive', cmd=cmd)
89 api.step('merge and index',
98 api.step('create text summary',
117 api.step('create text coverage archive', cmd=['tar', '-cvf',
126 api.step('create html summary',
139 api.step('create html coverage archive',
  /external/skqp/infra/bots/recipes/
upload_coverage_results.py 20 'recipe_engine/step',
74 api.step('create raw data archive', cmd=cmd)
89 api.step('merge and index',
98 api.step('create text summary',
117 api.step('create text coverage archive', cmd=['tar', '-cvf',
126 api.step('create html summary',
139 api.step('create html coverage archive',
  /external/syslinux/gpxe/src/drivers/bitbash/
spi_bit.c 97 unsigned int step; local
102 for ( step = 0 ; step < ( len * 2 ) ; step++ ) {
105 ( len - ( step / 2 ) - 1 ) : ( step / 2 ) );
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
kernel_support_library.cc 24 llvm::Value* step,
28 For(name, ir_builder_->CreateAdd(start, step), end, step,
35 llvm::Value* step, bool peel_first_iteration,
38 For(name, start, end, step, true,
44 name, start, end, step, ir_builder_,
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidDeflateTest.java 69 * "step" determines how compressible the data is.
74 private void bigTest(int step, int expectedAdler)
82 createSample(input, step);
99 byte val, step;
105 step = 1;
110 val += step;
113 step += stepStep;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_userstring.py 98 for step in (None, 1, -1):
103 data = L[start:stop:step]
105 L[start:stop:step] = data
106 s[start:stop:step] = "".join(data)
109 del L[start:stop:step]
110 del s[start:stop:step]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_userstring.py 98 for step in (None, 1, -1):
103 data = L[start:stop:step]
105 L[start:stop:step] = data
106 s[start:stop:step] = "".join(data)
109 del L[start:stop:step]
110 del s[start:stop:step]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_userstring.py 98 for step in (None, 1, -1):
103 data = L[start:stop:step]
105 L[start:stop:step] = data
106 s[start:stop:step] = "".join(data)
109 del L[start:stop:step]
110 del s[start:stop:step]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_userstring.py 98 for step in (None, 1, -1):
103 data = L[start:stop:step]
105 L[start:stop:step] = data
106 s[start:stop:step] = "".join(data)
109 del L[start:stop:step]
110 del s[start:stop:step]
  /external/adhd/cras/src/tests/
mix_unittest.cc 173 int step = 2; local
180 fmt_, (uint8_t *)mix_buffer_, kBufferFrames, start_scaler, increment, step);
187 int step = 2; local
194 fmt_, (uint8_t *)mix_buffer_, kBufferFrames, start_scaler, increment, step);
201 int step = 2; local
208 fmt_, (uint8_t *)mix_buffer_, kBufferFrames, start_scaler, increment, step);
214 int step = 2; local
221 fmt_, (uint8_t *)mix_buffer_, kBufferFrames, start_scaler, increment, step);
228 int step = 2; local
235 fmt_, (uint8_t *)mix_buffer_, kBufferFrames, start_scaler, increment, step);
242 int step = 2; local
433 int step = 2; local
447 int step = 2; local
461 int step = 2; local
474 int step = 2; local
488 int step = 2; local
502 int step = 2; local
691 int step = 2; local
705 int step = 2; local
719 int step = 2; local
732 int step = 2; local
746 int step = 2; local
760 int step = 2; local
981 int step = 2; local
995 int step = 2; local
1009 int step = 2; local
1022 int step = 2; local
1036 int step = 2; local
1050 int step = 2; local
    [all...]

Completed in 561 milliseconds

1 2 3 4 5 6 7 891011>>