Home
last modified time | relevance | path

Searched refs:m_indexes (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSIndexPath.cpp109 m_impl.m_outsourced.m_indexes = in Update()
119 if (m_impl.m_outsourced.m_indexes) in Update()
173 m_indexes = value; in SetIndexes()
208 m_indexes = 0; in Clear()
217 uint64_t m_indexes = 0; member
226 m_count = ((m_indexes >> 3) & 0x7); in _lengthForInlinePayload()
228 m_count = ((m_indexes >> 3) & 0x3); in _lengthForInlinePayload()
240 return {(m_indexes >> PACKED_INDEX_SHIFT_64(pos)) & in _indexAtPositionForInlinePayload()
250 return {(m_indexes >> PACKED_INDEX_SHIFT_32(pos)) & in _indexAtPositionForInlinePayload()
263 if (m_indexes) { in GetIndexAtIndex()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompactUnwindInfo.cpp165 m_section_contents_if_encrypted(), m_mutex(), m_indexes(), in CompactUnwindInfo()
366 if (m_indexes.size() > 0) { in ScanIndex()
367 m_indexes[m_indexes.size() - 1].lsda_array_end = lsda_offset; in ScanIndex()
374 m_indexes.push_back(this_index); in ScanIndex()
518 it = llvm::lower_bound(m_indexes, key); in GetCompactUnwindInfoForFunction()
519 if (it == m_indexes.end()) { in GetCompactUnwindInfoForFunction()
524 if (it != m_indexes.begin()) in GetCompactUnwindInfoForFunction()
533 if (next_it != m_indexes.end()) { in GetCompactUnwindInfoForFunction()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompactUnwindInfo.h147 std::vector<UnwindIndex> m_indexes; variable