Lines Matching refs:offset_ptr
254 uint64_t GetAddress(lldb::offset_t *offset_ptr) const;
256 uint64_t GetAddress_unchecked(lldb::offset_t *offset_ptr) const;
291 const char *GetCStr(lldb::offset_t *offset_ptr) const;
314 const char *GetCStr(lldb::offset_t *offset_ptr, lldb::offset_t len) const;
337 const void *GetData(lldb::offset_t *offset_ptr, lldb::offset_t length) const { in GetData() argument
338 const uint8_t *ptr = PeekData(*offset_ptr, length); in GetData()
340 *offset_ptr += length; in GetData()
437 float GetFloat(lldb::offset_t *offset_ptr) const;
439 double GetDouble(lldb::offset_t *offset_ptr) const;
441 long double GetLongDouble(lldb::offset_t *offset_ptr) const;
462 uint32_t GetMaxU32(lldb::offset_t *offset_ptr, size_t byte_size) const;
485 uint64_t GetMaxU64(lldb::offset_t *offset_ptr, size_t byte_size) const;
487 uint64_t GetMaxU64_unchecked(lldb::offset_t *offset_ptr,
511 int64_t GetMaxS64(lldb::offset_t *offset_ptr, size_t byte_size) const;
547 uint64_t GetMaxU64Bitfield(lldb::offset_t *offset_ptr, size_t size,
585 int64_t GetMaxS64Bitfield(lldb::offset_t *offset_ptr, size_t size,
610 uint8_t GetU8(lldb::offset_t *offset_ptr) const;
612 uint8_t GetU8_unchecked(lldb::offset_t *offset_ptr) const { in GetU8_unchecked() argument
613 uint8_t val = m_start[*offset_ptr]; in GetU8_unchecked()
614 *offset_ptr += 1; in GetU8_unchecked()
618 uint16_t GetU16_unchecked(lldb::offset_t *offset_ptr) const;
620 uint32_t GetU32_unchecked(lldb::offset_t *offset_ptr) const;
622 uint64_t GetU64_unchecked(lldb::offset_t *offset_ptr) const;
646 void *GetU8(lldb::offset_t *offset_ptr, void *dst, uint32_t count) const;
662 uint16_t GetU16(lldb::offset_t *offset_ptr) const;
687 void *GetU16(lldb::offset_t *offset_ptr, void *dst, uint32_t count) const;
703 uint32_t GetU32(lldb::offset_t *offset_ptr) const;
728 void *GetU32(lldb::offset_t *offset_ptr, void *dst, uint32_t count) const;
744 uint64_t GetU64(lldb::offset_t *offset_ptr) const;
769 void *GetU64(lldb::offset_t *offset_ptr, void *dst, uint32_t count) const;
787 int64_t GetSLEB128(lldb::offset_t *offset_ptr) const;
805 uint64_t GetULEB128(lldb::offset_t *offset_ptr) const;
947 uint32_t Skip_LEB128(lldb::offset_t *offset_ptr) const;
993 template <typename T> T Get(lldb::offset_t *offset_ptr, T fail_value) const { in Get() argument
997 const T *src = static_cast<const T *>(GetData(offset_ptr, src_size)); in Get()