Repository URL to install this package:
|
Version:
1.0 ▾
|
!<arch>
__.PKGDEF 0 0 0 644 5372 `
go object linux amd64 go1.6 X:none
build id "cc0d229e5f17bf82ee04798f9d1ccd0e11ca5ddf"
$$
package binary
import errors "errors"
import io "io"
import math "math"
import reflect "reflect"
type @"".ByteOrder interface { PutUint16(? []byte, ? uint16); PutUint32(? []byte, ? uint32); PutUint64(? []byte, ? uint64); String() (? string); Uint16(? []byte) (? uint16); Uint32(? []byte) (? uint32); Uint64(? []byte) (? uint64) }
type @"".littleEndian struct {}
func (? @"".littleEndian) GoString () (? string) { return string("binary.LittleEndian") }
func (? @"".littleEndian) PutUint16 (@"".b·1 []byte "esc:0x1", @"".v·2 uint16) { @"".b·1[int(0x0)] = byte(@"".v·2); @"".b·1[int(0x1)] = byte(@"".v·2 >> uint(0x8)) }
func (? @"".littleEndian) PutUint32 (@"".b·1 []byte "esc:0x1", @"".v·2 uint32) { @"".b·1[int(0x0)] = byte(@"".v·2); @"".b·1[int(0x1)] = byte(@"".v·2 >> uint(0x8)); @"".b·1[int(0x2)] = byte(@"".v·2 >> uint(0x10)); @"".b·1[int(0x3)] = byte(@"".v·2 >> uint(0x18)) }
func (? @"".littleEndian) PutUint64 (@"".b·1 []byte "esc:0x1", @"".v·2 uint64) { @"".b·1[int(0x0)] = byte(@"".v·2); @"".b·1[int(0x1)] = byte(@"".v·2 >> uint(0x8)); @"".b·1[int(0x2)] = byte(@"".v·2 >> uint(0x10)); @"".b·1[int(0x3)] = byte(@"".v·2 >> uint(0x18)); @"".b·1[int(0x4)] = byte(@"".v·2 >> uint(0x20)); @"".b·1[int(0x5)] = byte(@"".v·2 >> uint(0x28)); @"".b·1[int(0x6)] = byte(@"".v·2 >> uint(0x30)); @"".b·1[int(0x7)] = byte(@"".v·2 >> uint(0x38)) }
func (? @"".littleEndian) String () (? string) { return string("LittleEndian") }
func (? @"".littleEndian) Uint16 (@"".b·2 []byte "esc:0x1") (? uint16) { return uint16(@"".b·2[int(0x0)]) | uint16(@"".b·2[int(0x1)]) << uint(0x8) }
func (? @"".littleEndian) Uint32 (@"".b·2 []byte "esc:0x1") (? uint32) { return uint32(@"".b·2[int(0x0)]) | uint32(@"".b·2[int(0x1)]) << uint(0x8) | uint32(@"".b·2[int(0x2)]) << uint(0x10) | uint32(@"".b·2[int(0x3)]) << uint(0x18) }
func (? @"".littleEndian) Uint64 (@"".b·2 []byte "esc:0x1") (? uint64) { return uint64(@"".b·2[int(0x0)]) | uint64(@"".b·2[int(0x1)]) << uint(0x8) | uint64(@"".b·2[int(0x2)]) << uint(0x10) | uint64(@"".b·2[int(0x3)]) << uint(0x18) | uint64(@"".b·2[int(0x4)]) << uint(0x20) | uint64(@"".b·2[int(0x5)]) << uint(0x28) | uint64(@"".b·2[int(0x6)]) << uint(0x30) | uint64(@"".b·2[int(0x7)]) << uint(0x38) }
var @"".LittleEndian @"".littleEndian
type @"".bigEndian struct {}
func (? @"".bigEndian) GoString () (? string) { return string("binary.BigEndian") }
func (? @"".bigEndian) PutUint16 (@"".b·1 []byte "esc:0x1", @"".v·2 uint16) { @"".b·1[int(0x0)] = byte(@"".v·2 >> uint(0x8)); @"".b·1[int(0x1)] = byte(@"".v·2) }
func (? @"".bigEndian) PutUint32 (@"".b·1 []byte "esc:0x1", @"".v·2 uint32) { @"".b·1[int(0x0)] = byte(@"".v·2 >> uint(0x18)); @"".b·1[int(0x1)] = byte(@"".v·2 >> uint(0x10)); @"".b·1[int(0x2)] = byte(@"".v·2 >> uint(0x8)); @"".b·1[int(0x3)] = byte(@"".v·2) }
func (? @"".bigEndian) PutUint64 (@"".b·1 []byte "esc:0x1", @"".v·2 uint64) { @"".b·1[int(0x0)] = byte(@"".v·2 >> uint(0x38)); @"".b·1[int(0x1)] = byte(@"".v·2 >> uint(0x30)); @"".b·1[int(0x2)] = byte(@"".v·2 >> uint(0x28)); @"".b·1[int(0x3)] = byte(@"".v·2 >> uint(0x20)); @"".b·1[int(0x4)] = byte(@"".v·2 >> uint(0x18)); @"".b·1[int(0x5)] = byte(@"".v·2 >> uint(0x10)); @"".b·1[int(0x6)] = byte(@"".v·2 >> uint(0x8)); @"".b·1[int(0x7)] = byte(@"".v·2) }
func (? @"".bigEndian) String () (? string) { return string("BigEndian") }
func (? @"".bigEndian) Uint16 (@"".b·2 []byte "esc:0x1") (? uint16) { return uint16(@"".b·2[int(0x1)]) | uint16(@"".b·2[int(0x0)]) << uint(0x8) }
func (? @"".bigEndian) Uint32 (@"".b·2 []byte "esc:0x1") (? uint32) { return uint32(@"".b·2[int(0x3)]) | uint32(@"".b·2[int(0x2)]) << uint(0x8) | uint32(@"".b·2[int(0x1)]) << uint(0x10) | uint32(@"".b·2[int(0x0)]) << uint(0x18) }
func (? @"".bigEndian) Uint64 (@"".b·2 []byte "esc:0x1") (? uint64) { return uint64(@"".b·2[int(0x7)]) | uint64(@"".b·2[int(0x6)]) << uint(0x8) | uint64(@"".b·2[int(0x5)]) << uint(0x10) | uint64(@"".b·2[int(0x4)]) << uint(0x18) | uint64(@"".b·2[int(0x3)]) << uint(0x20) | uint64(@"".b·2[int(0x2)]) << uint(0x28) | uint64(@"".b·2[int(0x1)]) << uint(0x30) | uint64(@"".b·2[int(0x0)]) << uint(0x38) }
var @"".BigEndian @"".bigEndian
type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
func @"".Read (@"".r·2 @"io".Reader, @"".order·3 @"".ByteOrder, @"".data·4 interface {}) (? error)
type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) }
func @"".Write (@"".w·2 @"io".Writer, @"".order·3 @"".ByteOrder, @"".data·4 interface {}) (? error)
func @"".Size (@"".v·2 interface {}) (? int)
const @"".MaxVarintLen16 = 0x3
const @"".MaxVarintLen32 = 0x5
const @"".MaxVarintLen64 = 0xa
func @"".PutUvarint (@"".buf·2 []byte "esc:0x1", @"".x·3 uint64) (? int)
func @"".Uvarint (@"".buf·3 []byte "esc:0x1") (? uint64, ? int)
func @"".PutVarint (@"".buf·2 []byte "esc:0x1", @"".x·3 int64) (? int)
func @"".Varint (@"".buf·3 []byte "esc:0x1") (? int64, ? int)
type @"io".ByteReader interface { ReadByte() (@"io".c byte, @"io".err error) }
func @"".ReadUvarint (@"".r·3 @"io".ByteReader) (? uint64, ? error)
func @"".ReadVarint (@"".r·3 @"io".ByteReader) (? int64, ? error)
func @"".init ()
$$
_go_.o 0 0 0 644 179099 `
go object linux amd64 go1.6 X:none
!
go13lderrors.aio.amath.areflect.a þ,"".littleEndian.Uint16 À ÀdH% H;av@HL$HD$Hø v)f¶HÍHøvHÿÅf¶m HÁåH ëf\$ Ãè è è ëªÌÌÌÌÌÌÌÌÌÌ
$runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt @ "".~r1 0type.uint16 "".b type.[]uint8 ` ` h`
A Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ2"".littleEndian.PutUint16 À ÀdH% H;av=HT$HL$H·D$ Hù v HÓHùvHÿÃHÅfÁí@+Ãè è è ëÌÌÌÌÌÌÌÌÌÌÌÌÌ
~ $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt @ "".v 0type.uint16 "".b type.[]uint8 ` ` l
>" Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ,"".littleEndian.Uint32 dH% H;avuHL$HD$Hø v^¶HÍHøvKHÿŶm Áå ëHÍHøv/HŶm Áå ëHÍHøvHŶm Áå ë\$ Ãè è è è è érÿÿÿÌÌ
Ò $runtime.panicindex à $runtime.panicindex î $runtime.panicindex ü $runtime.panicindex 0runtime.morestack_noctxt @ "".~r1 0type.uint32 "".b type.[]uint8 vk
h( Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ2"".littleEndian.PutUint32 dH% H;avqHT$HL$D$ Hù vVHÓHùvDHÿÉÅÁí@+HÓHùv)HÃÅÁí@+HÓHùv
HÃÅÁí@+Ãè è è è è évÿÿÿÌÌÌÌÌÌ
Ê $runtime.panicindex Ø $runtime.panicindex æ $runtime.panicindex ô $runtime.panicindex 0runtime.morestack_noctxt @ "".v 0type.uint32 "".b type.[]uint8 .~
d, Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ,"".littleEndian.Uint64 à àdH% H;a HL$HD$Hø í ¶HÍHøÖ HÿŶm HÁåH ëHÍHø´ HŶm HÁåH ëHÍHø HŶm HÁåH ëHÍHøvrHŶm HÁå H ëHÍHøvSHŶm HÁå(H ëHÍHøv4HŶm HÁå0H ëHÍHøvHŶm HÁå8H ëH\$ Ãè è è è è è è è è éÛþÿÿÌÌÌÌÌÌÌÌÌÌÌ
È $runtime.panicindex Ö $runtime.panicindex ä $runtime.panicindex ò $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex ª $runtime.panicindex ¸ 0runtime.morestack_noctxt @ "".~r1 0type.uint64 "".b type.[]uint8 ° ° þ ãM Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ2"".littleEndian.PutUint64 À ÀdH% H;a HT$HL$HD$ Hù à HÓHùÊ HÿÃHÅHÁí@+HÓHù© HÃHÅHÁí@+HÓHù HÃHÅHÁí@+HÓHùviHÃHÅHÁí @+HÓHùvKHÃHÅHÁí(@+HÓHùv-HÃHÅHÁí0@+HÓHùvHÃHÅHÁí8@+Ãè è è è è è è è è éãþÿÿÌÌÌ
¸ $runtime.panicindex Æ $runtime.panicindex Ô $runtime.panicindex â $runtime.panicindex ð $runtime.panicindex þ $runtime.panicindex $runtime.panicindex $runtime.panicindex ¨ 0runtime.morestack_noctxt @ "".v 0type.uint64 "".b type.[]uint8 P"
ÛE Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ,"".littleEndian.String @ @1ÛH H\$HÇD$ ÃÌÌÌÌÌÌÌÌ
0go.string."LittleEndian" "".~r0 type.string ¬ Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ0"".littleEndian.GoString @ @1ÛH H\$HÇD$ ÃÌÌÌÌÌÌÌÌ
>go.string."binary.LittleEndian" "".~r0 type.string ° Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ&"".bigEndian.Uint16 À ÀdH% H;av?HL$HD$HËHøv%HÿÃf¶Hø vf¶)HÁåH ëf\$ Ãè è è ë«ÌÌÌÌÌÌÌÌÌÌÌ
$runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt @ "".~r1 0type.uint16 "".b type.[]uint8 ` ` ¸`
@ Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ,"".bigEndian.PutUint16 À ÀdH% H;av=HT$HL$H·D$ Hù v HÅfÁí@*HÓHùvHÿÈÃè è è ëÌÌÌÌÌÌÌÌÌÌÌÌÌ
~ $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt @ "".v 0type.uint16 "".b type.[]uint8 ` ` ¼
>" Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ&"".bigEndian.Uint32 dH% H;avtHL$HD$HËHøvZHöHÍHøvCHŶm Áå ëHÍHøv&HÿŶm Áå ëHø v
¶)Áå ë\$ Ãè è è è è ésÿÿÿÌÌÌ
Ð $runtime.panicindex Þ $runtime.panicindex ì $runtime.panicindex ú $runtime.panicindex 0runtime.morestack_noctxt @ "".~r1 0type.uint32 "".b type.[]uint8 Æj
g) Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ,"".bigEndian.PutUint32 dH% H;avqHT$HL$D$ Hù vVÅÁí@*HÓHùv>HÿÉÅÁí@+HÓHùv#HÃÅÁí@+HÓHùvHÃÃè è è è è évÿÿÿÌÌÌÌÌÌ
Ê $runtime.panicindex Ø $runtime.panicindex æ $runtime.panicindex ô $runtime.panicindex 0runtime.morestack_noctxt @ "".v 0type.uint32 "".b type.[]uint8 0Î
d, Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ&"".bigEndian.Uint64 à àdH% H;a HL$HD$HËHøé HöHÍHøÎ HŶm HÁåH ëHÍHø« HŶm HÁåH ëHÍHø HŶm HÁåH ëHÍHøviHŶm HÁå H ëHÍHøvJHŶm HÁå(H ëHÍHøv+HÿŶm HÁå0H ëHø v¶)HÁå8H ëH\$ Ãè è è è è è è è è éÜþÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
Æ $runtime.panicindex Ô $runtime.panicindex â $runtime.panicindex ð $runtime.panicindex þ $runtime.panicindex $runtime.panicindex $runtime.panicindex ¨ $runtime.panicindex ¶ 0runtime.morestack_noctxt @ "".~r1 0type.uint64 "".b type.[]uint8 ° ° Üý âN Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ,"".bigEndian.PutUint64 À ÀdH% H;aü HT$HL$HD$ Hù Ü HÅHÁí8@*HÓHù¾ HÿÃHÅHÁí0@+HÓHù HÃHÅHÁí(@+HÓHùvHÃHÅHÁí @+HÓHùvaHÃHÅHÁí@+HÓHùvCHÃHÅHÁí@+HÓHùv%HÃHÅHÁí@+HÓHùvHÃÃè è è è è è è è è éçþÿÿÌÌÌÌÌÌÌ
° $runtime.panicindex ¾ $runtime.panicindex Ì $runtime.panicindex Ú $runtime.panicindex è $runtime.panicindex ö $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt @ "".v 0type.uint64 "".b type.[]uint8 Pæ" ×I Tgclocals·2fccd208efe70893f9ac8d682812ae72 Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ&"".bigEndian.String @ @1ÛH H\$HÇD$ ÃÌÌÌÌÌÌÌÌ
*go.string."BigEndian" "".~r0 type.string ü Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ*"".bigEndian.GoString @ @1ÛH H\$HÇD$ ÃÌÌÌÌÌÌÌÌ
8go.string."binary.BigEndian" "".~r0 type.string Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad Tgclocals·33cdeccccebe80329f1fdbee7f5874cb J$GOROOT/src/encoding/binary/binary.goþ"".Read P PdH% H$ýÿÿH;Aã Hì WÀ$H $X $h $ $ $ 1ÛH$8 H$@ H$( H$H$0 H\$è HD$HD$HHø Ï H H$è HD$HHL$H$Ø 1ÛH$ H$ H$ Hø` H H$HD$HD$è HT$HL$ HD$(H$ H$H$ H\$H$ HT$H$ HL$H$ HD$ è HD$0HL$8H$H H$@ Hø tH$8 H$@ HÄ ÃH$( H$0 H$ H$H$ HD$è L$ L$ L$ H¼$ H´$ H$ H$ D$=ß~.8= =?µi =øt/à =ÓlÆ ueH- H9ê
¶ H$¸ HÇÃ û tAL\$LT$LL$H<$H^HÿӋD$ H$¸ 1ÛH$8 H$@ HÄ Ã=øt/ußH- H9êu>H$° HÇÀ <