Home
last modified time | relevance | path

Searched refs:ReadLeb128 (Results 1 – 5 of 5) sorted by relevance

/frameworks/libs/binary_translation/tools/nogrod/
Ddwarf_info.cc81 uint64_t abbrev_code = bs->ReadLeb128(); in ReadOneDie()
250 uint64_t code = bs.ReadLeb128(); in ReadAbbrev()
258 uint64_t entry_tag = bs.ReadLeb128(); in ReadAbbrev()
265 uint64_t attr_name = bs.ReadLeb128(); in ReadAbbrev()
266 uint64_t attr_form = bs.ReadLeb128(); in ReadAbbrev()
Dbyte_input_stream.h39 [[nodiscard]] uint64_t ReadLeb128();
Dbyte_input_stream_tests.cc47 ASSERT_EQ(65U, in.ReadLeb128()); in TEST()
Ddwarf_abbrev.cc523 address = bs->ReadLeb128(); in ReadAttribute()
562 size = bs->ReadLeb128(); in ReadAttribute()
606 new DwarfAttributeValue<uint64_t>(name, bs->ReadLeb128())); in ReadAttribute()
664 uint64_t length = bs->ReadLeb128(); in ReadAttribute()
724 return std::make_unique<DwarfAttributeValue<uint64_t>>(name, bs->ReadLeb128()); in ReadAttribute()
765 offset = cu->unit_offset() + bs->ReadLeb128(); in ReadAttribute()
809 return std::make_unique<DwarfStrXAttribute>(name, bs->ReadLeb128()); in ReadAttribute()
Dbyte_input_stream.cc77 uint64_t ByteInputStream::ReadLeb128() { in ReadLeb128() function in nogrod::ByteInputStream