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

<<21222324252627282930>>

  /hardware/libhardware/modules/camera/3_4/metadata/
partial_metadata_factory_test.cpp 210 query_result.step = 2;
211 // Have conversions for values 1-5, by step size 2.
234 query_result.step = 2;
235 // Have conversions for values 1-5, by step size 2.
259 query_result.step = 2;
260 // Have conversions for values 1-5, by step size 2.
295 query_result.step = 2;
319 query_result.step = 1;
343 query_result.step = 2;
376 // rounded down to the step value of 3
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-param-util.h 185 RangeGenerator(T begin, T end, IncrementT step)
187 step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
201 IncrementT step)
202 : base_(base), value_(value), index_(index), step_(step) {}
244 const IncrementT& step) {
246 for (T i = begin; i < end; i = i + step)
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
gtest-param-util.h 185 RangeGenerator(T begin, T end, IncrementT step)
187 step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
201 IncrementT step)
202 : base_(base), value_(value), index_(index), step_(step) {}
244 const IncrementT& step) {
246 for (T i = begin; i < end; i = i + step)
  /external/libxaac/decoder/
ixheaacd_freq_sca.c 494 WORD32 step; local
502 step = 0x20000000L;
518 if (direction == 0) step = ixheaacd_shr32(step, 1);
520 bandfactor = ixheaacd_add32_sat(bandfactor, step);
523 if (direction == 1) step = ixheaacd_shr32(step, 1);
525 bandfactor = ixheaacd_sub32_sat(bandfactor, step);
529 step = 0;
531 } while (step > 0)
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_loop_analyze.c 361 get_iteration(nir_op cond_op, nir_const_value *initial, nir_const_value *step,
373 iter = span / step->i32[0];
380 iter = span / step->u32[0];
389 iter = span / step->f32[0];
400 test_iterations(int32_t iter_int, nir_const_value *step,
427 * step the induction variable each iteration.
429 nir_const_value mul_src[2] = { iter_src, *step };
449 calculate_iterations(nir_const_value *initial, nir_const_value *step,
453 assert(initial != NULL && step != NULL && limit != NULL);
485 * condition and if so we assume we need to step the initial value
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_draw.c 380 uint32_t step = count; local
404 this_count = step = max_verts;
407 this_count = step = max_verts - (max_verts % 2);
411 step = max_verts - 1;
415 step = max_verts - 1;
421 this_count = step = max_verts - (max_verts % 3);
425 step = max_verts - 2;
430 this_count = step = max_verts;
440 count -= step;
441 extra_index_bias += start + step;
    [all...]
  /external/tensorflow/tensorflow/python/data/kernel_tests/
range_dataset_op_test.py 77 step = array_ops.placeholder(dtypes.int64, shape=[])
79 step).make_initializable_iterator()
84 sess.run(init_op, feed_dict={start: 2, stop: 10, step: 2})
93 step = array_ops.placeholder(dtypes.int64, shape=[])
95 step).make_initializable_iterator()
100 sess.run(init_op, feed_dict={start: 2, stop: 10, step: 0})
105 step = array_ops.placeholder(dtypes.int64, shape=[])
107 step).make_initializable_iterator()
112 sess.run(init_op, feed_dict={start: 2, stop: 10, step: -1})
140 step = array_ops.placeholder(dtypes.int64, shape=[]
    [all...]
  /external/opencv/cv/src/
cvfilter.cpp 537 dptr = dst->data.ptr + dst_origin.y*dst->step + dst_origin.x*CV_ELEM_SIZE(dst_type);
538 sptr = src->data.ptr + src_y1*src->step + src_x*pix_size;
545 delta = fill_cyclic_buffer( sptr, src->step, src_y, src_y1, src_y2 );
548 sptr += src->step*delta;
576 y_func( rows + max_ky - anchor.y, dptr, dst->step, count, this );
579 dptr += dst->step*count;
    [all...]
cvoptflowbm.cpp 599 if( srcA->step != srcB->step || velx->step != vely->step )
603 srcA->step, cvGetMatSize( srcA ), blockSize,
605 velx->data.fl, vely->data.fl, velx->step ));
  /external/python/cpython3/Objects/
