Searched refs:max_idx (Results 1 - 13 of 13) sorted by relevance

/external/autotest/site_utils/tester_feedback/
H A 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/swiftshader/third_party/LLVM/lib/VMCore/
H A DBasicBlock.cpp238 unsigned max_idx = APN->getNumIncomingValues(); local
239 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!");
240 if (max_idx == 2) {
244 if (this == Other) max_idx = 3;
248 if (max_idx <= 2 && !DontDeleteUselessPHIs) {
255 if (max_idx == 2) {
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutex.cc140 u64 max_idx = MutexTypeInvalid; local
147 max_idx = i;
151 if (max_idx == MutexTypeInvalid)
153 // Printf(" last %d @%zu\n", max_idx, max_seq);
154 if (!CanLockAdj[max_idx][t]) {
157 t, (uptr)max_idx);
/external/llvm/lib/IR/
H A DBasicBlock.cpp303 unsigned max_idx = APN->getNumIncomingValues(); local
304 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!");
305 if (max_idx == 2) {
309 if (this == Other) max_idx = 3;
313 if (max_idx <= 2 && !DontDeleteUselessPHIs) {
320 if (max_idx == 2) {
/external/tensorflow/tensorflow/contrib/quantize/python/
H A Dquant_ops_test.py80 max_idx = (min_idx + 1) % 2
81 min_var, max_var = min_max_vars[min_idx], min_max_vars[max_idx]
/external/libxcam/cl_kernel/
H A Dkernel_fisheye.cl71 int max_idx = r + 1.0f;
72 float lsc_data = max_idx > (array_size - 1) ? lsc_array[array_size - 1] :
73 (r - min_idx) * (lsc_array[max_idx] - lsc_array[min_idx]) + lsc_array[min_idx];
/external/trappy/tests/trappy/plotter/
H A DConstraint.py106 max_idx = self._data.loc[window[1]:].index.min()
107 self._data = self._data.loc[min_idx:max_idx]
/external/trappy/trappy/plotter/
H A DConstraint.py106 max_idx = self._data.loc[window[1]:].index.min()
107 self._data = self._data.loc[min_idx:max_idx]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_coverage_libcdep.cc610 uptr max_idx = tr_event_pointer - tr_event_array; local
611 if (!max_idx) return;
639 uptr bytes_to_write = max_idx * sizeof(tr_event_array[0]);
654 VReport(1, " CovDump: Trace: %zd Events written\n", max_idx);
660 uptr max_idx = atomic_load(&cc_array_index, memory_order_relaxed); local
661 if (!max_idx) return;
667 for (uptr i = 0; i < max_idx; i++) {
/external/e2fsprogs/debugfs/
H A Dset_fields.c64 int max_idx; member in struct:field_set_info
418 if (ss->max_idx > 0 && array_idx >= ss->max_idx)
709 if (ss->max_idx > 0)
710 sprintf(idx, "[%d]", ss->max_idx);
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Ddisasm-a2xx.c598 int idx, max_idx; local
603 max_idx = 2 * cf->exec.address;
608 for (idx = 0; idx < max_idx; idx++) {
/external/syslinux/gpxe/src/drivers/net/ath5k/
H A Dath5k_phy.c2017 u8 pdadc_i, pdadc_n, pwr_step, pdg, max_idx, table_size; local
2072 max_idx = (pdadc_n < table_size) ? pdadc_n : table_size;
2075 while (pdadc_0 < max_idx)
2079 if (pdadc_n <= max_idx)
2093 (pdadc_0 - max_idx) * pwr_step;
/external/opencv/cv/include/
H A Dcv.h848 int* max_idx CV_DEFAULT(NULL));

Completed in 462 milliseconds