Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DBasicBlock.cpp283 unsigned max_idx = APN->getNumIncomingValues(); in removePredecessor() local
284 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!"); in removePredecessor()
285 if (max_idx == 2) { in removePredecessor()
289 if (this == Other) max_idx = 3; in removePredecessor()
293 if (max_idx <= 2 && !DontDeleteUselessPHIs) { in removePredecessor()
300 if (max_idx == 2) { in removePredecessor()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_mutex.cc137 u64 max_idx = MutexTypeInvalid; in Lock() local
144 max_idx = i; in Lock()
148 if (max_idx == MutexTypeInvalid) in Lock()
151 if (!CanLockAdj[max_idx][t]) { in Lock()
154 t, (uptr)max_idx); in Lock()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_coverage_libcdep.cc582 uptr max_idx = tr_event_pointer - tr_event_array; in DumpTrace() local
583 if (!max_idx) return; in DumpTrace()
611 uptr bytes_to_write = max_idx * sizeof(tr_event_array[0]); in DumpTrace()
626 VReport(1, " CovDump: Trace: %zd Events written\n", max_idx); in DumpTrace()
632 uptr max_idx = atomic_load(&cc_array_index, memory_order_relaxed); in DumpCallerCalleePairs() local
633 if (!max_idx) return; in DumpCallerCalleePairs()
639 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/opencv/cv/include/
Dcv.h848 int* max_idx CV_DEFAULT(NULL)); in LOAD_CHDL()