bytearrayobject.c 402 Py_ssize_t start, stop, step, slicelength, cur, i; local
405 &start, &stop, &step, &slicelength) < 0) {
411 else if (step == 1) {
426 cur += step, i++) {
599 Py_ssize_t start, stop, step, slicelen, needed; local
621 step = 1;
635 &start, &stop, &step, &slicelen) < 0) {
672 if ((step < 0 && start < stop) ||
673 (step > 0 && start > stop))
675 if (step == 1)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
esc.go 290 // An EscStep documents one step in the path from memory
297 why string // explanation for this step in the escape-to-heap chain
424 func (e *EscState) stepAssign(step *EscStep, dst, src *Node, why string) *EscStep {
428 if step != nil { // Caller may have known better.
429 if step.why == "" {
430 step.why = why
432 if step.dst == nil {
433 step.dst = dst
435 if step.src == nil {
436 step.src = sr
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
esc.go 290 // An EscStep documents one step in the path from memory
297 why string // explanation for this step in the escape-to-heap chain
424 func (e *EscState) stepAssign(step *EscStep, dst, src *Node, why string) *EscStep {
428 if step != nil { // Caller may have known better.
429 if step.why == "" {
430 step.why = why
432 if step.dst == nil {
433 step.dst = dst
435 if step.src == nil {
436 step.src = sr
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_tiff.cpp 165 bool GrFmtTiffReader::ReadData( uchar* data, int step, int color )
193 for( y = 0; y < m_height; y += tile_height0, data += step*tile_height0 )
218 data + x*3 + step*(tile_height - i - 1), 0,
222 data + x + step*(tile_height - i - 1), 0,
559 bool GrFmtTiffReader::ReadData( uchar* data, int step, int color )
594 for( ; y < y_limit; y++, data += step )
681 bool GrFmtTiffWriter::WriteImage( const uchar* data, int step,
687 assert( data && width > 0 && height > 0 && step >= fileStep);
727 for( ; y < limit; y++, data += step )
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
TerminalBridge.java 679 float step = 8.0f; local
685 size += step;
693 step /= 2.0f;
694 size -= step;
696 while ((direction = fontSizeCompare(size, cols, rows, width, height)) != 0 && step >= limit) {
697 step /= 2.0f;
699 size -= step;
701 size += step;
706 size -= step;
  /frameworks/av/media/mtp/
MtpProperty.cpp 249 void MtpProperty::setFormRange(int min, int max, int step) {
255 mStepSize.u.i8 = step;
260 mStepSize.u.u8 = step;
265 mStepSize.u.i16 = step;
270 mStepSize.u.u16 = step;
275 mStepSize.u.i32 = step;
280 mStepSize.u.u32 = step;
285 mStepSize.u.i64 = step;
290 mStepSize.u.u64 = step;
  /external/opencv/cv/include/
cvcompat.h 910 int step; \/* distance between lines ( in elements of single *\/ member in struct:_CvPixelPosition8u
925 int step; member in struct:_CvPixelPosition8s
938 int step; member in struct:_CvPixelPosition32f
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/widget/
WidgetCtsProvider.java 183 int step = 1; local
185 step = sTestCount.get(widgetId) + 1;
190 title = "Step " + step + ": Verify dimensions";
196 title = "Step " + step + ": Verify resizeability";
209 title = "Step " + step + ": Verify collections";
213 title = "Step " + step + ": Verify category"
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
UserString.py 163 start, stop, step = index.indices(len(self.data))
164 if step == -1:
167 elif step != 1:
170 raise TypeError, "invalid step in slicing assignment"
180 start, stop, step = index.indices(len(self.data))
181 if step == -1:
183 elif step != 1:
185 raise TypeError, "invalid step in slicing deletion"
  /external/brotli/c/enc/
entropy_encode.c 303 size_t step = 0; local
306 if ((symbol == 0 && step >= 5) ||
307 (symbol != 0 && step >= 7)) {
309 for (k = 0; k < step; ++k) {
313 step = 1;
318 ++step;
  /external/javasqlite/src/main/java/SQLite/
Database.java 310 while (ret.nrows < ret.maxrows && vm.step(ret)) {
314 while (vm.step(ret)) {
363 while (ret.nrows < ret.maxrows && vm.step(ret)) {
367 while (vm.step(ret)) {
416 while (tbl.nrows < tbl.maxrows && vm.step(tbl)) {
420 while (vm.step(tbl)) {
  /external/opencv/cvaux/src/
cvtexture.cpp 125 // roll together Directions and magnitudes together with knowledge of image (step)
307 // generate GLCM for each step
532 CV_IMPL double cvGetGLCMDescriptor( CvGLCM* GLCM, int step, int descriptor )
546 if( (unsigned)step >= (unsigned)(GLCM->numMatrices))
547 CV_ERROR( CV_StsOutOfRange, "step is not in 0 .. GLCM->numMatrices - 1" );
552 value = GLCM->descriptors[step][descriptor];
608 cvCreateGLCMImage( CvGLCM* GLCM, int step )
625 if( (unsigned)step >= (unsigned)(GLCM->numMatrices) )
626 CV_ERROR( CV_StsOutOfRange, "The step index is out of range" );
636 double matrixValue = GLCM->matrices[step][sideLoop1][sideLoop2]
    [all...]
  /external/python/cpython2/Lib/
UserString.py 163 start, stop, step = index.indices(len(self.data))
164 if step == -1:
167 elif step != 1:
170 raise TypeError, "invalid step in slicing assignment"
180 start, stop, step = index.indices(len(self.data))
181 if step == -1:
183 elif step != 1:
185 raise TypeError, "invalid step in slicing deletion"
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Tween.java 820 protected void updateOverride(int step, int lastStep, boolean isIterationStep, float delta) {
825 if (!isIterationStep && step > lastStep) {
830 if (!isIterationStep && step < lastStep) {
844 accessor.setValues(target, type, isReverse(step) ? targetValues : startValues);
849 accessor.setValues(target, type, isReverse(step) ? startValues : targetValues);
855 float time = isReverse(step) ? duration - getCurrentTime() : getCurrentTime();
  /external/vixl/test/
test-invalset.cc 254 unsigned step = 0; local
255 for (unsigned i = 0; i < set.size(); i += step, step++) {
323 unsigned step = 0; local
324 for (unsigned i = 0; i < set.size(); i += step, step++) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/
UserString.py 163 start, stop, step = index.indices(len(self.data))
164 if step == -1:
167 elif step != 1:
170 raise TypeError, "invalid step in slicing assignment"
180 start, stop, step = index.indices(len(self.data))
181 if step == -1:
183 elif step != 1:
185 raise TypeError, "invalid step in slicing deletion"

Completed in 1412 milliseconds

<<21222324252627282930>>