Home
last modified time | relevance | path

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

/frameworks/libs/binary_translation/tools/nogrod/
Dbyte_input_stream_tests.cc40 ASSERT_EQ(0x07060504U, in.ReadUint32()); in TEST()
69 EXPECT_DEATH((void)in.ReadUint32(), ""); in TEST()
Dbyte_input_stream.h37 [[nodiscard]] uint32_t ReadUint32();
Ddwarf_abbrev.cc520 address = address_size == 4 ? bs->ReadUint32() : bs->ReadUint64(); in ReadAttribute()
559 size = bs->ReadUint32(); in ReadAttribute()
719 uint64_t offset = cu->is_dwarf64() ? bs->ReadUint64() : bs->ReadUint32(); in ReadAttribute()
759 offset = cu->unit_offset() + bs->ReadUint32(); in ReadAttribute()
768 offset = cu->is_dwarf64() ? bs->ReadUint64() : bs->ReadUint32(); in ReadAttribute()
804 uint64_t offset = cu->is_dwarf64() ? bs->ReadUint64() : bs->ReadUint32(); in ReadAttribute()
817 return std::make_unique<DwarfStrXAttribute>(name, bs->ReadUint32()); in ReadAttribute()
Ddwarf_info.cc161 uint64_t unit_length = bs->ReadUint32(); in ReadCompilationUnit()
173 abbrev_offset = is_dwarf64 ? bs->ReadUint64() : bs->ReadUint32(); in ReadCompilationUnit()
185 abbrev_offset = is_dwarf64 ? bs->ReadUint64() : bs->ReadUint32(); in ReadCompilationUnit()
Dbyte_input_stream.cc59 uint32_t ByteInputStream::ReadUint32() { in ReadUint32() function in nogrod::ByteInputStream