Searched refs:ReadLeb128 (Results 1 – 5 of 5) sorted by relevance
81 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()
39 [[nodiscard]] uint64_t ReadLeb128();
47 ASSERT_EQ(65U, in.ReadLeb128()); in TEST()
523 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()
77 uint64_t ByteInputStream::ReadLeb128() { in ReadLeb128() function in nogrod::ByteInputStream