Lines Matching refs:m_start
132 : m_start(const_cast<uint8_t *>(static_cast<const uint8_t *>(data))), in DataExtractor()
171 : m_start(rhs.m_start), m_end(rhs.m_end), m_byte_order(rhs.m_byte_order), in DataExtractor()
180 m_start = rhs.m_start; in operator =()
194 m_start = nullptr; in Clear()
204 if (m_start != nullptr) { in GetSharedDataOffset()
209 assert(m_start >= data_bytes); in GetSharedDataOffset()
210 return m_start - data_bytes; in GetSharedDataOffset()
229 m_start = nullptr; in SetData()
232 m_start = const_cast<uint8_t *>(static_cast<const uint8_t *>(bytes)); in SetData()
233 m_end = m_start + length; in SetData()
284 m_start = m_end = nullptr; in SetData()
291 m_start = data_sp->GetBytes() + data_offset; 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()
364 val = ReadInt16(m_start, *offset_ptr); in GetU16_unchecked()
366 val = ReadSwapInt16(m_start, *offset_ptr); in GetU16_unchecked()
374 val = ReadInt32(m_start, *offset_ptr); in GetU32_unchecked()
376 val = ReadSwapInt32(m_start, *offset_ptr); in GetU32_unchecked()
384 val = ReadInt64(m_start, *offset_ptr); in GetU64_unchecked()
386 val = ReadSwapInt64(m_start, *offset_ptr); in GetU64_unchecked()
561 uint64_t res = ReadMaxInt64(&m_start[*offset_ptr], byte_size, m_byte_order); in GetMaxU64_unchecked()
968 const uint8_t *base_ptr = m_start; in Copy()