type buf …
type dataFormat …
type unknownFormat …
func (u unknownFormat) version() int { … }
func (u unknownFormat) dwarf64() (bool, bool) { … }
func (u unknownFormat) addrsize() int { … }
func makeBuf(d *Data, format dataFormat, name string, off Offset, data []byte) buf { … }
func (b *buf) uint8() uint8 { … }
func (b *buf) bytes(n int) []byte { … }
func (b *buf) skip(n int) { … }
func (b *buf) string() string { … }
func (b *buf) uint16() uint16 { … }
func (b *buf) uint24() uint32 { … }
func (b *buf) uint32() uint32 { … }
func (b *buf) uint64() uint64 { … }
func (b *buf) varint() (c uint64, bits uint) { … }
func (b *buf) uint() uint64 { … }
func (b *buf) int() int64 { … }
func (b *buf) addr() uint64 { … }
func (b *buf) unitLength() (length Offset, dwarf64 bool) { … }
func (b *buf) error(s string) { … }
type DecodeError …
func (e DecodeError) Error() string { … }