Searched defs:max_idx (Results 1 - 6 of 6) sorted by relevance

/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/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/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/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/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;

Completed in 591 milliseconds