Home
last modified time | relevance | path

Searched refs:max_idx (Results 1 – 11 of 11) sorted by relevance

/external/autotest/site_utils/tester_feedback/
Dinput_handlers.py115 max_idx = len(choices)
116 if not (default is None or default in range(1, max_idx + 1)):
119 self._idx_range = '1-%d' % max_idx if max_idx > 1 else str(max_idx)
/external/opencv3/modules/calib3d/test/
Dtest_chesscorners_timing.cpp75 int idx, max_idx; in run() local
91 max_idx = board_list->data.seq->total/4; in run()
93 for( idx = start_from; idx < max_idx; idx++ ) in run()
116 if( max_idx == 1 ) in run()
172 progress = update_progress( progress, idx-1, max_idx, 0 ); in run()
Dtest_chesscorners.cpp211 int max_idx = (int)board_list.size()/2; in run_batch() local
215 for(int idx = 0; idx < max_idx; ++idx ) in run_batch()
309 progress = update_progress( progress, idx, max_idx, 0 ); in run_batch()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_mutex.cc139 u64 max_idx = MutexTypeInvalid; in Lock() local
146 max_idx = i; in Lock()
150 if (max_idx == MutexTypeInvalid) in Lock()
153 if (!CanLockAdj[max_idx][t]) { in Lock()
156 t, (uptr)max_idx); in Lock()
/external/llvm/lib/IR/
DBasicBlock.cpp288 unsigned max_idx = APN->getNumIncomingValues(); in removePredecessor() local
289 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!"); in removePredecessor()
290 if (max_idx == 2) { in removePredecessor()
294 if (this == Other) max_idx = 3; in removePredecessor()
298 if (max_idx <= 2 && !DontDeleteUselessPHIs) { in removePredecessor()
305 if (max_idx == 2) { in removePredecessor()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_coverage_libcdep.cc593 uptr max_idx = tr_event_pointer - tr_event_array; in DumpTrace() local
594 if (!max_idx) return; in DumpTrace()
622 uptr bytes_to_write = max_idx * sizeof(tr_event_array[0]); in DumpTrace()
637 VReport(1, " CovDump: Trace: %zd Events written\n", max_idx); in DumpTrace()
643 uptr max_idx = atomic_load(&cc_array_index, memory_order_relaxed); in DumpCallerCalleePairs() local
644 if (!max_idx) return; in DumpCallerCalleePairs()
650 for (uptr i = 0; i < max_idx; i++) { in DumpCallerCalleePairs()
/external/e2fsprogs/debugfs/
Dset_fields.c60 int max_idx; member
327 if (ss->max_idx > 0 && array_idx >= ss->max_idx) in find_field()
613 if (ss->max_idx > 0) in print_possible_fields()
614 sprintf(idx, "[%d]", ss->max_idx); in print_possible_fields()
/external/opencv3/modules/imgproc/test/
Dtest_histograms.cpp585 int min_idx[CV_MAX_DIM], max_idx[CV_MAX_DIM]; member in CV_MinMaxHistTest
636 cv::minMaxLoc(h, &_min_val, &_max_val, min_idx, max_idx ); in run_func()
641 cvGetMinMaxHistValue( hist[0], &min_val, &max_val, min_idx, max_idx ); in run_func()
669 if( min_idx[i] != min_idx0[i] || max_idx[i] != max_idx0[i] ) in validate_test_results()
674 i, min_idx[i], min_idx0[i], max_idx[i], max_idx0[i] ); in validate_test_results()
/external/opencv3/modules/imgproc/include/opencv2/imgproc/
Dimgproc_c.h716 int* max_idx CV_DEFAULT(NULL));
/external/opencv3/modules/core/test/
Dtest_math.cpp2232 for (int idx = 0, max_idx = 1000, progress = 0; idx < max_idx; ++idx) in run() local
2234 progress = update_progress(progress, idx-1, max_idx, 0); in run()
/external/opencv/cv/include/
Dcv.h848 int* max_idx CV_DEFAULT(NULL)); in LOAD_CHDL()