Lines Matching refs:m_end
133 m_end(const_cast<uint8_t *>(static_cast<const uint8_t *>(data)) + length), in DataExtractor()
171 : m_start(rhs.m_start), m_end(rhs.m_end), m_byte_order(rhs.m_byte_order), in DataExtractor()
181 m_end = rhs.m_end; in operator =()
195 m_end = nullptr; in Clear()
230 m_end = nullptr; in SetData()
233 m_end = m_start + length; in SetData()
284 m_start = m_end = nullptr; in SetData()
295 m_end = m_start + data_length; // We got all the bytes we wanted in SetData()
297 m_end = m_start + bytes_left; // Not all the bytes requested were in SetData()
791 const char *end = reinterpret_cast<const char *>(m_end); in GetCStr()
849 uint64_t result = llvm::decodeULEB128(src, &byte_count, m_end); in GetULEB128()
866 int64_t result = llvm::decodeSLEB128(src, &byte_count, m_end); in GetSLEB128()
883 const uint8_t *end = m_end; in Skip_LEB128()