Home
last modified time | relevance | path

Searched refs:next_it (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DDecodedThread.cpp162 auto next_it = m_tscs.upper_bound(item_index); in GetTSCRangeByIndex()
163 if (next_it == m_tscs.begin()) in GetTSCRangeByIndex()
165 return prev(next_it)->second;
170 auto next_it = m_nanoseconds.upper_bound(item_index); in GetNanosecondsRangeByIndex()
171 if (next_it == m_nanoseconds.begin()) in GetNanosecondsRangeByIndex()
173 return prev(next_it)->second;
160 auto next_it = m_tscs.upper_bound(item_index); GetTSCRangeByIndex() local
168 auto next_it = m_nanoseconds.upper_bound(item_index); GetNanosecondsRangeByIndex() local
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompactUnwindInfo.cpp532 auto next_it = it + 1; in GetCompactUnwindInfoForFunction() local
533 if (next_it != m_indexes.end()) { in GetCompactUnwindInfoForFunction()
537 unwind_info.valid_range_offset_end = next_it->function_offset; in GetCompactUnwindInfoForFunction()