Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/elftosb/dist/common/
H A DStExecutableImage.cpp211 uint32_t cropFrom = filter.m_fromAddress; in cropRegionToFilter()
224 if (cropFrom > filter.m_toAddress || cropTo < filter.m_fromAddress) in cropRegionToFilter()
412 …return (firstByte >= m_fromAddress && firstByte <= m_toAddress) || (lastByte >= m_fromAddress && l… in matchesMemoryRegion()
424 …er.m_priority && ((m_fromAddress >= other.m_fromAddress && m_fromAddress <= other.m_toAddress) || … in compare()
437 if (m_fromAddress == other.m_fromAddress) in compare()
452 else if (m_fromAddress < other.m_fromAddress) in compare()
H A DStExecutableImage.h91 …uint32_t m_fromAddress; //!< Start address of the filter. Should be lower than or equal to #m_toAd… member
97 : m_action(action), m_fromAddress(from), m_toAddress(to), m_priority(priority) in m_action()