Lines Matching refs:uint8_t
239 uint16_t get_u16_le(const uint8_t* bytes) { in get_u16_le()
243 uint32_t get_u32_le(const uint8_t* bytes) { in get_u32_le()
248 uint64_t get_u64_le(const uint8_t* bytes) { in get_u64_le()
254 uint16_t get_u16_be(const uint8_t* bytes) { in get_u16_be()
258 uint32_t get_u32_be(const uint8_t* bytes) { in get_u32_be()
263 uint64_t get_u64_be(const uint8_t* bytes) { in get_u64_be()
275 virtual const uint8_t* GetBytesAt(off_t pos, size_t size) = 0;
287 virtual const uint8_t* GetBytesAt(off_t pos, size_t size) { in GetBytesAt()
299 uint8_t buffer_[kMaxBytes];
307 const uint8_t* buf = GetBytesAt(pos, 2); in GetU16At()
312 const uint8_t* buf = GetBytesAt(pos, 4); in GetU32At()
317 const uint8_t* buf = GetBytesAt(pos, 8); in GetU64At()
327 const uint8_t* buf = GetBytesAt(pos, 2); in GetU16At()
332 const uint8_t* buf = GetBytesAt(pos, 4); in GetU32At()
337 const uint8_t* buf = GetBytesAt(pos, 8); in GetU64At()
355 bool elf_ident_is_elf(const uint8_t* ident) { in elf_ident_is_elf()
362 bool elf_ident_is_big_endian(const uint8_t* ident) { in elf_ident_is_big_endian()
366 bool elf_ident_is_64bits(const uint8_t* ident) { in elf_ident_is_64bits()
384 uint8_t e_ident[EI_NIDENT];
425 uint8_t e_ident[EI_NIDENT];
588 const uint8_t* p = reader_.GetBytesAt(str_table, 1); in GetStringByIndex()
723 uint8_t ident[EI_NIDENT]; in Open()