Searched refs:stop_idx (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectSession.cpp | 148 std::pair<bool, uint64_t> stop_idx( in DoExecute() local 159 stop_idx.second = history.GetSize() - 1; in DoExecute() 160 } else if (stop_idx.first) { in DoExecute() 161 start_idx.second = stop_idx.second; in DoExecute() 162 stop_idx.second = history.GetSize() - 1; in DoExecute() 165 stop_idx.second = history.GetSize() - 1; in DoExecute() 168 if (!start_idx.first && !stop_idx.first && !count.first) { in DoExecute() 170 stop_idx.second = history.GetSize() - 1; in DoExecute() 173 stop_idx.second = start_idx.second + count.second - 1; in DoExecute() 174 } else if (!stop_idx.first) { in DoExecute() [all …]
|
/external/llvm-project/lldb/source/Interpreter/ |
D | CommandHistory.cpp | 99 size_t stop_idx) const { in Dump() 101 stop_idx = std::min(stop_idx + 1, m_history.size()); in Dump() 102 for (size_t counter = start_idx; counter < stop_idx; counter++) { in Dump()
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationHistory.cpp | 68 const uint32_t stop_idx = m_curr_idx + size; in Dump() local 69 for (uint32_t i = first_idx; i < stop_idx; ++i) { in Dump() 87 const uint32_t stop_idx = m_curr_idx + size; in Dump() local 88 for (uint32_t i = first_idx; i < stop_idx; ++i) { in Dump()
|
/external/rust/crates/rusqlite/src/vtab/ |
D | series.rs | 77 let mut stop_idx = None; in best_index() localVariable 93 stop_idx = Some(i); in best_index() 111 if let Some(stop_idx) = stop_idx { in best_index() 113 let mut constraint_usage = info.constraint_usage(stop_idx); in best_index()
|
/external/libxaac/decoder/ |
D | ixheaacd_lpp_tran.c | 108 WORD32 start_indx, WORD32 stop_idx, WORD32 low_band, in ixheaacd_filterstep3() argument 136 for (i = stop_idx - start_indx; i != 0; i--) { in ixheaacd_filterstep3() 566 WORD32 start_idx, WORD32 stop_idx, in ixheaacd_filter1_lp() argument 712 WORD32 len = stop_idx - start_idx - 1; in ixheaacd_filter1_lp() 743 WORD32 start_idx, WORD32 stop_idx, in ixheaacd_low_pow_hf_generator() argument 759 stop_idx = (hf_generator->pstr_settings->num_columns + stop_idx); in ixheaacd_low_pow_hf_generator() 772 if (len > stop_idx) len = stop_idx; in ixheaacd_low_pow_hf_generator() 780 num = (stop_idx - len - 1); in ixheaacd_low_pow_hf_generator() 811 start_idx, stop_idx, max_qmf_subband, start_patch, in ixheaacd_low_pow_hf_generator() 851 WORD32 start_idx, WORD32 stop_idx, in ixheaacd_hf_generator() argument [all …]
|
/external/llvm-project/lldb/examples/python/ |
D | process_events.py | 315 stop_idx = 0 328 if stop_idx == 0: 350 stop_idx += 1
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | CommandHistory.h | 44 size_t stop_idx = SIZE_MAX) const;
|