Home
last modified time | relevance | path

Searched refs:max_idx (Results 1 – 12 of 12) 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/swiftshader/third_party/LLVM/lib/VMCore/
DBasicBlock.cpp238 unsigned max_idx = APN->getNumIncomingValues(); in removePredecessor() local
239 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!"); in removePredecessor()
240 if (max_idx == 2) { in removePredecessor()
244 if (this == Other) max_idx = 3; in removePredecessor()
248 if (max_idx <= 2 && !DontDeleteUselessPHIs) { in removePredecessor()
255 if (max_idx == 2) { in removePredecessor()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_mutex.cc140 u64 max_idx = MutexTypeInvalid; in Lock() local
147 max_idx = i; in Lock()
151 if (max_idx == MutexTypeInvalid) in Lock()
154 if (!CanLockAdj[max_idx][t]) { in Lock()
157 t, (uptr)max_idx); in Lock()
/external/llvm/lib/IR/
DBasicBlock.cpp303 unsigned max_idx = APN->getNumIncomingValues(); in removePredecessor() local
304 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!"); in removePredecessor()
305 if (max_idx == 2) { in removePredecessor()
309 if (this == Other) max_idx = 3; in removePredecessor()
313 if (max_idx <= 2 && !DontDeleteUselessPHIs) { in removePredecessor()
320 if (max_idx == 2) { in removePredecessor()
/external/tensorflow/tensorflow/contrib/quantize/python/
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/
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/compiler-rt/lib/sanitizer_common/
Dsanitizer_coverage_libcdep.cc610 uptr max_idx = tr_event_pointer - tr_event_array; in DumpTrace() local
611 if (!max_idx) return; in DumpTrace()
639 uptr bytes_to_write = max_idx * sizeof(tr_event_array[0]); in DumpTrace()
654 VReport(1, " CovDump: Trace: %zd Events written\n", max_idx); in DumpTrace()
660 uptr max_idx = atomic_load(&cc_array_index, memory_order_relaxed); in DumpCallerCalleePairs() local
661 if (!max_idx) return; in DumpCallerCalleePairs()
667 for (uptr i = 0; i < max_idx; i++) { in DumpCallerCalleePairs()
/external/e2fsprogs/debugfs/
Dset_fields.c64 int max_idx; member
418 if (ss->max_idx > 0 && array_idx >= ss->max_idx) in find_field()
709 if (ss->max_idx > 0) in print_possible_fields()
710 sprintf(idx, "[%d]", ss->max_idx); in print_possible_fields()
/external/trappy/trappy/plotter/
DConstraint.py106 max_idx = self._data.loc[window[1]:].index.min()
107 self._data = self._data.loc[min_idx:max_idx]
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/
Ddisasm-a2xx.c598 int idx, max_idx; in disasm_a2xx() local
603 max_idx = 2 * cf->exec.address; in disasm_a2xx()
608 for (idx = 0; idx < max_idx; idx++) { in disasm_a2xx()
/external/syslinux/gpxe/src/drivers/net/ath5k/
Dath5k_phy.c2017 u8 pdadc_i, pdadc_n, pwr_step, pdg, max_idx, table_size; in ath5k_combine_pwr_to_pdadc_curves() local
2072 max_idx = (pdadc_n < table_size) ? pdadc_n : table_size; in ath5k_combine_pwr_to_pdadc_curves()
2075 while (pdadc_0 < max_idx) in ath5k_combine_pwr_to_pdadc_curves()
2079 if (pdadc_n <= max_idx) in ath5k_combine_pwr_to_pdadc_curves()
2093 (pdadc_0 - max_idx) * pwr_step; in ath5k_combine_pwr_to_pdadc_curves()
/external/opencv/cv/include/
Dcv.h848 int* max_idx CV_DEFAULT(NULL)); in LOAD_CHDL()