Home | History | Annotate | Download | only in plan9obj

Lines Matching refs:binary

9 	"encoding/binary"
97 // Open opens the named file using os.Open and prepares it for use as a Plan 9 a.out binary.
125 m := binary.BigEndian.Uint32(magic)
133 // NewFile creates a new File for accessing a Plan 9 binary in an underlying reader.
134 // The Plan 9 binary is expected to start at position 0 in the ReaderAt.
148 if err := binary.Read(sr, binary.BigEndian, ph); err != nil {
162 if err := binary.Read(sr, binary.BigEndian, &f.Entry); err != nil {
202 var order binary.ByteOrder = binary.BigEndian
280 eltIdx := binary.BigEndian.Uint16(s.name[i : i+2])