]> Cypherpunks.ru repositories - gostls13.git/blobdiff - api/go1.txt
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / api / go1.txt
index c0d231e0bb0ceff56b7f7b167dcbd33df26f9589..5e3dea5a372525191ed651a6d46be0a924b7d3ab 100644 (file)
@@ -12,10 +12,10 @@ pkg archive/tar, const TypeXHeader ideal-char
 pkg archive/tar, func NewReader(io.Reader) *Reader
 pkg archive/tar, func NewWriter(io.Writer) *Writer
 pkg archive/tar, method (*Reader) Next() (*Header, error)
-pkg archive/tar, method (*Reader) Read([]byte) (int, error)
+pkg archive/tar, method (*Reader) Read([]uint8) (int, error)
 pkg archive/tar, method (*Writer) Close() error
 pkg archive/tar, method (*Writer) Flush() error
-pkg archive/tar, method (*Writer) Write([]byte) (int, error)
+pkg archive/tar, method (*Writer) Write([]uint8) (int, error)
 pkg archive/tar, method (*Writer) WriteHeader(*Header) error
 pkg archive/tar, type Header struct
 pkg archive/tar, type Header struct, AccessTime time.Time
@@ -29,7 +29,7 @@ pkg archive/tar, type Header struct, ModTime time.Time
 pkg archive/tar, type Header struct, Mode int64
 pkg archive/tar, type Header struct, Name string
 pkg archive/tar, type Header struct, Size int64
-pkg archive/tar, type Header struct, Typeflag byte
+pkg archive/tar, type Header struct, Typeflag uint8
 pkg archive/tar, type Header struct, Uid int
 pkg archive/tar, type Header struct, Uname string
 pkg archive/tar, type Reader struct
@@ -67,7 +67,7 @@ pkg archive/zip, type FileHeader struct, Comment string
 pkg archive/zip, type FileHeader struct, CompressedSize uint32
 pkg archive/zip, type FileHeader struct, CreatorVersion uint16
 pkg archive/zip, type FileHeader struct, ExternalAttrs uint32
-pkg archive/zip, type FileHeader struct, Extra []byte
+pkg archive/zip, type FileHeader struct, Extra []uint8
 pkg archive/zip, type FileHeader struct, Flags uint16
 pkg archive/zip, type FileHeader struct, Method uint16
 pkg archive/zip, type FileHeader struct, ModifiedDate uint16
@@ -90,38 +90,38 @@ pkg bufio, func NewReaderSize(io.Reader, int) *Reader
 pkg bufio, func NewWriter(io.Writer) *Writer
 pkg bufio, func NewWriterSize(io.Writer, int) *Writer
 pkg bufio, method (*Reader) Buffered() int
-pkg bufio, method (*Reader) Peek(int) ([]byte, error)
-pkg bufio, method (*Reader) Read([]byte) (int, error)
-pkg bufio, method (*Reader) ReadByte() (byte, error)
-pkg bufio, method (*Reader) ReadBytes(byte) ([]byte, error)
-pkg bufio, method (*Reader) ReadLine() ([]byte, bool, error)
-pkg bufio, method (*Reader) ReadRune() (rune, int, error)
-pkg bufio, method (*Reader) ReadSlice(byte) ([]byte, error)
-pkg bufio, method (*Reader) ReadString(byte) (string, error)
+pkg bufio, method (*Reader) Peek(int) ([]uint8, error)
+pkg bufio, method (*Reader) Read([]uint8) (int, error)
+pkg bufio, method (*Reader) ReadByte() (uint8, error)
+pkg bufio, method (*Reader) ReadBytes(uint8) ([]uint8, error)
+pkg bufio, method (*Reader) ReadLine() ([]uint8, bool, error)
+pkg bufio, method (*Reader) ReadRune() (int32, int, error)
+pkg bufio, method (*Reader) ReadSlice(uint8) ([]uint8, error)
+pkg bufio, method (*Reader) ReadString(uint8) (string, error)
 pkg bufio, method (*Reader) UnreadByte() error
 pkg bufio, method (*Reader) UnreadRune() error
 pkg bufio, method (*Writer) Available() int
 pkg bufio, method (*Writer) Buffered() int
 pkg bufio, method (*Writer) Flush() error
-pkg bufio, method (*Writer) Write([]byte) (int, error)
-pkg bufio, method (*Writer) WriteByte(byte) error
-pkg bufio, method (*Writer) WriteRune(rune) (int, error)
+pkg bufio, method (*Writer) Write([]uint8) (int, error)
+pkg bufio, method (*Writer) WriteByte(uint8) error
+pkg bufio, method (*Writer) WriteRune(int32) (int, error)
 pkg bufio, method (*Writer) WriteString(string) (int, error)
 pkg bufio, method (ReadWriter) Available() int
 pkg bufio, method (ReadWriter) Flush() error
-pkg bufio, method (ReadWriter) Peek(int) ([]byte, error)
-pkg bufio, method (ReadWriter) Read([]byte) (int, error)
-pkg bufio, method (ReadWriter) ReadByte() (byte, error)
-pkg bufio, method (ReadWriter) ReadBytes(byte) ([]byte, error)
-pkg bufio, method (ReadWriter) ReadLine() ([]byte, bool, error)
-pkg bufio, method (ReadWriter) ReadRune() (rune, int, error)
-pkg bufio, method (ReadWriter) ReadSlice(byte) ([]byte, error)
-pkg bufio, method (ReadWriter) ReadString(byte) (string, error)
+pkg bufio, method (ReadWriter) Peek(int) ([]uint8, error)
+pkg bufio, method (ReadWriter) Read([]uint8) (int, error)
+pkg bufio, method (ReadWriter) ReadByte() (uint8, error)
+pkg bufio, method (ReadWriter) ReadBytes(uint8) ([]uint8, error)
+pkg bufio, method (ReadWriter) ReadLine() ([]uint8, bool, error)
+pkg bufio, method (ReadWriter) ReadRune() (int32, int, error)
+pkg bufio, method (ReadWriter) ReadSlice(uint8) ([]uint8, error)
+pkg bufio, method (ReadWriter) ReadString(uint8) (string, error)
 pkg bufio, method (ReadWriter) UnreadByte() error
 pkg bufio, method (ReadWriter) UnreadRune() error
-pkg bufio, method (ReadWriter) Write([]byte) (int, error)
-pkg bufio, method (ReadWriter) WriteByte(byte) error
-pkg bufio, method (ReadWriter) WriteRune(rune) (int, error)
+pkg bufio, method (ReadWriter) Write([]uint8) (int, error)
+pkg bufio, method (ReadWriter) WriteByte(uint8) error
+pkg bufio, method (ReadWriter) WriteRune(int32) (int, error)
 pkg bufio, method (ReadWriter) WriteString(string) (int, error)
 pkg bufio, type ReadWriter struct
 pkg bufio, type ReadWriter struct, embedded *Reader
@@ -133,73 +133,73 @@ pkg bufio, var ErrInvalidUnreadByte error
 pkg bufio, var ErrInvalidUnreadRune error
 pkg bufio, var ErrNegativeCount error
 pkg bytes, const MinRead ideal-int
-pkg bytes, func Compare([]byte) int
-pkg bytes, func Contains([]byte) bool
-pkg bytes, func Count([]byte) int
-pkg bytes, func Equal([]byte) bool
-pkg bytes, func EqualFold([]byte) bool
-pkg bytes, func Fields([]byte) [][]byte
-pkg bytes, func FieldsFunc([]byte, func(rune) bool) [][]byte
-pkg bytes, func HasPrefix([]byte) bool
-pkg bytes, func HasSuffix([]byte) bool
-pkg bytes, func Index([]byte) int
-pkg bytes, func IndexAny([]byte, string) int
-pkg bytes, func IndexByte([]byte, byte) int
-pkg bytes, func IndexFunc([]byte, func(rune) bool) int
-pkg bytes, func IndexRune([]byte, rune) int
-pkg bytes, func Join([][]byte, []byte) []byte
-pkg bytes, func LastIndex([]byte) int
-pkg bytes, func LastIndexAny([]byte, string) int
-pkg bytes, func LastIndexFunc([]byte, func(rune) bool) int
-pkg bytes, func Map(func(rune) rune, []byte) []byte
-pkg bytes, func NewBuffer([]byte) *Buffer
+pkg bytes, func Compare([]uint8, []uint8) int
+pkg bytes, func Contains([]uint8, []uint8) bool
+pkg bytes, func Count([]uint8, []uint8) int
+pkg bytes, func Equal([]uint8, []uint8) bool
+pkg bytes, func EqualFold([]uint8, []uint8) bool
+pkg bytes, func Fields([]uint8) [][]uint8
+pkg bytes, func FieldsFunc([]uint8, func(int32) bool) [][]uint8
+pkg bytes, func HasPrefix([]uint8, []uint8) bool
+pkg bytes, func HasSuffix([]uint8, []uint8) bool
+pkg bytes, func Index([]uint8, []uint8) int
+pkg bytes, func IndexAny([]uint8, string) int
+pkg bytes, func IndexByte([]uint8, uint8) int
+pkg bytes, func IndexFunc([]uint8, func(int32) bool) int
+pkg bytes, func IndexRune([]uint8, int32) int
+pkg bytes, func Join([][]uint8, []uint8) []uint8
+pkg bytes, func LastIndex([]uint8, []uint8) int
+pkg bytes, func LastIndexAny([]uint8, string) int
+pkg bytes, func LastIndexFunc([]uint8, func(int32) bool) int
+pkg bytes, func Map(func(int32) int32, []uint8) []uint8
+pkg bytes, func NewBuffer([]uint8) *Buffer
 pkg bytes, func NewBufferString(string) *Buffer
-pkg bytes, func NewReader([]byte) *Reader
-pkg bytes, func Repeat([]byte, int) []byte
-pkg bytes, func Replace([]byte, int) []byte
-pkg bytes, func Runes([]byte) []rune
-pkg bytes, func Split([]byte) [][]byte
-pkg bytes, func SplitAfter([]byte) [][]byte
-pkg bytes, func SplitAfterN([]byte, int) [][]byte
-pkg bytes, func SplitN([]byte, int) [][]byte
-pkg bytes, func Title([]byte) []byte
-pkg bytes, func ToLower([]byte) []byte
-pkg bytes, func ToLowerSpecial(unicode.SpecialCase, []byte) []byte
-pkg bytes, func ToTitle([]byte) []byte
-pkg bytes, func ToTitleSpecial(unicode.SpecialCase, []byte) []byte
-pkg bytes, func ToUpper([]byte) []byte
-pkg bytes, func ToUpperSpecial(unicode.SpecialCase, []byte) []byte
-pkg bytes, func Trim([]byte, string) []byte
-pkg bytes, func TrimFunc([]byte, func(rune) bool) []byte
-pkg bytes, func TrimLeft([]byte, string) []byte
-pkg bytes, func TrimLeftFunc([]byte, func(rune) bool) []byte
-pkg bytes, func TrimRight([]byte, string) []byte
-pkg bytes, func TrimRightFunc([]byte, func(rune) bool) []byte
-pkg bytes, func TrimSpace([]byte) []byte
-pkg bytes, method (*Buffer) Bytes() []byte
+pkg bytes, func NewReader([]uint8) *Reader
+pkg bytes, func Repeat([]uint8, int) []uint8
+pkg bytes, func Replace([]uint8, []uint8, []uint8, int) []uint8
+pkg bytes, func Runes([]uint8) []int32
+pkg bytes, func Split([]uint8, []uint8) [][]uint8
+pkg bytes, func SplitAfter([]uint8, []uint8) [][]uint8
+pkg bytes, func SplitAfterN([]uint8, []uint8, int) [][]uint8
+pkg bytes, func SplitN([]uint8, []uint8, int) [][]uint8
+pkg bytes, func Title([]uint8) []uint8
+pkg bytes, func ToLower([]uint8) []uint8
+pkg bytes, func ToLowerSpecial(unicode.SpecialCase, []uint8) []uint8
+pkg bytes, func ToTitle([]uint8) []uint8
+pkg bytes, func ToTitleSpecial(unicode.SpecialCase, []uint8) []uint8
+pkg bytes, func ToUpper([]uint8) []uint8
+pkg bytes, func ToUpperSpecial(unicode.SpecialCase, []uint8) []uint8
+pkg bytes, func Trim([]uint8, string) []uint8
+pkg bytes, func TrimFunc([]uint8, func(int32) bool) []uint8
+pkg bytes, func TrimLeft([]uint8, string) []uint8
+pkg bytes, func TrimLeftFunc([]uint8, func(int32) bool) []uint8
+pkg bytes, func TrimRight([]uint8, string) []uint8
+pkg bytes, func TrimRightFunc([]uint8, func(int32) bool) []uint8
+pkg bytes, func TrimSpace([]uint8) []uint8
+pkg bytes, method (*Buffer) Bytes() []uint8
 pkg bytes, method (*Buffer) Len() int
-pkg bytes, method (*Buffer) Next(int) []byte
-pkg bytes, method (*Buffer) Read([]byte) (int, error)
-pkg bytes, method (*Buffer) ReadByte() (byte, error)
-pkg bytes, method (*Buffer) ReadBytes(byte) ([]byte, error)
+pkg bytes, method (*Buffer) Next(int) []uint8
+pkg bytes, method (*Buffer) Read([]uint8) (int, error)
+pkg bytes, method (*Buffer) ReadByte() (uint8, error)
+pkg bytes, method (*Buffer) ReadBytes(uint8) ([]uint8, error)
 pkg bytes, method (*Buffer) ReadFrom(io.Reader) (int64, error)
-pkg bytes, method (*Buffer) ReadRune() (rune, int, error)
-pkg bytes, method (*Buffer) ReadString(byte) (string, error)
+pkg bytes, method (*Buffer) ReadRune() (int32, int, error)
+pkg bytes, method (*Buffer) ReadString(uint8) (string, error)
 pkg bytes, method (*Buffer) Reset()
 pkg bytes, method (*Buffer) String() string
 pkg bytes, method (*Buffer) Truncate(int)
 pkg bytes, method (*Buffer) UnreadByte() error
 pkg bytes, method (*Buffer) UnreadRune() error
-pkg bytes, method (*Buffer) Write([]byte) (int, error)
-pkg bytes, method (*Buffer) WriteByte(byte) error
-pkg bytes, method (*Buffer) WriteRune(rune) (int, error)
+pkg bytes, method (*Buffer) Write([]uint8) (int, error)
+pkg bytes, method (*Buffer) WriteByte(uint8) error
+pkg bytes, method (*Buffer) WriteRune(int32) (int, error)
 pkg bytes, method (*Buffer) WriteString(string) (int, error)
 pkg bytes, method (*Buffer) WriteTo(io.Writer) (int64, error)
 pkg bytes, method (*Reader) Len() int
-pkg bytes, method (*Reader) Read([]byte) (int, error)
-pkg bytes, method (*Reader) ReadAt([]byte, int64) (int, error)
-pkg bytes, method (*Reader) ReadByte() (byte, error)
-pkg bytes, method (*Reader) ReadRune() (rune, int, error)
+pkg bytes, method (*Reader) Read([]uint8) (int, error)
+pkg bytes, method (*Reader) ReadAt([]uint8, int64) (int, error)
+pkg bytes, method (*Reader) ReadByte() (uint8, error)
+pkg bytes, method (*Reader) ReadRune() (int32, int, error)
 pkg bytes, method (*Reader) Seek(int64, int) (int64, error)
 pkg bytes, method (*Reader) UnreadByte() error
 pkg bytes, method (*Reader) UnreadRune() error
@@ -214,14 +214,14 @@ pkg compress/flate, const BestSpeed ideal-int
 pkg compress/flate, const DefaultCompression ideal-int
 pkg compress/flate, const NoCompression ideal-int
 pkg compress/flate, func NewReader(io.Reader) io.ReadCloser
-pkg compress/flate, func NewReaderDict(io.Reader, []byte) io.ReadCloser
+pkg compress/flate, func NewReaderDict(io.Reader, []uint8) io.ReadCloser
 pkg compress/flate, func NewWriter(io.Writer, int) (*Writer, error)
-pkg compress/flate, func NewWriterDict(io.Writer, int, []byte) (*Writer, error)
+pkg compress/flate, func NewWriterDict(io.Writer, int, []uint8) (*Writer, error)
 pkg compress/flate, method (*ReadError) Error() string
 pkg compress/flate, method (*WriteError) Error() string
 pkg compress/flate, method (*Writer) Close() error
 pkg compress/flate, method (*Writer) Flush() error
-pkg compress/flate, method (*Writer) Write([]byte) (int, error)
+pkg compress/flate, method (*Writer) Write([]uint8) (int, error)
 pkg compress/flate, method (CorruptInputError) Error() string
 pkg compress/flate, method (InternalError) Error() string
 pkg compress/flate, type CorruptInputError int64
@@ -230,8 +230,8 @@ pkg compress/flate, type ReadError struct
 pkg compress/flate, type ReadError struct, Err error
 pkg compress/flate, type ReadError struct, Offset int64
 pkg compress/flate, type Reader interface { Read, ReadByte }
-pkg compress/flate, type Reader interface, Read([]byte) (int, error)
-pkg compress/flate, type Reader interface, ReadByte() (byte, error)
+pkg compress/flate, type Reader interface, Read([]uint8) (int, error)
+pkg compress/flate, type Reader interface, ReadByte() (uint8, error)
 pkg compress/flate, type WriteError struct
 pkg compress/flate, type WriteError struct, Err error
 pkg compress/flate, type WriteError struct, Offset int64
@@ -244,15 +244,15 @@ pkg compress/gzip, func NewReader(io.Reader) (*Reader, error)
 pkg compress/gzip, func NewWriter(io.Writer) *Writer
 pkg compress/gzip, func NewWriterLevel(io.Writer, int) (*Writer, error)
 pkg compress/gzip, method (*Reader) Close() error
-pkg compress/gzip, method (*Reader) Read([]byte) (int, error)
+pkg compress/gzip, method (*Reader) Read([]uint8) (int, error)
 pkg compress/gzip, method (*Writer) Close() error
-pkg compress/gzip, method (*Writer) Write([]byte) (int, error)
+pkg compress/gzip, method (*Writer) Write([]uint8) (int, error)
 pkg compress/gzip, type Header struct
 pkg compress/gzip, type Header struct, Comment string
-pkg compress/gzip, type Header struct, Extra []byte
+pkg compress/gzip, type Header struct, Extra []uint8
 pkg compress/gzip, type Header struct, ModTime time.Time
 pkg compress/gzip, type Header struct, Name string
-pkg compress/gzip, type Header struct, OS byte
+pkg compress/gzip, type Header struct, OS uint8
 pkg compress/gzip, type Reader struct
 pkg compress/gzip, type Reader struct, embedded Header
 pkg compress/gzip, type Writer struct
@@ -269,13 +269,13 @@ pkg compress/zlib, const BestSpeed ideal-int
 pkg compress/zlib, const DefaultCompression ideal-int
 pkg compress/zlib, const NoCompression ideal-int
 pkg compress/zlib, func NewReader(io.Reader) (io.ReadCloser, error)
-pkg compress/zlib, func NewReaderDict(io.Reader, []byte) (io.ReadCloser, error)
+pkg compress/zlib, func NewReaderDict(io.Reader, []uint8) (io.ReadCloser, error)
 pkg compress/zlib, func NewWriter(io.Writer) *Writer
 pkg compress/zlib, func NewWriterLevel(io.Writer, int) (*Writer, error)
-pkg compress/zlib, func NewWriterLevelDict(io.Writer, int, []byte) (*Writer, error)
+pkg compress/zlib, func NewWriterLevelDict(io.Writer, int, []uint8) (*Writer, error)
 pkg compress/zlib, method (*Writer) Close() error
 pkg compress/zlib, method (*Writer) Flush() error
-pkg compress/zlib, method (*Writer) Write([]byte) (int, error)
+pkg compress/zlib, method (*Writer) Write([]uint8) (int, error)
 pkg compress/zlib, type Writer struct
 pkg compress/zlib, var ErrChecksum error
 pkg compress/zlib, var ErrDictionary error
@@ -286,10 +286,10 @@ pkg container/heap, func Push(Interface, interface{})
 pkg container/heap, func Remove(Interface, int) interface{}
 pkg container/heap, type Interface interface { Len, Less, Pop, Push, Swap }
 pkg container/heap, type Interface interface, Len() int
-pkg container/heap, type Interface interface, Less(int) bool
+pkg container/heap, type Interface interface, Less(int, int) bool
 pkg container/heap, type Interface interface, Pop() interface{}
 pkg container/heap, type Interface interface, Push(interface{})
-pkg container/heap, type Interface interface, Swap(int)
+pkg container/heap, type Interface interface, Swap(int, int)
 pkg container/list, func New() *List
 pkg container/list, method (*Element) Next() *Element
 pkg container/list, method (*Element) Prev() *Element
@@ -335,27 +335,27 @@ pkg crypto, method (Hash) Size() int
 pkg crypto, type Hash uint
 pkg crypto, type PrivateKey interface {}
 pkg crypto/aes, const BlockSize ideal-int
-pkg crypto/aes, func NewCipher([]byte) (cipher.Block, error)
+pkg crypto/aes, func NewCipher([]uint8) (cipher.Block, error)
 pkg crypto/aes, method (KeySizeError) Error() string
 pkg crypto/aes, type KeySizeError int
-pkg crypto/cipher, func NewCBCDecrypter(Block, []byte) BlockMode
-pkg crypto/cipher, func NewCBCEncrypter(Block, []byte) BlockMode
-pkg crypto/cipher, func NewCFBDecrypter(Block, []byte) Stream
-pkg crypto/cipher, func NewCFBEncrypter(Block, []byte) Stream
-pkg crypto/cipher, func NewCTR(Block, []byte) Stream
-pkg crypto/cipher, func NewOFB(Block, []byte) Stream
-pkg crypto/cipher, method (StreamReader) Read([]byte) (int, error)
+pkg crypto/cipher, func NewCBCDecrypter(Block, []uint8) BlockMode
+pkg crypto/cipher, func NewCBCEncrypter(Block, []uint8) BlockMode
+pkg crypto/cipher, func NewCFBDecrypter(Block, []uint8) Stream
+pkg crypto/cipher, func NewCFBEncrypter(Block, []uint8) Stream
+pkg crypto/cipher, func NewCTR(Block, []uint8) Stream
+pkg crypto/cipher, func NewOFB(Block, []uint8) Stream
+pkg crypto/cipher, method (StreamReader) Read([]uint8) (int, error)
 pkg crypto/cipher, method (StreamWriter) Close() error
-pkg crypto/cipher, method (StreamWriter) Write([]byte) (int, error)
+pkg crypto/cipher, method (StreamWriter) Write([]uint8) (int, error)
 pkg crypto/cipher, type Block interface { BlockSize, Decrypt, Encrypt }
 pkg crypto/cipher, type Block interface, BlockSize() int
-pkg crypto/cipher, type Block interface, Decrypt([]byte)
-pkg crypto/cipher, type Block interface, Encrypt([]byte)
+pkg crypto/cipher, type Block interface, Decrypt([]uint8, []uint8)
+pkg crypto/cipher, type Block interface, Encrypt([]uint8, []uint8)
 pkg crypto/cipher, type BlockMode interface { BlockSize, CryptBlocks }
 pkg crypto/cipher, type BlockMode interface, BlockSize() int
-pkg crypto/cipher, type BlockMode interface, CryptBlocks([]byte)
+pkg crypto/cipher, type BlockMode interface, CryptBlocks([]uint8, []uint8)
 pkg crypto/cipher, type Stream interface { XORKeyStream }
-pkg crypto/cipher, type Stream interface, XORKeyStream([]byte)
+pkg crypto/cipher, type Stream interface, XORKeyStream([]uint8, []uint8)
 pkg crypto/cipher, type StreamReader struct
 pkg crypto/cipher, type StreamReader struct, R io.Reader
 pkg crypto/cipher, type StreamReader struct, S Stream
@@ -364,8 +364,8 @@ pkg crypto/cipher, type StreamWriter struct, Err error
 pkg crypto/cipher, type StreamWriter struct, S Stream
 pkg crypto/cipher, type StreamWriter struct, W io.Writer
 pkg crypto/des, const BlockSize ideal-int
-pkg crypto/des, func NewCipher([]byte) (cipher.Block, error)
-pkg crypto/des, func NewTripleDESCipher([]byte) (cipher.Block, error)
+pkg crypto/des, func NewCipher([]uint8) (cipher.Block, error)
+pkg crypto/des, func NewTripleDESCipher([]uint8) (cipher.Block, error)
 pkg crypto/des, method (KeySizeError) Error() string
 pkg crypto/des, type KeySizeError int
 pkg crypto/dsa, const L1024N160 ParameterSizes
@@ -374,8 +374,8 @@ pkg crypto/dsa, const L2048N256 ParameterSizes
 pkg crypto/dsa, const L3072N256 ParameterSizes
 pkg crypto/dsa, func GenerateKey(*PrivateKey, io.Reader) error
 pkg crypto/dsa, func GenerateParameters(*Parameters, io.Reader, ParameterSizes) error
-pkg crypto/dsa, func Sign(io.Reader, *PrivateKey, []byte) (*big.Int, error)
-pkg crypto/dsa, func Verify(*PublicKey, []byte, *big.Int) bool
+pkg crypto/dsa, func Sign(io.Reader, *PrivateKey, []uint8) (*big.Int, *big.Int, error)
+pkg crypto/dsa, func Verify(*PublicKey, []uint8, *big.Int, *big.Int) bool
 pkg crypto/dsa, type ParameterSizes int
 pkg crypto/dsa, type Parameters struct
 pkg crypto/dsa, type Parameters struct, G *big.Int
@@ -389,8 +389,20 @@ pkg crypto/dsa, type PublicKey struct, Y *big.Int
 pkg crypto/dsa, type PublicKey struct, embedded Parameters
 pkg crypto/dsa, var ErrInvalidPublicKey error
 pkg crypto/ecdsa, func GenerateKey(elliptic.Curve, io.Reader) (*PrivateKey, error)
-pkg crypto/ecdsa, func Sign(io.Reader, *PrivateKey, []byte) (*big.Int, error)
-pkg crypto/ecdsa, func Verify(*PublicKey, []byte, *big.Int) bool
+pkg crypto/ecdsa, func Sign(io.Reader, *PrivateKey, []uint8) (*big.Int, *big.Int, error)
+pkg crypto/ecdsa, func Verify(*PublicKey, []uint8, *big.Int, *big.Int) bool
+pkg crypto/ecdsa, method (PrivateKey) Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int)
+pkg crypto/ecdsa, method (PrivateKey) Double(*big.Int, *big.Int) (*big.Int, *big.Int)
+pkg crypto/ecdsa, method (PrivateKey) IsOnCurve(*big.Int, *big.Int) bool
+pkg crypto/ecdsa, method (PrivateKey) Params() *elliptic.CurveParams
+pkg crypto/ecdsa, method (PrivateKey) ScalarBaseMult([]uint8) (*big.Int, *big.Int)
+pkg crypto/ecdsa, method (PrivateKey) ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int)
+pkg crypto/ecdsa, method (PublicKey) Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int)
+pkg crypto/ecdsa, method (PublicKey) Double(*big.Int, *big.Int) (*big.Int, *big.Int)
+pkg crypto/ecdsa, method (PublicKey) IsOnCurve(*big.Int, *big.Int) bool
+pkg crypto/ecdsa, method (PublicKey) Params() *elliptic.CurveParams
+pkg crypto/ecdsa, method (PublicKey) ScalarBaseMult([]uint8) (*big.Int, *big.Int)
+pkg crypto/ecdsa, method (PublicKey) ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int)
 pkg crypto/ecdsa, type PrivateKey struct
 pkg crypto/ecdsa, type PrivateKey struct, D *big.Int
 pkg crypto/ecdsa, type PrivateKey struct, embedded PublicKey
@@ -398,26 +410,26 @@ pkg crypto/ecdsa, type PublicKey struct
 pkg crypto/ecdsa, type PublicKey struct, X *big.Int
 pkg crypto/ecdsa, type PublicKey struct, Y *big.Int
 pkg crypto/ecdsa, type PublicKey struct, embedded elliptic.Curve
-pkg crypto/elliptic, func GenerateKey(Curve, io.Reader) ([]byte, *big.Int, error)
-pkg crypto/elliptic, func Marshal(Curve, *big.Int) []byte
+pkg crypto/elliptic, func GenerateKey(Curve, io.Reader) ([]uint8, *big.Int, *big.Int, error)
+pkg crypto/elliptic, func Marshal(Curve, *big.Int, *big.Int) []uint8
 pkg crypto/elliptic, func P224() Curve
 pkg crypto/elliptic, func P256() Curve
 pkg crypto/elliptic, func P384() Curve
 pkg crypto/elliptic, func P521() Curve
-pkg crypto/elliptic, func Unmarshal(Curve, []byte) *big.Int
-pkg crypto/elliptic, method (*CurveParams) Add(*big.Int) (*big.Int, *big.Int)
-pkg crypto/elliptic, method (*CurveParams) Double(*big.Int) (*big.Int, *big.Int)
-pkg crypto/elliptic, method (*CurveParams) IsOnCurve(*big.Int) bool
+pkg crypto/elliptic, func Unmarshal(Curve, []uint8) (*big.Int, *big.Int)
+pkg crypto/elliptic, method (*CurveParams) Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int)
+pkg crypto/elliptic, method (*CurveParams) Double(*big.Int, *big.Int) (*big.Int, *big.Int)
+pkg crypto/elliptic, method (*CurveParams) IsOnCurve(*big.Int, *big.Int) bool
 pkg crypto/elliptic, method (*CurveParams) Params() *CurveParams
-pkg crypto/elliptic, method (*CurveParams) ScalarBaseMult([]byte) (*big.Int, *big.Int)
-pkg crypto/elliptic, method (*CurveParams) ScalarMult(*big.Int, []byte) (*big.Int, *big.Int)
+pkg crypto/elliptic, method (*CurveParams) ScalarBaseMult([]uint8) (*big.Int, *big.Int)
+pkg crypto/elliptic, method (*CurveParams) ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int)
 pkg crypto/elliptic, type Curve interface { Add, Double, IsOnCurve, Params, ScalarBaseMult, ScalarMult }
-pkg crypto/elliptic, type Curve interface, Add(*big.Int) *big.Int
-pkg crypto/elliptic, type Curve interface, Double(*big.Int) *big.Int
-pkg crypto/elliptic, type Curve interface, IsOnCurve(*big.Int) bool
+pkg crypto/elliptic, type Curve interface, Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int)
+pkg crypto/elliptic, type Curve interface, Double(*big.Int, *big.Int) (*big.Int, *big.Int)
+pkg crypto/elliptic, type Curve interface, IsOnCurve(*big.Int, *big.Int) bool
 pkg crypto/elliptic, type Curve interface, Params() *CurveParams
-pkg crypto/elliptic, type Curve interface, ScalarBaseMult([]byte) *big.Int
-pkg crypto/elliptic, type Curve interface, ScalarMult(*big.Int, []byte) *big.Int
+pkg crypto/elliptic, type Curve interface, ScalarBaseMult([]uint8) (*big.Int, *big.Int)
+pkg crypto/elliptic, type Curve interface, ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int)
 pkg crypto/elliptic, type CurveParams struct
 pkg crypto/elliptic, type CurveParams struct, B *big.Int
 pkg crypto/elliptic, type CurveParams struct, BitSize int
@@ -425,29 +437,29 @@ pkg crypto/elliptic, type CurveParams struct, Gx *big.Int
 pkg crypto/elliptic, type CurveParams struct, Gy *big.Int
 pkg crypto/elliptic, type CurveParams struct, N *big.Int
 pkg crypto/elliptic, type CurveParams struct, P *big.Int
-pkg crypto/hmac, func New(func() hash.Hash, []byte) hash.Hash
+pkg crypto/hmac, func New(func() hash.Hash, []uint8) hash.Hash
 pkg crypto/md5, const BlockSize ideal-int
 pkg crypto/md5, const Size ideal-int
 pkg crypto/md5, func New() hash.Hash
 pkg crypto/rand, func Int(io.Reader, *big.Int) (*big.Int, error)
 pkg crypto/rand, func Prime(io.Reader, int) (*big.Int, error)
-pkg crypto/rand, func Read([]byte) (int, error)
+pkg crypto/rand, func Read([]uint8) (int, error)
 pkg crypto/rand, var Reader io.Reader
-pkg crypto/rc4, func NewCipher([]byte) (*Cipher, error)
+pkg crypto/rc4, func NewCipher([]uint8) (*Cipher, error)
 pkg crypto/rc4, method (*Cipher) Reset()
-pkg crypto/rc4, method (*Cipher) XORKeyStream([]byte)
+pkg crypto/rc4, method (*Cipher) XORKeyStream([]uint8, []uint8)
 pkg crypto/rc4, method (KeySizeError) Error() string
 pkg crypto/rc4, type Cipher struct
 pkg crypto/rc4, type KeySizeError int
-pkg crypto/rsa, func DecryptOAEP(hash.Hash, io.Reader, *PrivateKey, []byte, []byte) ([]byte, error)
-pkg crypto/rsa, func DecryptPKCS1v15(io.Reader, *PrivateKey, []byte) ([]byte, error)
-pkg crypto/rsa, func DecryptPKCS1v15SessionKey(io.Reader, *PrivateKey, []byte, []byte) error
-pkg crypto/rsa, func EncryptOAEP(hash.Hash, io.Reader, *PublicKey, []byte, []byte) ([]byte, error)
-pkg crypto/rsa, func EncryptPKCS1v15(io.Reader, *PublicKey, []byte) ([]byte, error)
+pkg crypto/rsa, func DecryptOAEP(hash.Hash, io.Reader, *PrivateKey, []uint8, []uint8) ([]uint8, error)
+pkg crypto/rsa, func DecryptPKCS1v15(io.Reader, *PrivateKey, []uint8) ([]uint8, error)
+pkg crypto/rsa, func DecryptPKCS1v15SessionKey(io.Reader, *PrivateKey, []uint8, []uint8) error
+pkg crypto/rsa, func EncryptOAEP(hash.Hash, io.Reader, *PublicKey, []uint8, []uint8) ([]uint8, error)
+pkg crypto/rsa, func EncryptPKCS1v15(io.Reader, *PublicKey, []uint8) ([]uint8, error)
 pkg crypto/rsa, func GenerateKey(io.Reader, int) (*PrivateKey, error)
 pkg crypto/rsa, func GenerateMultiPrimeKey(io.Reader, int, int) (*PrivateKey, error)
-pkg crypto/rsa, func SignPKCS1v15(io.Reader, *PrivateKey, crypto.Hash, []byte) ([]byte, error)
-pkg crypto/rsa, func VerifyPKCS1v15(*PublicKey, crypto.Hash, []byte, []byte) error
+pkg crypto/rsa, func SignPKCS1v15(io.Reader, *PrivateKey, crypto.Hash, []uint8) ([]uint8, error)
+pkg crypto/rsa, func VerifyPKCS1v15(*PublicKey, crypto.Hash, []uint8, []uint8) error
 pkg crypto/rsa, method (*PrivateKey) Precompute()
 pkg crypto/rsa, method (*PrivateKey) Validate() error
 pkg crypto/rsa, type CRTValue struct
@@ -483,11 +495,11 @@ pkg crypto/sha512, const Size ideal-int
 pkg crypto/sha512, const Size384 ideal-int
 pkg crypto/sha512, func New() hash.Hash
 pkg crypto/sha512, func New384() hash.Hash
-pkg crypto/subtle, func ConstantTimeByteEq(uint8) int
-pkg crypto/subtle, func ConstantTimeCompare([]byte) int
-pkg crypto/subtle, func ConstantTimeCopy(int, []byte)
-pkg crypto/subtle, func ConstantTimeEq(int32) int
-pkg crypto/subtle, func ConstantTimeSelect(int) int
+pkg crypto/subtle, func ConstantTimeByteEq(uint8, uint8) int
+pkg crypto/subtle, func ConstantTimeCompare([]uint8, []uint8) int
+pkg crypto/subtle, func ConstantTimeCopy(int, []uint8, []uint8)
+pkg crypto/subtle, func ConstantTimeEq(int32, int32) int
+pkg crypto/subtle, func ConstantTimeSelect(int, int, int) int
 pkg crypto/tls, const NoClientCert ClientAuthType
 pkg crypto/tls, const RequestClientCert ClientAuthType
 pkg crypto/tls, const RequireAndVerifyClientCert ClientAuthType
@@ -500,29 +512,29 @@ pkg crypto/tls, const TLS_RSA_WITH_AES_128_CBC_SHA uint16
 pkg crypto/tls, const TLS_RSA_WITH_RC4_128_SHA uint16
 pkg crypto/tls, const VerifyClientCertIfGiven ClientAuthType
 pkg crypto/tls, func Client(net.Conn, *Config) *Conn
-pkg crypto/tls, func Dial(string, *Config) (*Conn, error)
-pkg crypto/tls, func Listen(string, *Config) (net.Listener, error)
-pkg crypto/tls, func LoadX509KeyPair(string) (Certificate, error)
+pkg crypto/tls, func Dial(string, string, *Config) (*Conn, error)
+pkg crypto/tls, func Listen(string, string, *Config) (net.Listener, error)
+pkg crypto/tls, func LoadX509KeyPair(string, string) (Certificate, error)
 pkg crypto/tls, func NewListener(net.Listener, *Config) net.Listener
 pkg crypto/tls, func Server(net.Conn, *Config) *Conn
-pkg crypto/tls, func X509KeyPair([]byte) (Certificate, error)
+pkg crypto/tls, func X509KeyPair([]uint8, []uint8) (Certificate, error)
 pkg crypto/tls, method (*Config) BuildNameToCertificate()
 pkg crypto/tls, method (*Conn) Close() error
 pkg crypto/tls, method (*Conn) ConnectionState() ConnectionState
 pkg crypto/tls, method (*Conn) Handshake() error
 pkg crypto/tls, method (*Conn) LocalAddr() net.Addr
-pkg crypto/tls, method (*Conn) OCSPResponse() []byte
-pkg crypto/tls, method (*Conn) Read([]byte) (int, error)
+pkg crypto/tls, method (*Conn) OCSPResponse() []uint8
+pkg crypto/tls, method (*Conn) Read([]uint8) (int, error)
 pkg crypto/tls, method (*Conn) RemoteAddr() net.Addr
 pkg crypto/tls, method (*Conn) SetDeadline(time.Time) error
 pkg crypto/tls, method (*Conn) SetReadDeadline(time.Time) error
 pkg crypto/tls, method (*Conn) SetWriteDeadline(time.Time) error
 pkg crypto/tls, method (*Conn) VerifyHostname(string) error
-pkg crypto/tls, method (*Conn) Write([]byte) (int, error)
+pkg crypto/tls, method (*Conn) Write([]uint8) (int, error)
 pkg crypto/tls, type Certificate struct
-pkg crypto/tls, type Certificate struct, Certificate [][]byte
+pkg crypto/tls, type Certificate struct, Certificate [][]uint8
 pkg crypto/tls, type Certificate struct, Leaf *x509.Certificate
-pkg crypto/tls, type Certificate struct, OCSPStaple []byte
+pkg crypto/tls, type Certificate struct, OCSPStaple []uint8
 pkg crypto/tls, type Certificate struct, PrivateKey crypto.PrivateKey
 pkg crypto/tls, type ClientAuthType int
 pkg crypto/tls, type Config struct
@@ -578,24 +590,24 @@ pkg crypto/x509, const SHA512WithRSA SignatureAlgorithm
 pkg crypto/x509, const TooManyIntermediates InvalidReason
 pkg crypto/x509, const UnknownPublicKeyAlgorithm PublicKeyAlgorithm
 pkg crypto/x509, const UnknownSignatureAlgorithm SignatureAlgorithm
-pkg crypto/x509, func CreateCertificate(io.Reader, *Certificate, interface{}, interface{}) ([]byte, error)
-pkg crypto/x509, func MarshalPKCS1PrivateKey(*rsa.PrivateKey) []byte
-pkg crypto/x509, func MarshalPKIXPublicKey(interface{}) ([]byte, error)
+pkg crypto/x509, func CreateCertificate(io.Reader, *Certificate, *Certificate, interface{}, interface{}) ([]uint8, error)
+pkg crypto/x509, func MarshalPKCS1PrivateKey(*rsa.PrivateKey) []uint8
+pkg crypto/x509, func MarshalPKIXPublicKey(interface{}) ([]uint8, error)
 pkg crypto/x509, func NewCertPool() *CertPool
-pkg crypto/x509, func ParseCRL([]byte) (*pkix.CertificateList, error)
-pkg crypto/x509, func ParseCertificate([]byte) (*Certificate, error)
-pkg crypto/x509, func ParseCertificates([]byte) ([]*Certificate, error)
-pkg crypto/x509, func ParseDERCRL([]byte) (*pkix.CertificateList, error)
-pkg crypto/x509, func ParsePKCS1PrivateKey([]byte) (*rsa.PrivateKey, error)
-pkg crypto/x509, func ParsePKCS8PrivateKey([]byte) (interface{}, error)
-pkg crypto/x509, func ParsePKIXPublicKey([]byte) (interface{}, error)
+pkg crypto/x509, func ParseCRL([]uint8) (*pkix.CertificateList, error)
+pkg crypto/x509, func ParseCertificate([]uint8) (*Certificate, error)
+pkg crypto/x509, func ParseCertificates([]uint8) ([]*Certificate, error)
+pkg crypto/x509, func ParseDERCRL([]uint8) (*pkix.CertificateList, error)
+pkg crypto/x509, func ParsePKCS1PrivateKey([]uint8) (*rsa.PrivateKey, error)
+pkg crypto/x509, func ParsePKCS8PrivateKey([]uint8) (interface{}, error)
+pkg crypto/x509, func ParsePKIXPublicKey([]uint8) (interface{}, error)
 pkg crypto/x509, method (*CertPool) AddCert(*Certificate)
-pkg crypto/x509, method (*CertPool) AppendCertsFromPEM([]byte) bool
-pkg crypto/x509, method (*CertPool) Subjects() [][]byte
+pkg crypto/x509, method (*CertPool) AppendCertsFromPEM([]uint8) bool
+pkg crypto/x509, method (*CertPool) Subjects() [][]uint8
 pkg crypto/x509, method (*Certificate) CheckCRLSignature(*pkix.CertificateList) error
-pkg crypto/x509, method (*Certificate) CheckSignature(SignatureAlgorithm, []byte) error
+pkg crypto/x509, method (*Certificate) CheckSignature(SignatureAlgorithm, []uint8, []uint8) error
 pkg crypto/x509, method (*Certificate) CheckSignatureFrom(*Certificate) error
-pkg crypto/x509, method (*Certificate) CreateCRL(io.Reader, interface{}, []pkix.RevokedCertificate, time.Time) ([]byte, error)
+pkg crypto/x509, method (*Certificate) CreateCRL(io.Reader, interface{}, []pkix.RevokedCertificate, time.Time, time.Time) ([]uint8, error)
 pkg crypto/x509, method (*Certificate) Equal(*Certificate) bool
 pkg crypto/x509, method (*Certificate) Verify(VerifyOptions) ([][]*Certificate, error)
 pkg crypto/x509, method (*Certificate) VerifyHostname(string) error
@@ -606,7 +618,7 @@ pkg crypto/x509, method (UnhandledCriticalExtension) Error() string
 pkg crypto/x509, method (UnknownAuthorityError) Error() string
 pkg crypto/x509, type CertPool struct
 pkg crypto/x509, type Certificate struct
-pkg crypto/x509, type Certificate struct, AuthorityKeyId []byte
+pkg crypto/x509, type Certificate struct, AuthorityKeyId []uint8
 pkg crypto/x509, type Certificate struct, BasicConstraintsValid bool
 pkg crypto/x509, type Certificate struct, DNSNames []string
 pkg crypto/x509, type Certificate struct, EmailAddresses []string
@@ -622,16 +634,16 @@ pkg crypto/x509, type Certificate struct, PermittedDNSDomainsCritical bool
 pkg crypto/x509, type Certificate struct, PolicyIdentifiers []asn1.ObjectIdentifier
 pkg crypto/x509, type Certificate struct, PublicKey interface{}
 pkg crypto/x509, type Certificate struct, PublicKeyAlgorithm PublicKeyAlgorithm
-pkg crypto/x509, type Certificate struct, Raw []byte
-pkg crypto/x509, type Certificate struct, RawIssuer []byte
-pkg crypto/x509, type Certificate struct, RawSubject []byte
-pkg crypto/x509, type Certificate struct, RawSubjectPublicKeyInfo []byte
-pkg crypto/x509, type Certificate struct, RawTBSCertificate []byte
+pkg crypto/x509, type Certificate struct, Raw []uint8
+pkg crypto/x509, type Certificate struct, RawIssuer []uint8
+pkg crypto/x509, type Certificate struct, RawSubject []uint8
+pkg crypto/x509, type Certificate struct, RawSubjectPublicKeyInfo []uint8
+pkg crypto/x509, type Certificate struct, RawTBSCertificate []uint8
 pkg crypto/x509, type Certificate struct, SerialNumber *big.Int
-pkg crypto/x509, type Certificate struct, Signature []byte
+pkg crypto/x509, type Certificate struct, Signature []uint8
 pkg crypto/x509, type Certificate struct, SignatureAlgorithm SignatureAlgorithm
 pkg crypto/x509, type Certificate struct, Subject pkix.Name
-pkg crypto/x509, type Certificate struct, SubjectKeyId []byte
+pkg crypto/x509, type Certificate struct, SubjectKeyId []uint8
 pkg crypto/x509, type Certificate struct, UnknownExtKeyUsage []asn1.ObjectIdentifier
 pkg crypto/x509, type Certificate struct, Version int
 pkg crypto/x509, type CertificateInvalidError struct
@@ -670,7 +682,7 @@ pkg crypto/x509/pkix, type CertificateList struct, TBSCertList TBSCertificateLis
 pkg crypto/x509/pkix, type Extension struct
 pkg crypto/x509/pkix, type Extension struct, Critical bool
 pkg crypto/x509/pkix, type Extension struct, Id asn1.ObjectIdentifier
-pkg crypto/x509/pkix, type Extension struct, Value []byte
+pkg crypto/x509/pkix, type Extension struct, Value []uint8
 pkg crypto/x509/pkix, type Name struct
 pkg crypto/x509/pkix, type Name struct, CommonName string
 pkg crypto/x509/pkix, type Name struct, Country []string
@@ -697,7 +709,7 @@ pkg crypto/x509/pkix, type TBSCertificateList struct, RevokedCertificates []Revo
 pkg crypto/x509/pkix, type TBSCertificateList struct, Signature AlgorithmIdentifier
 pkg crypto/x509/pkix, type TBSCertificateList struct, ThisUpdate time.Time
 pkg crypto/x509/pkix, type TBSCertificateList struct, Version int
-pkg database/sql, func Open(string) (*DB, error)
+pkg database/sql, func Open(string, string) (*DB, error)
 pkg database/sql, func Register(string, driver.Driver)
 pkg database/sql, method (*DB) Begin() (*Tx, error)
 pkg database/sql, method (*DB) Close() error
@@ -744,7 +756,7 @@ pkg database/sql, type NullInt64 struct, Valid bool
 pkg database/sql, type NullString struct
 pkg database/sql, type NullString struct, String string
 pkg database/sql, type NullString struct, Valid bool
-pkg database/sql, type RawBytes []byte
+pkg database/sql, type RawBytes []uint8
 pkg database/sql, type Result interface { LastInsertId, RowsAffected }
 pkg database/sql, type Result interface, LastInsertId() (int64, error)
 pkg database/sql, type Result interface, RowsAffected() (int64, error)
@@ -932,7 +944,7 @@ pkg debug/dwarf, const TagVariant Tag
 pkg debug/dwarf, const TagVariantPart Tag
 pkg debug/dwarf, const TagVolatileType Tag
 pkg debug/dwarf, const TagWithStmt Tag
-pkg debug/dwarf, func New([]byte) (*Data, error)
+pkg debug/dwarf, func New([]uint8, []uint8, []uint8, []uint8, []uint8, []uint8, []uint8, []uint8) (*Data, error)
 pkg debug/dwarf, method (*AddrType) Basic() *BasicType
 pkg debug/dwarf, method (*AddrType) Common() *CommonType
 pkg debug/dwarf, method (*AddrType) Size() int64
@@ -1579,8 +1591,8 @@ pkg debug/elf, const Sym32Size ideal-int
 pkg debug/elf, const Sym64Size ideal-int
 pkg debug/elf, func NewFile(io.ReaderAt) (*File, error)
 pkg debug/elf, func Open(string) (*File, error)
-pkg debug/elf, func R_INFO(uint32) uint64
-pkg debug/elf, func R_INFO32(uint32) uint32
+pkg debug/elf, func R_INFO(uint32, uint32) uint64
+pkg debug/elf, func R_INFO32(uint32, uint32) uint32
 pkg debug/elf, func R_SYM32(uint32) uint32
 pkg debug/elf, func R_SYM64(uint64) uint32
 pkg debug/elf, func R_TYPE32(uint32) uint32
@@ -1598,7 +1610,7 @@ pkg debug/elf, method (*File) SectionByType(SectionType) *Section
 pkg debug/elf, method (*File) Symbols() ([]Symbol, error)
 pkg debug/elf, method (*FormatError) Error() string
 pkg debug/elf, method (*Prog) Open() io.ReadSeeker
-pkg debug/elf, method (*Section) Data() ([]byte, error)
+pkg debug/elf, method (*Section) Data() ([]uint8, error)
 pkg debug/elf, method (*Section) Open() io.ReadSeeker
 pkg debug/elf, method (Class) GoString() string
 pkg debug/elf, method (Class) String() string
@@ -1614,6 +1626,7 @@ pkg debug/elf, method (NType) GoString() string
 pkg debug/elf, method (NType) String() string
 pkg debug/elf, method (OSABI) GoString() string
 pkg debug/elf, method (OSABI) String() string
+pkg debug/elf, method (Prog) ReadAt([]uint8, int64) (int, error)
 pkg debug/elf, method (ProgFlag) GoString() string
 pkg debug/elf, method (ProgFlag) String() string
 pkg debug/elf, method (ProgType) GoString() string
@@ -1630,6 +1643,7 @@ pkg debug/elf, method (R_SPARC) GoString() string
 pkg debug/elf, method (R_SPARC) String() string
 pkg debug/elf, method (R_X86_64) GoString() string
 pkg debug/elf, method (R_X86_64) String() string
+pkg debug/elf, method (Section) ReadAt([]uint8, int64) (int, error)
 pkg debug/elf, method (SectionFlag) GoString() string
 pkg debug/elf, method (SectionFlag) String() string
 pkg debug/elf, method (SectionIndex) GoString() string
@@ -1646,8 +1660,8 @@ pkg debug/elf, method (Type) GoString() string
 pkg debug/elf, method (Type) String() string
 pkg debug/elf, method (Version) GoString() string
 pkg debug/elf, method (Version) String() string
-pkg debug/elf, type Class byte
-pkg debug/elf, type Data byte
+pkg debug/elf, type Class uint8
+pkg debug/elf, type Data uint8
 pkg debug/elf, type Dyn32 struct
 pkg debug/elf, type Dyn32 struct, Tag int32
 pkg debug/elf, type Dyn32 struct, Val uint32
@@ -1674,7 +1688,7 @@ pkg debug/elf, type Header32 struct
 pkg debug/elf, type Header32 struct, Ehsize uint16
 pkg debug/elf, type Header32 struct, Entry uint32
 pkg debug/elf, type Header32 struct, Flags uint32
-pkg debug/elf, type Header32 struct, Ident [EI_NIDENT]byte
+pkg debug/elf, type Header32 struct, Ident [16]uint8
 pkg debug/elf, type Header32 struct, Machine uint16
 pkg debug/elf, type Header32 struct, Phentsize uint16
 pkg debug/elf, type Header32 struct, Phnum uint16
@@ -1689,7 +1703,7 @@ pkg debug/elf, type Header64 struct
 pkg debug/elf, type Header64 struct, Ehsize uint16
 pkg debug/elf, type Header64 struct, Entry uint64
 pkg debug/elf, type Header64 struct, Flags uint32
-pkg debug/elf, type Header64 struct, Ident [EI_NIDENT]byte
+pkg debug/elf, type Header64 struct, Ident [16]uint8
 pkg debug/elf, type Header64 struct, Machine uint16
 pkg debug/elf, type Header64 struct, Phentsize uint16
 pkg debug/elf, type Header64 struct, Phnum uint16
@@ -1706,7 +1720,7 @@ pkg debug/elf, type ImportedSymbol struct, Name string
 pkg debug/elf, type ImportedSymbol struct, Version string
 pkg debug/elf, type Machine uint16
 pkg debug/elf, type NType int
-pkg debug/elf, type OSABI byte
+pkg debug/elf, type OSABI uint8
 pkg debug/elf, type Prog struct
 pkg debug/elf, type Prog struct, embedded ProgHeader
 pkg debug/elf, type Prog struct, embedded io.ReaderAt
@@ -1816,16 +1830,16 @@ pkg debug/elf, type SymBind int
 pkg debug/elf, type SymType int
 pkg debug/elf, type SymVis int
 pkg debug/elf, type Symbol struct
-pkg debug/elf, type Symbol struct, Info byte
+pkg debug/elf, type Symbol struct, Info uint8
 pkg debug/elf, type Symbol struct, Name string
-pkg debug/elf, type Symbol struct, Other byte
+pkg debug/elf, type Symbol struct, Other uint8
 pkg debug/elf, type Symbol struct, Section SectionIndex
 pkg debug/elf, type Symbol struct, Size uint64
 pkg debug/elf, type Symbol struct, Value uint64
 pkg debug/elf, type Type uint16
-pkg debug/elf, type Version byte
-pkg debug/gosym, func NewLineTable([]byte, uint64) *LineTable
-pkg debug/gosym, func NewTable([]byte, *LineTable) (*Table, error)
+pkg debug/elf, type Version uint8
+pkg debug/gosym, func NewLineTable([]uint8, uint64) *LineTable
+pkg debug/gosym, func NewTable([]uint8, *LineTable) (*Table, error)
 pkg debug/gosym, method (*DecodingError) Error() string
 pkg debug/gosym, method (*LineTable) LineToPC(int, uint64) uint64
 pkg debug/gosym, method (*LineTable) PCToLine(uint64) int
@@ -1856,7 +1870,7 @@ pkg debug/gosym, type Func struct, Obj *Obj
 pkg debug/gosym, type Func struct, Params []*Sym
 pkg debug/gosym, type Func struct, embedded *Sym
 pkg debug/gosym, type LineTable struct
-pkg debug/gosym, type LineTable struct, Data []byte
+pkg debug/gosym, type LineTable struct, Data []uint8
 pkg debug/gosym, type LineTable struct, Line int
 pkg debug/gosym, type LineTable struct, PC uint64
 pkg debug/gosym, type Obj struct
@@ -1866,7 +1880,7 @@ pkg debug/gosym, type Sym struct
 pkg debug/gosym, type Sym struct, Func *Func
 pkg debug/gosym, type Sym struct, GoType uint64
 pkg debug/gosym, type Sym struct, Name string
-pkg debug/gosym, type Sym struct, Type byte
+pkg debug/gosym, type Sym struct, Type uint8
 pkg debug/gosym, type Sym struct, Value uint64
 pkg debug/gosym, type Table struct
 pkg debug/gosym, type Table struct, Files map[string]*Obj
@@ -1900,19 +1914,21 @@ pkg debug/macho, method (*File) ImportedSymbols() ([]string, error)
 pkg debug/macho, method (*File) Section(string) *Section
 pkg debug/macho, method (*File) Segment(string) *Segment
 pkg debug/macho, method (*FormatError) Error() string
-pkg debug/macho, method (*Section) Data() ([]byte, error)
+pkg debug/macho, method (*Section) Data() ([]uint8, error)
 pkg debug/macho, method (*Section) Open() io.ReadSeeker
-pkg debug/macho, method (*Segment) Data() ([]byte, error)
+pkg debug/macho, method (*Segment) Data() ([]uint8, error)
 pkg debug/macho, method (*Segment) Open() io.ReadSeeker
 pkg debug/macho, method (Cpu) GoString() string
 pkg debug/macho, method (Cpu) String() string
-pkg debug/macho, method (Dylib) Raw() []byte
-pkg debug/macho, method (Dysymtab) Raw() []byte
-pkg debug/macho, method (LoadBytes) Raw() []byte
+pkg debug/macho, method (Dylib) Raw() []uint8
+pkg debug/macho, method (Dysymtab) Raw() []uint8
+pkg debug/macho, method (LoadBytes) Raw() []uint8
 pkg debug/macho, method (LoadCmd) GoString() string
 pkg debug/macho, method (LoadCmd) String() string
-pkg debug/macho, method (Segment) Raw() []byte
-pkg debug/macho, method (Symtab) Raw() []byte
+pkg debug/macho, method (Section) ReadAt([]uint8, int64) (int, error)
+pkg debug/macho, method (Segment) Raw() []uint8
+pkg debug/macho, method (Segment) ReadAt([]uint8, int64) (int, error)
+pkg debug/macho, method (Symtab) Raw() []uint8
 pkg debug/macho, type Cpu uint32
 pkg debug/macho, type Dylib struct
 pkg debug/macho, type Dylib struct, CompatVersion uint32
@@ -1969,8 +1985,8 @@ pkg debug/macho, type FileHeader struct, SubCpu uint32
 pkg debug/macho, type FileHeader struct, Type Type
 pkg debug/macho, type FormatError struct
 pkg debug/macho, type Load interface { Raw }
-pkg debug/macho, type Load interface, Raw() []byte
-pkg debug/macho, type LoadBytes []byte
+pkg debug/macho, type Load interface, Raw() []uint8
+pkg debug/macho, type LoadBytes []uint8
 pkg debug/macho, type LoadCmd uint32
 pkg debug/macho, type Nlist32 struct
 pkg debug/macho, type Nlist32 struct, Desc uint16
@@ -2030,26 +2046,26 @@ pkg debug/macho, type Section32 struct
 pkg debug/macho, type Section32 struct, Addr uint32
 pkg debug/macho, type Section32 struct, Align uint32
 pkg debug/macho, type Section32 struct, Flags uint32
-pkg debug/macho, type Section32 struct, Name [16]byte
+pkg debug/macho, type Section32 struct, Name [16]uint8
 pkg debug/macho, type Section32 struct, Nreloc uint32
 pkg debug/macho, type Section32 struct, Offset uint32
 pkg debug/macho, type Section32 struct, Reloff uint32
 pkg debug/macho, type Section32 struct, Reserve1 uint32
 pkg debug/macho, type Section32 struct, Reserve2 uint32
-pkg debug/macho, type Section32 struct, Seg [16]byte
+pkg debug/macho, type Section32 struct, Seg [16]uint8
 pkg debug/macho, type Section32 struct, Size uint32
 pkg debug/macho, type Section64 struct
 pkg debug/macho, type Section64 struct, Addr uint64
 pkg debug/macho, type Section64 struct, Align uint32
 pkg debug/macho, type Section64 struct, Flags uint32
-pkg debug/macho, type Section64 struct, Name [16]byte
+pkg debug/macho, type Section64 struct, Name [16]uint8
 pkg debug/macho, type Section64 struct, Nreloc uint32
 pkg debug/macho, type Section64 struct, Offset uint32
 pkg debug/macho, type Section64 struct, Reloff uint32
 pkg debug/macho, type Section64 struct, Reserve1 uint32
 pkg debug/macho, type Section64 struct, Reserve2 uint32
 pkg debug/macho, type Section64 struct, Reserve3 uint32
-pkg debug/macho, type Section64 struct, Seg [16]byte
+pkg debug/macho, type Section64 struct, Seg [16]uint8
 pkg debug/macho, type Section64 struct, Size uint64
 pkg debug/macho, type SectionHeader struct
 pkg debug/macho, type SectionHeader struct, Addr uint64
@@ -2073,7 +2089,7 @@ pkg debug/macho, type Segment32 struct, Flag uint32
 pkg debug/macho, type Segment32 struct, Len uint32
 pkg debug/macho, type Segment32 struct, Maxprot uint32
 pkg debug/macho, type Segment32 struct, Memsz uint32
-pkg debug/macho, type Segment32 struct, Name [16]byte
+pkg debug/macho, type Segment32 struct, Name [16]uint8
 pkg debug/macho, type Segment32 struct, Nsect uint32
 pkg debug/macho, type Segment32 struct, Offset uint32
 pkg debug/macho, type Segment32 struct, Prot uint32
@@ -2085,7 +2101,7 @@ pkg debug/macho, type Segment64 struct, Flag uint32
 pkg debug/macho, type Segment64 struct, Len uint32
 pkg debug/macho, type Segment64 struct, Maxprot uint32
 pkg debug/macho, type Segment64 struct, Memsz uint64
-pkg debug/macho, type Segment64 struct, Name [16]byte
+pkg debug/macho, type Segment64 struct, Name [16]uint8
 pkg debug/macho, type Segment64 struct, Nsect uint32
 pkg debug/macho, type Segment64 struct, Offset uint64
 pkg debug/macho, type Segment64 struct, Prot uint32
@@ -2152,8 +2168,9 @@ pkg debug/pe, method (*File) ImportedLibraries() ([]string, error)
 pkg debug/pe, method (*File) ImportedSymbols() ([]string, error)
 pkg debug/pe, method (*File) Section(string) *Section
 pkg debug/pe, method (*FormatError) Error() string
-pkg debug/pe, method (*Section) Data() ([]byte, error)
+pkg debug/pe, method (*Section) Data() ([]uint8, error)
 pkg debug/pe, method (*Section) Open() io.ReadSeeker
+pkg debug/pe, method (Section) ReadAt([]uint8, int64) (int, error)
 pkg debug/pe, type File struct
 pkg debug/pe, type File struct, Sections []*Section
 pkg debug/pe, type File struct, embedded FileHeader
@@ -2197,32 +2214,32 @@ pkg debug/pe, type SectionHeader32 struct, PointerToRelocations uint32
 pkg debug/pe, type SectionHeader32 struct, SizeOfRawData uint32
 pkg debug/pe, type SectionHeader32 struct, VirtualAddress uint32
 pkg debug/pe, type SectionHeader32 struct, VirtualSize uint32
-pkg encoding/ascii85, func Decode([]byte, bool) (int, error)
-pkg encoding/ascii85, func Encode([]byte) int
+pkg encoding/ascii85, func Decode([]uint8, []uint8, bool) (int, int, error)
+pkg encoding/ascii85, func Encode([]uint8, []uint8) int
 pkg encoding/ascii85, func MaxEncodedLen(int) int
 pkg encoding/ascii85, func NewDecoder(io.Reader) io.Reader
 pkg encoding/ascii85, func NewEncoder(io.Writer) io.WriteCloser
 pkg encoding/ascii85, method (CorruptInputError) Error() string
 pkg encoding/ascii85, type CorruptInputError int64
-pkg encoding/asn1, func Marshal(interface{}) ([]byte, error)
-pkg encoding/asn1, func Unmarshal([]byte, interface{}) ([]byte, error)
-pkg encoding/asn1, func UnmarshalWithParams([]byte, interface{}, string) ([]byte, error)
+pkg encoding/asn1, func Marshal(interface{}) ([]uint8, error)
+pkg encoding/asn1, func Unmarshal([]uint8, interface{}) ([]uint8, error)
+pkg encoding/asn1, func UnmarshalWithParams([]uint8, interface{}, string) ([]uint8, error)
 pkg encoding/asn1, method (BitString) At(int) int
-pkg encoding/asn1, method (BitString) RightAlign() []byte
+pkg encoding/asn1, method (BitString) RightAlign() []uint8
 pkg encoding/asn1, method (ObjectIdentifier) Equal(ObjectIdentifier) bool
 pkg encoding/asn1, method (StructuralError) Error() string
 pkg encoding/asn1, method (SyntaxError) Error() string
 pkg encoding/asn1, type BitString struct
 pkg encoding/asn1, type BitString struct, BitLength int
-pkg encoding/asn1, type BitString struct, Bytes []byte
+pkg encoding/asn1, type BitString struct, Bytes []uint8
 pkg encoding/asn1, type Enumerated int
 pkg encoding/asn1, type Flag bool
 pkg encoding/asn1, type ObjectIdentifier []int
-pkg encoding/asn1, type RawContent []byte
+pkg encoding/asn1, type RawContent []uint8
 pkg encoding/asn1, type RawValue struct
-pkg encoding/asn1, type RawValue struct, Bytes []byte
+pkg encoding/asn1, type RawValue struct, Bytes []uint8
 pkg encoding/asn1, type RawValue struct, Class int
-pkg encoding/asn1, type RawValue struct, FullBytes []byte
+pkg encoding/asn1, type RawValue struct, FullBytes []uint8
 pkg encoding/asn1, type RawValue struct, IsCompound bool
 pkg encoding/asn1, type RawValue struct, Tag int
 pkg encoding/asn1, type StructuralError struct
@@ -2232,11 +2249,11 @@ pkg encoding/asn1, type SyntaxError struct, Msg string
 pkg encoding/base32, func NewDecoder(*Encoding, io.Reader) io.Reader
 pkg encoding/base32, func NewEncoder(*Encoding, io.Writer) io.WriteCloser
 pkg encoding/base32, func NewEncoding(string) *Encoding
-pkg encoding/base32, method (*Encoding) Decode([]byte) (int, error)
-pkg encoding/base32, method (*Encoding) DecodeString(string) ([]byte, error)
+pkg encoding/base32, method (*Encoding) Decode([]uint8, []uint8) (int, error)
+pkg encoding/base32, method (*Encoding) DecodeString(string) ([]uint8, error)
 pkg encoding/base32, method (*Encoding) DecodedLen(int) int
-pkg encoding/base32, method (*Encoding) Encode([]byte)
-pkg encoding/base32, method (*Encoding) EncodeToString([]byte) string
+pkg encoding/base32, method (*Encoding) Encode([]uint8, []uint8)
+pkg encoding/base32, method (*Encoding) EncodeToString([]uint8) string
 pkg encoding/base32, method (*Encoding) EncodedLen(int) int
 pkg encoding/base32, method (CorruptInputError) Error() string
 pkg encoding/base32, type CorruptInputError int64
@@ -2246,11 +2263,11 @@ pkg encoding/base32, var StdEncoding *Encoding
 pkg encoding/base64, func NewDecoder(*Encoding, io.Reader) io.Reader
 pkg encoding/base64, func NewEncoder(*Encoding, io.Writer) io.WriteCloser
 pkg encoding/base64, func NewEncoding(string) *Encoding
-pkg encoding/base64, method (*Encoding) Decode([]byte) (int, error)
-pkg encoding/base64, method (*Encoding) DecodeString(string) ([]byte, error)
+pkg encoding/base64, method (*Encoding) Decode([]uint8, []uint8) (int, error)
+pkg encoding/base64, method (*Encoding) DecodeString(string) ([]uint8, error)
 pkg encoding/base64, method (*Encoding) DecodedLen(int) int
-pkg encoding/base64, method (*Encoding) Encode([]byte)
-pkg encoding/base64, method (*Encoding) EncodeToString([]byte) string
+pkg encoding/base64, method (*Encoding) Encode([]uint8, []uint8)
+pkg encoding/base64, method (*Encoding) EncodeToString([]uint8) string
 pkg encoding/base64, method (*Encoding) EncodedLen(int) int
 pkg encoding/base64, method (CorruptInputError) Error() string
 pkg encoding/base64, type CorruptInputError int64
@@ -2260,23 +2277,23 @@ pkg encoding/base64, var URLEncoding *Encoding
 pkg encoding/binary, const MaxVarintLen16 ideal-int
 pkg encoding/binary, const MaxVarintLen32 ideal-int
 pkg encoding/binary, const MaxVarintLen64 ideal-int
-pkg encoding/binary, func PutUvarint([]byte, uint64) int
-pkg encoding/binary, func PutVarint([]byte, int64) int
+pkg encoding/binary, func PutUvarint([]uint8, uint64) int
+pkg encoding/binary, func PutVarint([]uint8, int64) int
 pkg encoding/binary, func Read(io.Reader, ByteOrder, interface{}) error
 pkg encoding/binary, func ReadUvarint(io.ByteReader) (uint64, error)
 pkg encoding/binary, func ReadVarint(io.ByteReader) (int64, error)
 pkg encoding/binary, func Size(interface{}) int
-pkg encoding/binary, func Uvarint([]byte) (uint64, int)
-pkg encoding/binary, func Varint([]byte) (int64, int)
+pkg encoding/binary, func Uvarint([]uint8) (uint64, int)
+pkg encoding/binary, func Varint([]uint8) (int64, int)
 pkg encoding/binary, func Write(io.Writer, ByteOrder, interface{}) error
 pkg encoding/binary, type ByteOrder interface { PutUint16, PutUint32, PutUint64, String, Uint16, Uint32, Uint64 }
-pkg encoding/binary, type ByteOrder interface, PutUint16([]byte, uint16)
-pkg encoding/binary, type ByteOrder interface, PutUint32([]byte, uint32)
-pkg encoding/binary, type ByteOrder interface, PutUint64([]byte, uint64)
+pkg encoding/binary, type ByteOrder interface, PutUint16([]uint8, uint16)
+pkg encoding/binary, type ByteOrder interface, PutUint32([]uint8, uint32)
+pkg encoding/binary, type ByteOrder interface, PutUint64([]uint8, uint64)
 pkg encoding/binary, type ByteOrder interface, String() string
-pkg encoding/binary, type ByteOrder interface, Uint16([]byte) uint16
-pkg encoding/binary, type ByteOrder interface, Uint32([]byte) uint32
-pkg encoding/binary, type ByteOrder interface, Uint64([]byte) uint64
+pkg encoding/binary, type ByteOrder interface, Uint16([]uint8) uint16
+pkg encoding/binary, type ByteOrder interface, Uint32([]uint8) uint32
+pkg encoding/binary, type ByteOrder interface, Uint64([]uint8) uint64
 pkg encoding/binary, var BigEndian bigEndian
 pkg encoding/binary, var LittleEndian littleEndian
 pkg encoding/csv, func NewReader(io.Reader) *Reader
@@ -2292,14 +2309,14 @@ pkg encoding/csv, type ParseError struct, Column int
 pkg encoding/csv, type ParseError struct, Err error
 pkg encoding/csv, type ParseError struct, Line int
 pkg encoding/csv, type Reader struct
-pkg encoding/csv, type Reader struct, Comma rune
-pkg encoding/csv, type Reader struct, Comment rune
+pkg encoding/csv, type Reader struct, Comma int32
+pkg encoding/csv, type Reader struct, Comment int32
 pkg encoding/csv, type Reader struct, FieldsPerRecord int
 pkg encoding/csv, type Reader struct, LazyQuotes bool
 pkg encoding/csv, type Reader struct, TrailingComma bool
 pkg encoding/csv, type Reader struct, TrimLeadingSpace bool
 pkg encoding/csv, type Writer struct
-pkg encoding/csv, type Writer struct, Comma rune
+pkg encoding/csv, type Writer struct, Comma int32
 pkg encoding/csv, type Writer struct, UseCRLF bool
 pkg encoding/csv, var ErrBareQuote error
 pkg encoding/csv, var ErrFieldCount error
@@ -2319,35 +2336,35 @@ pkg encoding/gob, type CommonType struct, Name string
 pkg encoding/gob, type Decoder struct
 pkg encoding/gob, type Encoder struct
 pkg encoding/gob, type GobDecoder interface { GobDecode }
-pkg encoding/gob, type GobDecoder interface, GobDecode([]byte) error
+pkg encoding/gob, type GobDecoder interface, GobDecode([]uint8) error
 pkg encoding/gob, type GobEncoder interface { GobEncode }
-pkg encoding/gob, type GobEncoder interface, GobEncode() ([]byte, error)
-pkg encoding/hex, func Decode([]byte) (int, error)
-pkg encoding/hex, func DecodeString(string) ([]byte, error)
+pkg encoding/gob, type GobEncoder interface, GobEncode() ([]uint8, error)
+pkg encoding/hex, func Decode([]uint8, []uint8) (int, error)
+pkg encoding/hex, func DecodeString(string) ([]uint8, error)
 pkg encoding/hex, func DecodedLen(int) int
-pkg encoding/hex, func Dump([]byte) string
+pkg encoding/hex, func Dump([]uint8) string
 pkg encoding/hex, func Dumper(io.Writer) io.WriteCloser
-pkg encoding/hex, func Encode([]byte) int
-pkg encoding/hex, func EncodeToString([]byte) string
+pkg encoding/hex, func Encode([]uint8, []uint8) int
+pkg encoding/hex, func EncodeToString([]uint8) string
 pkg encoding/hex, func EncodedLen(int) int
 pkg encoding/hex, method (InvalidByteError) Error() string
-pkg encoding/hex, type InvalidByteError byte
+pkg encoding/hex, type InvalidByteError uint8
 pkg encoding/hex, var ErrLength error
-pkg encoding/json, func Compact(*bytes.Buffer, []byte) error
-pkg encoding/json, func HTMLEscape(*bytes.Buffer, []byte)
-pkg encoding/json, func Indent(*bytes.Buffer, []byte, string) error
-pkg encoding/json, func Marshal(interface{}) ([]byte, error)
-pkg encoding/json, func MarshalIndent(interface{}, string) ([]byte, error)
+pkg encoding/json, func Compact(*bytes.Buffer, []uint8) error
+pkg encoding/json, func HTMLEscape(*bytes.Buffer, []uint8)
+pkg encoding/json, func Indent(*bytes.Buffer, []uint8, string, string) error
+pkg encoding/json, func Marshal(interface{}) ([]uint8, error)
+pkg encoding/json, func MarshalIndent(interface{}, string, string) ([]uint8, error)
 pkg encoding/json, func NewDecoder(io.Reader) *Decoder
 pkg encoding/json, func NewEncoder(io.Writer) *Encoder
-pkg encoding/json, func Unmarshal([]byte, interface{}) error
+pkg encoding/json, func Unmarshal([]uint8, interface{}) error
 pkg encoding/json, method (*Decoder) Decode(interface{}) error
 pkg encoding/json, method (*Encoder) Encode(interface{}) error
 pkg encoding/json, method (*InvalidUTF8Error) Error() string
 pkg encoding/json, method (*InvalidUnmarshalError) Error() string
 pkg encoding/json, method (*MarshalerError) Error() string
-pkg encoding/json, method (*RawMessage) MarshalJSON() ([]byte, error)
-pkg encoding/json, method (*RawMessage) UnmarshalJSON([]byte) error
+pkg encoding/json, method (*RawMessage) MarshalJSON() ([]uint8, error)
+pkg encoding/json, method (*RawMessage) UnmarshalJSON([]uint8) error
 pkg encoding/json, method (*SyntaxError) Error() string
 pkg encoding/json, method (*UnmarshalFieldError) Error() string
 pkg encoding/json, method (*UnmarshalTypeError) Error() string
@@ -2360,11 +2377,11 @@ pkg encoding/json, type InvalidUTF8Error struct, S string
 pkg encoding/json, type InvalidUnmarshalError struct
 pkg encoding/json, type InvalidUnmarshalError struct, Type reflect.Type
 pkg encoding/json, type Marshaler interface { MarshalJSON }
-pkg encoding/json, type Marshaler interface, MarshalJSON() ([]byte, error)
+pkg encoding/json, type Marshaler interface, MarshalJSON() ([]uint8, error)
 pkg encoding/json, type MarshalerError struct
 pkg encoding/json, type MarshalerError struct, Err error
 pkg encoding/json, type MarshalerError struct, Type reflect.Type
-pkg encoding/json, type RawMessage []byte
+pkg encoding/json, type RawMessage []uint8
 pkg encoding/json, type SyntaxError struct
 pkg encoding/json, type SyntaxError struct, Offset int64
 pkg encoding/json, type UnmarshalFieldError struct
@@ -2375,27 +2392,27 @@ pkg encoding/json, type UnmarshalTypeError struct
 pkg encoding/json, type UnmarshalTypeError struct, Type reflect.Type
 pkg encoding/json, type UnmarshalTypeError struct, Value string
 pkg encoding/json, type Unmarshaler interface { UnmarshalJSON }
-pkg encoding/json, type Unmarshaler interface, UnmarshalJSON([]byte) error
+pkg encoding/json, type Unmarshaler interface, UnmarshalJSON([]uint8) error
 pkg encoding/json, type UnsupportedTypeError struct
 pkg encoding/json, type UnsupportedTypeError struct, Type reflect.Type
 pkg encoding/json, type UnsupportedValueError struct
 pkg encoding/json, type UnsupportedValueError struct, Str string
 pkg encoding/json, type UnsupportedValueError struct, Value reflect.Value
-pkg encoding/pem, func Decode([]byte) (*Block, []byte)
+pkg encoding/pem, func Decode([]uint8) (*Block, []uint8)
 pkg encoding/pem, func Encode(io.Writer, *Block) error
-pkg encoding/pem, func EncodeToMemory(*Block) []byte
+pkg encoding/pem, func EncodeToMemory(*Block) []uint8
 pkg encoding/pem, type Block struct
-pkg encoding/pem, type Block struct, Bytes []byte
+pkg encoding/pem, type Block struct, Bytes []uint8
 pkg encoding/pem, type Block struct, Headers map[string]string
 pkg encoding/pem, type Block struct, Type string
 pkg encoding/xml, const Header ideal-string
 pkg encoding/xml, func CopyToken(Token) Token
-pkg encoding/xml, func Escape(io.Writer, []byte)
-pkg encoding/xml, func Marshal(interface{}) ([]byte, error)
-pkg encoding/xml, func MarshalIndent(interface{}, string) ([]byte, error)
+pkg encoding/xml, func Escape(io.Writer, []uint8)
+pkg encoding/xml, func Marshal(interface{}) ([]uint8, error)
+pkg encoding/xml, func MarshalIndent(interface{}, string, string) ([]uint8, error)
 pkg encoding/xml, func NewDecoder(io.Reader) *Decoder
 pkg encoding/xml, func NewEncoder(io.Writer) *Encoder
-pkg encoding/xml, func Unmarshal([]byte, interface{}) error
+pkg encoding/xml, func Unmarshal([]uint8, interface{}) error
 pkg encoding/xml, method (*Decoder) Decode(interface{}) error
 pkg encoding/xml, method (*Decoder) DecodeElement(interface{}, *StartElement) error
 pkg encoding/xml, method (*Decoder) RawToken() (Token, error)
@@ -2414,14 +2431,14 @@ pkg encoding/xml, method (UnmarshalError) Error() string
 pkg encoding/xml, type Attr struct
 pkg encoding/xml, type Attr struct, Name Name
 pkg encoding/xml, type Attr struct, Value string
-pkg encoding/xml, type CharData []byte
-pkg encoding/xml, type Comment []byte
+pkg encoding/xml, type CharData []uint8
+pkg encoding/xml, type Comment []uint8
 pkg encoding/xml, type Decoder struct
 pkg encoding/xml, type Decoder struct, AutoClose []string
 pkg encoding/xml, type Decoder struct, CharsetReader func(string, io.Reader) (io.Reader, error)
 pkg encoding/xml, type Decoder struct, Entity map[string]string
 pkg encoding/xml, type Decoder struct, Strict bool
-pkg encoding/xml, type Directive []byte
+pkg encoding/xml, type Directive []uint8
 pkg encoding/xml, type Encoder struct
 pkg encoding/xml, type EndElement struct
 pkg encoding/xml, type EndElement struct, Name Name
@@ -2429,7 +2446,7 @@ pkg encoding/xml, type Name struct
 pkg encoding/xml, type Name struct, Local string
 pkg encoding/xml, type Name struct, Space string
 pkg encoding/xml, type ProcInst struct
-pkg encoding/xml, type ProcInst struct, Inst []byte
+pkg encoding/xml, type ProcInst struct, Inst []uint8
 pkg encoding/xml, type ProcInst struct, Target string
 pkg encoding/xml, type StartElement struct
 pkg encoding/xml, type StartElement struct, Attr []Attr
@@ -2505,7 +2522,7 @@ pkg flag, func NewFlagSet(string, ErrorHandling) *FlagSet
 pkg flag, func Parse()
 pkg flag, func Parsed() bool
 pkg flag, func PrintDefaults()
-pkg flag, func Set(string) error
+pkg flag, func Set(string, string) error
 pkg flag, func String(string, string, string) *string
 pkg flag, func StringVar(*string, string, string, string)
 pkg flag, func Uint(string, uint, string) *uint
@@ -2534,7 +2551,7 @@ pkg flag, method (*FlagSet) NFlag() int
 pkg flag, method (*FlagSet) Parse([]string) error
 pkg flag, method (*FlagSet) Parsed() bool
 pkg flag, method (*FlagSet) PrintDefaults()
-pkg flag, method (*FlagSet) Set(string) error
+pkg flag, method (*FlagSet) Set(string, string) error
 pkg flag, method (*FlagSet) SetOutput(io.Writer)
 pkg flag, method (*FlagSet) String(string, string, string) *string
 pkg flag, method (*FlagSet) StringVar(*string, string, string, string)
@@ -2578,23 +2595,23 @@ pkg fmt, func Sscan(string, ...interface{}) (int, error)
 pkg fmt, func Sscanf(string, string, ...interface{}) (int, error)
 pkg fmt, func Sscanln(string, ...interface{}) (int, error)
 pkg fmt, type Formatter interface { Format }
-pkg fmt, type Formatter interface, Format(State, rune)
+pkg fmt, type Formatter interface, Format(State, int32)
 pkg fmt, type GoStringer interface { GoString }
 pkg fmt, type GoStringer interface, GoString() string
 pkg fmt, type ScanState interface { Read, ReadRune, SkipSpace, Token, UnreadRune, Width }
-pkg fmt, type ScanState interface, Read([]byte) (int, error)
-pkg fmt, type ScanState interface, ReadRune() (rune, int, error)
+pkg fmt, type ScanState interface, Read([]uint8) (int, error)
+pkg fmt, type ScanState interface, ReadRune() (int32, int, error)
 pkg fmt, type ScanState interface, SkipSpace()
-pkg fmt, type ScanState interface, Token(bool, func(rune) bool) ([]byte, error)
+pkg fmt, type ScanState interface, Token(bool, func(int32) bool) ([]uint8, error)
 pkg fmt, type ScanState interface, UnreadRune() error
 pkg fmt, type ScanState interface, Width() (int, bool)
 pkg fmt, type Scanner interface { Scan }
-pkg fmt, type Scanner interface, Scan(ScanState, rune) error
+pkg fmt, type Scanner interface, Scan(ScanState, int32) error
 pkg fmt, type State interface { Flag, Precision, Width, Write }
 pkg fmt, type State interface, Flag(int) bool
 pkg fmt, type State interface, Precision() (int, bool)
 pkg fmt, type State interface, Width() (int, bool)
-pkg fmt, type State interface, Write([]byte) (int, error)
+pkg fmt, type State interface, Write([]uint8) (int, error)
 pkg fmt, type Stringer interface { String }
 pkg fmt, type Stringer interface, String() string
 pkg go/ast, const Bad ObjKind
@@ -2811,9 +2828,9 @@ pkg go/ast, type CompositeLit struct, Elts []Expr
 pkg go/ast, type CompositeLit struct, Lbrace token.Pos
 pkg go/ast, type CompositeLit struct, Rbrace token.Pos
 pkg go/ast, type CompositeLit struct, Type Expr
-pkg go/ast, type Decl interface { End, Pos }
 pkg go/ast, type Decl interface, End() token.Pos
 pkg go/ast, type Decl interface, Pos() token.Pos
+pkg go/ast, type Decl interface, unexported methods
 pkg go/ast, type DeclStmt struct
 pkg go/ast, type DeclStmt struct, Decl Decl
 pkg go/ast, type DeferStmt struct
@@ -2824,9 +2841,9 @@ pkg go/ast, type Ellipsis struct, Ellipsis token.Pos
 pkg go/ast, type Ellipsis struct, Elt Expr
 pkg go/ast, type EmptyStmt struct
 pkg go/ast, type EmptyStmt struct, Semicolon token.Pos
-pkg go/ast, type Expr interface { End, Pos }
 pkg go/ast, type Expr interface, End() token.Pos
 pkg go/ast, type Expr interface, Pos() token.Pos
+pkg go/ast, type Expr interface, unexported methods
 pkg go/ast, type ExprStmt struct
 pkg go/ast, type ExprStmt struct, X Expr
 pkg go/ast, type Field struct
@@ -2835,7 +2852,7 @@ pkg go/ast, type Field struct, Doc *CommentGroup
 pkg go/ast, type Field struct, Names []*Ident
 pkg go/ast, type Field struct, Tag *BasicLit
 pkg go/ast, type Field struct, Type Expr
-pkg go/ast, type FieldFilter func(name string, value reflect.Value) bool
+pkg go/ast, type FieldFilter func(string, reflect.Value) bool
 pkg go/ast, type FieldList struct
 pkg go/ast, type FieldList struct, Closing token.Pos
 pkg go/ast, type FieldList struct, List []*Field
@@ -2895,7 +2912,7 @@ pkg go/ast, type ImportSpec struct, Doc *CommentGroup
 pkg go/ast, type ImportSpec struct, EndPos token.Pos
 pkg go/ast, type ImportSpec struct, Name *Ident
 pkg go/ast, type ImportSpec struct, Path *BasicLit
-pkg go/ast, type Importer func(imports map[string]*Object, path string) (pkg *Object, err error)
+pkg go/ast, type Importer func(map[string]*Object, string) (*Object, error)
 pkg go/ast, type IncDecStmt struct
 pkg go/ast, type IncDecStmt struct, Tok token.Token
 pkg go/ast, type IncDecStmt struct, TokPos token.Pos
@@ -2971,15 +2988,15 @@ pkg go/ast, type SliceExpr struct, Lbrack token.Pos
 pkg go/ast, type SliceExpr struct, Low Expr
 pkg go/ast, type SliceExpr struct, Rbrack token.Pos
 pkg go/ast, type SliceExpr struct, X Expr
-pkg go/ast, type Spec interface { End, Pos }
 pkg go/ast, type Spec interface, End() token.Pos
 pkg go/ast, type Spec interface, Pos() token.Pos
+pkg go/ast, type Spec interface, unexported methods
 pkg go/ast, type StarExpr struct
 pkg go/ast, type StarExpr struct, Star token.Pos
 pkg go/ast, type StarExpr struct, X Expr
-pkg go/ast, type Stmt interface { End, Pos }
 pkg go/ast, type Stmt interface, End() token.Pos
 pkg go/ast, type Stmt interface, Pos() token.Pos
+pkg go/ast, type Stmt interface, unexported methods
 pkg go/ast, type StructType struct
 pkg go/ast, type StructType struct, Fields *FieldList
 pkg go/ast, type StructType struct, Incomplete bool
@@ -3017,7 +3034,7 @@ pkg go/ast, type Visitor interface, Visit(Node) Visitor
 pkg go/build, const AllowBinary ImportMode
 pkg go/build, const FindOnly ImportMode
 pkg go/build, func ArchChar(string) (string, error)
-pkg go/build, func Import(string, ImportMode) (*Package, error)
+pkg go/build, func Import(string, string, ImportMode) (*Package, error)
 pkg go/build, func ImportDir(string, ImportMode) (*Package, error)
 pkg go/build, func IsLocalImport(string) bool
 pkg go/build, method (*Context) Import(string, string, ImportMode) (*Package, error)
@@ -3033,7 +3050,7 @@ pkg go/build, type Context struct, GOARCH string
 pkg go/build, type Context struct, GOOS string
 pkg go/build, type Context struct, GOPATH string
 pkg go/build, type Context struct, GOROOT string
-pkg go/build, type Context struct, HasSubdir func(string) (string, bool)
+pkg go/build, type Context struct, HasSubdir func(string, string) (string, bool)
 pkg go/build, type Context struct, IsAbsPath func(string) bool
 pkg go/build, type Context struct, IsDir func(string) bool
 pkg go/build, type Context struct, JoinPath func(...string) string
@@ -3080,7 +3097,7 @@ pkg go/doc, func Examples(...*ast.File) []*Example
 pkg go/doc, func New(*ast.Package, string, Mode) *Package
 pkg go/doc, func Synopsis(string) string
 pkg go/doc, func ToHTML(io.Writer, string, map[string]string)
-pkg go/doc, func ToText(io.Writer, string, string, int)
+pkg go/doc, func ToText(io.Writer, string, string, string, int)
 pkg go/doc, method (*Package) Filter(Filter)
 pkg go/doc, type Example struct
 pkg go/doc, type Example struct, Code ast.Node
@@ -3148,19 +3165,19 @@ pkg go/scanner, func PrintError(io.Writer, error)
 pkg go/scanner, method (*ErrorList) Add(token.Position, string)
 pkg go/scanner, method (*ErrorList) RemoveMultiples()
 pkg go/scanner, method (*ErrorList) Reset()
-pkg go/scanner, method (*Scanner) Init(*token.File, []byte, ErrorHandler, Mode)
+pkg go/scanner, method (*Scanner) Init(*token.File, []uint8, ErrorHandler, Mode)
 pkg go/scanner, method (*Scanner) Scan() (token.Pos, token.Token, string)
 pkg go/scanner, method (Error) Error() string
 pkg go/scanner, method (ErrorList) Err() error
 pkg go/scanner, method (ErrorList) Error() string
 pkg go/scanner, method (ErrorList) Len() int
-pkg go/scanner, method (ErrorList) Less(int) bool
+pkg go/scanner, method (ErrorList) Less(int, int) bool
 pkg go/scanner, method (ErrorList) Sort()
-pkg go/scanner, method (ErrorList) Swap(int)
+pkg go/scanner, method (ErrorList) Swap(int, int)
 pkg go/scanner, type Error struct
 pkg go/scanner, type Error struct, Msg string
 pkg go/scanner, type Error struct, Pos token.Position
-pkg go/scanner, type ErrorHandler func(pos token.Position, msg string)
+pkg go/scanner, type ErrorHandler func(token.Position, string)
 pkg go/scanner, type ErrorList []*Error
 pkg go/scanner, type Mode uint
 pkg go/scanner, type Scanner struct
@@ -3262,9 +3279,9 @@ pkg go/token, method (*File) Offset(Pos) int
 pkg go/token, method (*File) Pos(int) Pos
 pkg go/token, method (*File) Position(Pos) Position
 pkg go/token, method (*File) SetLines([]int) bool
-pkg go/token, method (*File) SetLinesForContent([]byte)
+pkg go/token, method (*File) SetLinesForContent([]uint8)
 pkg go/token, method (*File) Size() int
-pkg go/token, method (*FileSet) AddFile(string, int) *File
+pkg go/token, method (*FileSet) AddFile(string, int, int) *File
 pkg go/token, method (*FileSet) Base() int
 pkg go/token, method (*FileSet) File(Pos) *File
 pkg go/token, method (*FileSet) Iterate(func(*File) bool)
@@ -3292,44 +3309,44 @@ pkg hash, type Hash interface { BlockSize, Reset, Size, Sum, Write }
 pkg hash, type Hash interface, BlockSize() int
 pkg hash, type Hash interface, Reset()
 pkg hash, type Hash interface, Size() int
-pkg hash, type Hash interface, Sum([]byte) []byte
-pkg hash, type Hash interface, Write([]byte) (int, error)
+pkg hash, type Hash interface, Sum([]uint8) []uint8
+pkg hash, type Hash interface, Write([]uint8) (int, error)
 pkg hash, type Hash32 interface { BlockSize, Reset, Size, Sum, Sum32, Write }
 pkg hash, type Hash32 interface, BlockSize() int
 pkg hash, type Hash32 interface, Reset()
 pkg hash, type Hash32 interface, Size() int
-pkg hash, type Hash32 interface, Sum([]byte) []byte
+pkg hash, type Hash32 interface, Sum([]uint8) []uint8
 pkg hash, type Hash32 interface, Sum32() uint32
-pkg hash, type Hash32 interface, Write([]byte) (int, error)
+pkg hash, type Hash32 interface, Write([]uint8) (int, error)
 pkg hash, type Hash64 interface { BlockSize, Reset, Size, Sum, Sum64, Write }
 pkg hash, type Hash64 interface, BlockSize() int
 pkg hash, type Hash64 interface, Reset()
 pkg hash, type Hash64 interface, Size() int
-pkg hash, type Hash64 interface, Sum([]byte) []byte
+pkg hash, type Hash64 interface, Sum([]uint8) []uint8
 pkg hash, type Hash64 interface, Sum64() uint64
-pkg hash, type Hash64 interface, Write([]byte) (int, error)
+pkg hash, type Hash64 interface, Write([]uint8) (int, error)
 pkg hash/adler32, const Size ideal-int
-pkg hash/adler32, func Checksum([]byte) uint32
+pkg hash/adler32, func Checksum([]uint8) uint32
 pkg hash/adler32, func New() hash.Hash32
 pkg hash/crc32, const Castagnoli ideal-int
 pkg hash/crc32, const IEEE ideal-int
 pkg hash/crc32, const Koopman ideal-int
 pkg hash/crc32, const Size ideal-int
-pkg hash/crc32, func Checksum([]byte, *Table) uint32
-pkg hash/crc32, func ChecksumIEEE([]byte) uint32
+pkg hash/crc32, func Checksum([]uint8, *Table) uint32
+pkg hash/crc32, func ChecksumIEEE([]uint8) uint32
 pkg hash/crc32, func MakeTable(uint32) *Table
 pkg hash/crc32, func New(*Table) hash.Hash32
 pkg hash/crc32, func NewIEEE() hash.Hash32
-pkg hash/crc32, func Update(uint32, *Table, []byte) uint32
+pkg hash/crc32, func Update(uint32, *Table, []uint8) uint32
 pkg hash/crc32, type Table [256]uint32
 pkg hash/crc32, var IEEETable *Table
 pkg hash/crc64, const ECMA ideal-int
 pkg hash/crc64, const ISO ideal-int
 pkg hash/crc64, const Size ideal-int
-pkg hash/crc64, func Checksum([]byte, *Table) uint64
+pkg hash/crc64, func Checksum([]uint8, *Table) uint64
 pkg hash/crc64, func MakeTable(uint64) *Table
 pkg hash/crc64, func New(*Table) hash.Hash64
-pkg hash/crc64, func Update(uint64, *Table, []byte) uint64
+pkg hash/crc64, func Update(uint64, *Table, []uint8) uint64
 pkg hash/crc64, type Table [256]uint64
 pkg hash/fnv, func New32() hash.Hash32
 pkg hash/fnv, func New32a() hash.Hash32
@@ -3348,14 +3365,21 @@ pkg html/template, const ErrPartialEscape ErrorCode
 pkg html/template, const ErrRangeLoopReentry ErrorCode
 pkg html/template, const ErrSlashAmbig ErrorCode
 pkg html/template, const OK ErrorCode
+pkg html/template, func HTMLEscape(io.Writer, []uint8)
+pkg html/template, func HTMLEscapeString(string) string
+pkg html/template, func HTMLEscaper(...interface{}) string
+pkg html/template, func JSEscape(io.Writer, []uint8)
+pkg html/template, func JSEscapeString(string) string
+pkg html/template, func JSEscaper(...interface{}) string
 pkg html/template, func Must(*Template, error) *Template
 pkg html/template, func New(string) *Template
 pkg html/template, func ParseFiles(...string) (*Template, error)
 pkg html/template, func ParseGlob(string) (*Template, error)
+pkg html/template, func URLQueryEscaper(...interface{}) string
 pkg html/template, method (*Error) Error() string
 pkg html/template, method (*Template) AddParseTree(string, *parse.Tree) (*Template, error)
 pkg html/template, method (*Template) Clone() (*Template, error)
-pkg html/template, method (*Template) Delims(string) *Template
+pkg html/template, method (*Template) Delims(string, string) *Template
 pkg html/template, method (*Template) Execute(io.Writer, interface{}) error
 pkg html/template, method (*Template) ExecuteTemplate(io.Writer, string, interface{}) error
 pkg html/template, method (*Template) Funcs(FuncMap) *Template
@@ -3365,6 +3389,7 @@ pkg html/template, method (*Template) New(string) *Template
 pkg html/template, method (*Template) Parse(string) (*Template, error)
 pkg html/template, method (*Template) ParseFiles(...string) (*Template, error)
 pkg html/template, method (*Template) ParseGlob(string) (*Template, error)
+pkg html/template, method (*Template) Templates() []*Template
 pkg html/template, type CSS string
 pkg html/template, type Error struct
 pkg html/template, type Error struct, Description string
@@ -3395,95 +3420,95 @@ pkg image, func NewRGBA(Rectangle) *RGBA
 pkg image, func NewRGBA64(Rectangle) *RGBA64
 pkg image, func NewUniform(color.Color) *Uniform
 pkg image, func NewYCbCr(Rectangle, YCbCrSubsampleRatio) *YCbCr
-pkg image, func Pt(int) Point
-pkg image, func Rect(int) Rectangle
-pkg image, func RegisterFormat(string, func(io.Reader) (Image, error), func(io.Reader) (Config, error))
-pkg image, method (*Alpha) At(int) color.Color
+pkg image, func Pt(int, int) Point
+pkg image, func Rect(int, int, int, int) Rectangle
+pkg image, func RegisterFormat(string, string, func(io.Reader) (Image, error), func(io.Reader) (Config, error))
+pkg image, method (*Alpha) At(int, int) color.Color
 pkg image, method (*Alpha) Bounds() Rectangle
 pkg image, method (*Alpha) ColorModel() color.Model
 pkg image, method (*Alpha) Opaque() bool
-pkg image, method (*Alpha) PixOffset(int) int
-pkg image, method (*Alpha) Set(int, color.Color)
-pkg image, method (*Alpha) SetAlpha(int, color.Alpha)
+pkg image, method (*Alpha) PixOffset(int, int) int
+pkg image, method (*Alpha) Set(int, int, color.Color)
+pkg image, method (*Alpha) SetAlpha(int, int, color.Alpha)
 pkg image, method (*Alpha) SubImage(Rectangle) Image
-pkg image, method (*Alpha16) At(int) color.Color
+pkg image, method (*Alpha16) At(int, int) color.Color
 pkg image, method (*Alpha16) Bounds() Rectangle
 pkg image, method (*Alpha16) ColorModel() color.Model
 pkg image, method (*Alpha16) Opaque() bool
-pkg image, method (*Alpha16) PixOffset(int) int
-pkg image, method (*Alpha16) Set(int, color.Color)
-pkg image, method (*Alpha16) SetAlpha16(int, color.Alpha16)
+pkg image, method (*Alpha16) PixOffset(int, int) int
+pkg image, method (*Alpha16) Set(int, int, color.Color)
+pkg image, method (*Alpha16) SetAlpha16(int, int, color.Alpha16)
 pkg image, method (*Alpha16) SubImage(Rectangle) Image
-pkg image, method (*Gray) At(int) color.Color
+pkg image, method (*Gray) At(int, int) color.Color
 pkg image, method (*Gray) Bounds() Rectangle
 pkg image, method (*Gray) ColorModel() color.Model
 pkg image, method (*Gray) Opaque() bool
-pkg image, method (*Gray) PixOffset(int) int
-pkg image, method (*Gray) Set(int, color.Color)
-pkg image, method (*Gray) SetGray(int, color.Gray)
+pkg image, method (*Gray) PixOffset(int, int) int
+pkg image, method (*Gray) Set(int, int, color.Color)
+pkg image, method (*Gray) SetGray(int, int, color.Gray)
 pkg image, method (*Gray) SubImage(Rectangle) Image
-pkg image, method (*Gray16) At(int) color.Color
+pkg image, method (*Gray16) At(int, int) color.Color
 pkg image, method (*Gray16) Bounds() Rectangle
 pkg image, method (*Gray16) ColorModel() color.Model
 pkg image, method (*Gray16) Opaque() bool
-pkg image, method (*Gray16) PixOffset(int) int
-pkg image, method (*Gray16) Set(int, color.Color)
-pkg image, method (*Gray16) SetGray16(int, color.Gray16)
+pkg image, method (*Gray16) PixOffset(int, int) int
+pkg image, method (*Gray16) Set(int, int, color.Color)
+pkg image, method (*Gray16) SetGray16(int, int, color.Gray16)
 pkg image, method (*Gray16) SubImage(Rectangle) Image
-pkg image, method (*NRGBA) At(int) color.Color
+pkg image, method (*NRGBA) At(int, int) color.Color
 pkg image, method (*NRGBA) Bounds() Rectangle
 pkg image, method (*NRGBA) ColorModel() color.Model
 pkg image, method (*NRGBA) Opaque() bool
-pkg image, method (*NRGBA) PixOffset(int) int
-pkg image, method (*NRGBA) Set(int, color.Color)
-pkg image, method (*NRGBA) SetNRGBA(int, color.NRGBA)
+pkg image, method (*NRGBA) PixOffset(int, int) int
+pkg image, method (*NRGBA) Set(int, int, color.Color)
+pkg image, method (*NRGBA) SetNRGBA(int, int, color.NRGBA)
 pkg image, method (*NRGBA) SubImage(Rectangle) Image
-pkg image, method (*NRGBA64) At(int) color.Color
+pkg image, method (*NRGBA64) At(int, int) color.Color
 pkg image, method (*NRGBA64) Bounds() Rectangle
 pkg image, method (*NRGBA64) ColorModel() color.Model
 pkg image, method (*NRGBA64) Opaque() bool
-pkg image, method (*NRGBA64) PixOffset(int) int
-pkg image, method (*NRGBA64) Set(int, color.Color)
-pkg image, method (*NRGBA64) SetNRGBA64(int, color.NRGBA64)
+pkg image, method (*NRGBA64) PixOffset(int, int) int
+pkg image, method (*NRGBA64) Set(int, int, color.Color)
+pkg image, method (*NRGBA64) SetNRGBA64(int, int, color.NRGBA64)
 pkg image, method (*NRGBA64) SubImage(Rectangle) Image
-pkg image, method (*Paletted) At(int) color.Color
+pkg image, method (*Paletted) At(int, int) color.Color
 pkg image, method (*Paletted) Bounds() Rectangle
-pkg image, method (*Paletted) ColorIndexAt(int) uint8
+pkg image, method (*Paletted) ColorIndexAt(int, int) uint8
 pkg image, method (*Paletted) ColorModel() color.Model
 pkg image, method (*Paletted) Opaque() bool
-pkg image, method (*Paletted) PixOffset(int) int
-pkg image, method (*Paletted) Set(int, color.Color)
-pkg image, method (*Paletted) SetColorIndex(int, uint8)
+pkg image, method (*Paletted) PixOffset(int, int) int
+pkg image, method (*Paletted) Set(int, int, color.Color)
+pkg image, method (*Paletted) SetColorIndex(int, int, uint8)
 pkg image, method (*Paletted) SubImage(Rectangle) Image
-pkg image, method (*RGBA) At(int) color.Color
+pkg image, method (*RGBA) At(int, int) color.Color
 pkg image, method (*RGBA) Bounds() Rectangle
 pkg image, method (*RGBA) ColorModel() color.Model
 pkg image, method (*RGBA) Opaque() bool
-pkg image, method (*RGBA) PixOffset(int) int
-pkg image, method (*RGBA) Set(int, color.Color)
-pkg image, method (*RGBA) SetRGBA(int, color.RGBA)
+pkg image, method (*RGBA) PixOffset(int, int) int
+pkg image, method (*RGBA) Set(int, int, color.Color)
+pkg image, method (*RGBA) SetRGBA(int, int, color.RGBA)
 pkg image, method (*RGBA) SubImage(Rectangle) Image
-pkg image, method (*RGBA64) At(int) color.Color
+pkg image, method (*RGBA64) At(int, int) color.Color
 pkg image, method (*RGBA64) Bounds() Rectangle
 pkg image, method (*RGBA64) ColorModel() color.Model
 pkg image, method (*RGBA64) Opaque() bool
-pkg image, method (*RGBA64) PixOffset(int) int
-pkg image, method (*RGBA64) Set(int, color.Color)
-pkg image, method (*RGBA64) SetRGBA64(int, color.RGBA64)
+pkg image, method (*RGBA64) PixOffset(int, int) int
+pkg image, method (*RGBA64) Set(int, int, color.Color)
+pkg image, method (*RGBA64) SetRGBA64(int, int, color.RGBA64)
 pkg image, method (*RGBA64) SubImage(Rectangle) Image
-pkg image, method (*Uniform) At(int) color.Color
+pkg image, method (*Uniform) At(int, int) color.Color
 pkg image, method (*Uniform) Bounds() Rectangle
 pkg image, method (*Uniform) ColorModel() color.Model
 pkg image, method (*Uniform) Convert(color.Color) color.Color
 pkg image, method (*Uniform) Opaque() bool
-pkg image, method (*Uniform) RGBA() uint32
-pkg image, method (*YCbCr) At(int) color.Color
+pkg image, method (*Uniform) RGBA() (uint32, uint32, uint32, uint32)
+pkg image, method (*YCbCr) At(int, int) color.Color
 pkg image, method (*YCbCr) Bounds() Rectangle
-pkg image, method (*YCbCr) COffset(int) int
+pkg image, method (*YCbCr) COffset(int, int) int
 pkg image, method (*YCbCr) ColorModel() color.Model
 pkg image, method (*YCbCr) Opaque() bool
 pkg image, method (*YCbCr) SubImage(Rectangle) Image
-pkg image, method (*YCbCr) YOffset(int) int
+pkg image, method (*YCbCr) YOffset(int, int) int
 pkg image, method (Point) Add(Point) Point
 pkg image, method (Point) Div(int) Point
 pkg image, method (Point) Eq(Point) bool
@@ -3528,7 +3553,7 @@ pkg image, type Gray16 struct, Pix []uint8
 pkg image, type Gray16 struct, Rect Rectangle
 pkg image, type Gray16 struct, Stride int
 pkg image, type Image interface { At, Bounds, ColorModel }
-pkg image, type Image interface, At(int) color.Color
+pkg image, type Image interface, At(int, int) color.Color
 pkg image, type Image interface, Bounds() Rectangle
 pkg image, type Image interface, ColorModel() color.Model
 pkg image, type NRGBA struct
@@ -3545,9 +3570,9 @@ pkg image, type Paletted struct, Pix []uint8
 pkg image, type Paletted struct, Rect Rectangle
 pkg image, type Paletted struct, Stride int
 pkg image, type PalettedImage interface { At, Bounds, ColorIndexAt, ColorModel }
-pkg image, type PalettedImage interface, At(int) color.Color
+pkg image, type PalettedImage interface, At(int, int) color.Color
 pkg image, type PalettedImage interface, Bounds() Rectangle
-pkg image, type PalettedImage interface, ColorIndexAt(int) uint8
+pkg image, type PalettedImage interface, ColorIndexAt(int, int) uint8
 pkg image, type PalettedImage interface, ColorModel() color.Model
 pkg image, type Point struct
 pkg image, type Point struct, X int
@@ -3582,25 +3607,25 @@ pkg image, var White *Uniform
 pkg image, var ZP Point
 pkg image, var ZR Rectangle
 pkg image/color, func ModelFunc(func(Color) Color) Model
-pkg image/color, func RGBToYCbCr(uint8) (uint8, uint8, uint8)
-pkg image/color, func YCbCrToRGB(uint8) (uint8, uint8, uint8)
-pkg image/color, method (Alpha) RGBA() uint32
-pkg image/color, method (Alpha16) RGBA() uint32
-pkg image/color, method (Gray) RGBA() uint32
-pkg image/color, method (Gray16) RGBA() uint32
-pkg image/color, method (NRGBA) RGBA() uint32
-pkg image/color, method (NRGBA64) RGBA() uint32
+pkg image/color, func RGBToYCbCr(uint8, uint8, uint8) (uint8, uint8, uint8)
+pkg image/color, func YCbCrToRGB(uint8, uint8, uint8) (uint8, uint8, uint8)
+pkg image/color, method (Alpha) RGBA() (uint32, uint32, uint32, uint32)
+pkg image/color, method (Alpha16) RGBA() (uint32, uint32, uint32, uint32)
+pkg image/color, method (Gray) RGBA() (uint32, uint32, uint32, uint32)
+pkg image/color, method (Gray16) RGBA() (uint32, uint32, uint32, uint32)
+pkg image/color, method (NRGBA) RGBA() (uint32, uint32, uint32, uint32)
+pkg image/color, method (NRGBA64) RGBA() (uint32, uint32, uint32, uint32)
 pkg image/color, method (Palette) Convert(Color) Color
 pkg image/color, method (Palette) Index(Color) int
-pkg image/color, method (RGBA) RGBA() uint32
-pkg image/color, method (RGBA64) RGBA() uint32
+pkg image/color, method (RGBA) RGBA() (uint32, uint32, uint32, uint32)
+pkg image/color, method (RGBA64) RGBA() (uint32, uint32, uint32, uint32)
 pkg image/color, method (YCbCr) RGBA() (uint32, uint32, uint32, uint32)
 pkg image/color, type Alpha struct
 pkg image/color, type Alpha struct, A uint8
 pkg image/color, type Alpha16 struct
 pkg image/color, type Alpha16 struct, A uint16
 pkg image/color, type Color interface { RGBA }
-pkg image/color, type Color interface, RGBA() uint32
+pkg image/color, type Color interface, RGBA() (uint32, uint32, uint32, uint32)
 pkg image/color, type Gray struct
 pkg image/color, type Gray struct, Y uint8
 pkg image/color, type Gray16 struct
@@ -3650,10 +3675,10 @@ pkg image/draw, const Src Op
 pkg image/draw, func Draw(Image, image.Rectangle, image.Image, image.Point, Op)
 pkg image/draw, func DrawMask(Image, image.Rectangle, image.Image, image.Point, image.Image, image.Point, Op)
 pkg image/draw, type Image interface { At, Bounds, ColorModel, Set }
-pkg image/draw, type Image interface, At(int) color.Color
-pkg image/draw, type Image interface, Bounds() Rectangle
+pkg image/draw, type Image interface, At(int, int) color.Color
+pkg image/draw, type Image interface, Bounds() image.Rectangle
 pkg image/draw, type Image interface, ColorModel() color.Model
-pkg image/draw, type Image interface, Set(int, color.Color)
+pkg image/draw, type Image interface, Set(int, int, color.Color)
 pkg image/draw, type Op int
 pkg image/gif, func Decode(io.Reader) (image.Image, error)
 pkg image/gif, func DecodeAll(io.Reader) (*GIF, error)
@@ -3672,8 +3697,8 @@ pkg image/jpeg, type FormatError string
 pkg image/jpeg, type Options struct
 pkg image/jpeg, type Options struct, Quality int
 pkg image/jpeg, type Reader interface { Read, ReadByte }
-pkg image/jpeg, type Reader interface, Read([]byte) (int, error)
-pkg image/jpeg, type Reader interface, ReadByte() (byte, error)
+pkg image/jpeg, type Reader interface, Read([]uint8) (int, error)
+pkg image/jpeg, type Reader interface, ReadByte() (uint8, error)
 pkg image/jpeg, type UnsupportedError string
 pkg image/png, func Decode(io.Reader) (image.Image, error)
 pkg image/png, func DecodeConfig(io.Reader) (image.Config, error)
@@ -3682,10 +3707,10 @@ pkg image/png, method (FormatError) Error() string
 pkg image/png, method (UnsupportedError) Error() string
 pkg image/png, type FormatError string
 pkg image/png, type UnsupportedError string
-pkg index/suffixarray, func New([]byte) *Index
-pkg index/suffixarray, method (*Index) Bytes() []byte
+pkg index/suffixarray, func New([]uint8) *Index
+pkg index/suffixarray, method (*Index) Bytes() []uint8
 pkg index/suffixarray, method (*Index) FindAllIndex(*regexp.Regexp, int) [][]int
-pkg index/suffixarray, method (*Index) Lookup([]byte, int) []int
+pkg index/suffixarray, method (*Index) Lookup([]uint8, int) []int
 pkg index/suffixarray, method (*Index) Read(io.Reader) error
 pkg index/suffixarray, method (*Index) Write(io.Writer) error
 pkg index/suffixarray, type Index struct
@@ -3696,25 +3721,25 @@ pkg io, func MultiReader(...Reader) Reader
 pkg io, func MultiWriter(...Writer) Writer
 pkg io, func NewSectionReader(ReaderAt, int64, int64) *SectionReader
 pkg io, func Pipe() (*PipeReader, *PipeWriter)
-pkg io, func ReadAtLeast(Reader, []byte, int) (int, error)
-pkg io, func ReadFull(Reader, []byte) (int, error)
+pkg io, func ReadAtLeast(Reader, []uint8, int) (int, error)
+pkg io, func ReadFull(Reader, []uint8) (int, error)
 pkg io, func TeeReader(Reader, Writer) Reader
 pkg io, func WriteString(Writer, string) (int, error)
-pkg io, method (*LimitedReader) Read([]byte) (int, error)
+pkg io, method (*LimitedReader) Read([]uint8) (int, error)
 pkg io, method (*PipeReader) Close() error
 pkg io, method (*PipeReader) CloseWithError(error) error
-pkg io, method (*PipeReader) Read([]byte) (int, error)
+pkg io, method (*PipeReader) Read([]uint8) (int, error)
 pkg io, method (*PipeWriter) Close() error
 pkg io, method (*PipeWriter) CloseWithError(error) error
-pkg io, method (*PipeWriter) Write([]byte) (int, error)
-pkg io, method (*SectionReader) Read([]byte) (int, error)
-pkg io, method (*SectionReader) ReadAt([]byte, int64) (int, error)
+pkg io, method (*PipeWriter) Write([]uint8) (int, error)
+pkg io, method (*SectionReader) Read([]uint8) (int, error)
+pkg io, method (*SectionReader) ReadAt([]uint8, int64) (int, error)
 pkg io, method (*SectionReader) Seek(int64, int) (int64, error)
 pkg io, method (*SectionReader) Size() int64
 pkg io, type ByteReader interface { ReadByte }
-pkg io, type ByteReader interface, ReadByte() (byte, error)
+pkg io, type ByteReader interface, ReadByte() (uint8, error)
 pkg io, type ByteScanner interface { ReadByte, UnreadByte }
-pkg io, type ByteScanner interface, ReadByte() (byte, error)
+pkg io, type ByteScanner interface, ReadByte() (uint8, error)
 pkg io, type ByteScanner interface, UnreadByte() error
 pkg io, type Closer interface { Close }
 pkg io, type Closer interface, Close() error
@@ -3725,45 +3750,45 @@ pkg io, type PipeReader struct
 pkg io, type PipeWriter struct
 pkg io, type ReadCloser interface { Close, Read }
 pkg io, type ReadCloser interface, Close() error
-pkg io, type ReadCloser interface, Read([]byte) (int, error)
+pkg io, type ReadCloser interface, Read([]uint8) (int, error)
 pkg io, type ReadSeeker interface { Read, Seek }
-pkg io, type ReadSeeker interface, Read([]byte) (int, error)
+pkg io, type ReadSeeker interface, Read([]uint8) (int, error)
 pkg io, type ReadSeeker interface, Seek(int64, int) (int64, error)
 pkg io, type ReadWriteCloser interface { Close, Read, Write }
 pkg io, type ReadWriteCloser interface, Close() error
-pkg io, type ReadWriteCloser interface, Read([]byte) (int, error)
-pkg io, type ReadWriteCloser interface, Write([]byte) (int, error)
+pkg io, type ReadWriteCloser interface, Read([]uint8) (int, error)
+pkg io, type ReadWriteCloser interface, Write([]uint8) (int, error)
 pkg io, type ReadWriteSeeker interface { Read, Seek, Write }
-pkg io, type ReadWriteSeeker interface, Read([]byte) (int, error)
+pkg io, type ReadWriteSeeker interface, Read([]uint8) (int, error)
 pkg io, type ReadWriteSeeker interface, Seek(int64, int) (int64, error)
-pkg io, type ReadWriteSeeker interface, Write([]byte) (int, error)
+pkg io, type ReadWriteSeeker interface, Write([]uint8) (int, error)
 pkg io, type ReadWriter interface { Read, Write }
-pkg io, type ReadWriter interface, Read([]byte) (int, error)
-pkg io, type ReadWriter interface, Write([]byte) (int, error)
+pkg io, type ReadWriter interface, Read([]uint8) (int, error)
+pkg io, type ReadWriter interface, Write([]uint8) (int, error)
 pkg io, type Reader interface { Read }
-pkg io, type Reader interface, Read([]byte) (int, error)
+pkg io, type Reader interface, Read([]uint8) (int, error)
 pkg io, type ReaderAt interface { ReadAt }
-pkg io, type ReaderAt interface, ReadAt([]byte, int64) (int, error)
+pkg io, type ReaderAt interface, ReadAt([]uint8, int64) (int, error)
 pkg io, type ReaderFrom interface { ReadFrom }
 pkg io, type ReaderFrom interface, ReadFrom(Reader) (int64, error)
 pkg io, type RuneReader interface { ReadRune }
-pkg io, type RuneReader interface, ReadRune() (rune, int, error)
+pkg io, type RuneReader interface, ReadRune() (int32, int, error)
 pkg io, type RuneScanner interface { ReadRune, UnreadRune }
-pkg io, type RuneScanner interface, ReadRune() (rune, int, error)
+pkg io, type RuneScanner interface, ReadRune() (int32, int, error)
 pkg io, type RuneScanner interface, UnreadRune() error
 pkg io, type SectionReader struct
 pkg io, type Seeker interface { Seek }
 pkg io, type Seeker interface, Seek(int64, int) (int64, error)
 pkg io, type WriteCloser interface { Close, Write }
 pkg io, type WriteCloser interface, Close() error
-pkg io, type WriteCloser interface, Write([]byte) (int, error)
+pkg io, type WriteCloser interface, Write([]uint8) (int, error)
 pkg io, type WriteSeeker interface { Seek, Write }
 pkg io, type WriteSeeker interface, Seek(int64, int) (int64, error)
-pkg io, type WriteSeeker interface, Write([]byte) (int, error)
+pkg io, type WriteSeeker interface, Write([]uint8) (int, error)
 pkg io, type Writer interface { Write }
-pkg io, type Writer interface, Write([]byte) (int, error)
+pkg io, type Writer interface, Write([]uint8) (int, error)
 pkg io, type WriterAt interface { WriteAt }
-pkg io, type WriterAt interface, WriteAt([]byte, int64) (int, error)
+pkg io, type WriterAt interface, WriteAt([]uint8, int64) (int, error)
 pkg io, type WriterTo interface { WriteTo }
 pkg io, type WriterTo interface, WriteTo(Writer) (int64, error)
 pkg io, var EOF error
@@ -3772,12 +3797,12 @@ pkg io, var ErrShortBuffer error
 pkg io, var ErrShortWrite error
 pkg io, var ErrUnexpectedEOF error
 pkg io/ioutil, func NopCloser(io.Reader) io.ReadCloser
-pkg io/ioutil, func ReadAll(io.Reader) ([]byte, error)
+pkg io/ioutil, func ReadAll(io.Reader) ([]uint8, error)
 pkg io/ioutil, func ReadDir(string) ([]os.FileInfo, error)
-pkg io/ioutil, func ReadFile(string) ([]byte, error)
-pkg io/ioutil, func TempDir(string) (string, error)
-pkg io/ioutil, func TempFile(string) (*os.File, error)
-pkg io/ioutil, func WriteFile(string, []byte, os.FileMode) error
+pkg io/ioutil, func ReadFile(string) ([]uint8, error)
+pkg io/ioutil, func TempDir(string, string) (string, error)
+pkg io/ioutil, func TempFile(string, string) (*os.File, error)
+pkg io/ioutil, func WriteFile(string, []uint8, os.FileMode) error
 pkg io/ioutil, var Discard io.Writer
 pkg log, const Ldate ideal-int
 pkg log, const Llongfile ideal-int
@@ -3823,7 +3848,7 @@ pkg log/syslog (darwin-386), const LOG_ERR Priority
 pkg log/syslog (darwin-386), const LOG_INFO Priority
 pkg log/syslog (darwin-386), const LOG_NOTICE Priority
 pkg log/syslog (darwin-386), const LOG_WARNING Priority
-pkg log/syslog (darwin-386), func Dial(string, Priority, string) (*Writer, error)
+pkg log/syslog (darwin-386), func Dial(string, string, Priority, string) (*Writer, error)
 pkg log/syslog (darwin-386), func New(Priority, string) (*Writer, error)
 pkg log/syslog (darwin-386), func NewLogger(Priority, int) (*log.Logger, error)
 pkg log/syslog (darwin-386), method (*Writer) Alert(string) error
@@ -3835,7 +3860,7 @@ pkg log/syslog (darwin-386), method (*Writer) Err(string) error
 pkg log/syslog (darwin-386), method (*Writer) Info(string) error
 pkg log/syslog (darwin-386), method (*Writer) Notice(string) error
 pkg log/syslog (darwin-386), method (*Writer) Warning(string) error
-pkg log/syslog (darwin-386), method (*Writer) Write([]byte) (int, error)
+pkg log/syslog (darwin-386), method (*Writer) Write([]uint8) (int, error)
 pkg log/syslog (darwin-386), type Priority int
 pkg log/syslog (darwin-386), type Writer struct
 pkg log/syslog (darwin-386-cgo), const LOG_ALERT Priority
@@ -3846,7 +3871,7 @@ pkg log/syslog (darwin-386-cgo), const LOG_ERR Priority
 pkg log/syslog (darwin-386-cgo), const LOG_INFO Priority
 pkg log/syslog (darwin-386-cgo), const LOG_NOTICE Priority
 pkg log/syslog (darwin-386-cgo), const LOG_WARNING Priority
-pkg log/syslog (darwin-386-cgo), func Dial(string, Priority, string) (*Writer, error)
+pkg log/syslog (darwin-386-cgo), func Dial(string, string, Priority, string) (*Writer, error)
 pkg log/syslog (darwin-386-cgo), func New(Priority, string) (*Writer, error)
 pkg log/syslog (darwin-386-cgo), func NewLogger(Priority, int) (*log.Logger, error)
 pkg log/syslog (darwin-386-cgo), method (*Writer) Alert(string) error
@@ -3858,7 +3883,7 @@ pkg log/syslog (darwin-386-cgo), method (*Writer) Err(string) error
 pkg log/syslog (darwin-386-cgo), method (*Writer) Info(string) error
 pkg log/syslog (darwin-386-cgo), method (*Writer) Notice(string) error
 pkg log/syslog (darwin-386-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (darwin-386-cgo), method (*Writer) Write([]byte) (int, error)
+pkg log/syslog (darwin-386-cgo), method (*Writer) Write([]uint8) (int, error)
 pkg log/syslog (darwin-386-cgo), type Priority int
 pkg log/syslog (darwin-386-cgo), type Writer struct
 pkg log/syslog (darwin-amd64), const LOG_ALERT Priority
@@ -3869,7 +3894,7 @@ pkg log/syslog (darwin-amd64), const LOG_ERR Priority
 pkg log/syslog (darwin-amd64), const LOG_INFO Priority
 pkg log/syslog (darwin-amd64), const LOG_NOTICE Priority
 pkg log/syslog (darwin-amd64), const LOG_WARNING Priority
-pkg log/syslog (darwin-amd64), func Dial(string, Priority, string) (*Writer, error)
+pkg log/syslog (darwin-amd64), func Dial(string, string, Priority, string) (*Writer, error)
 pkg log/syslog (darwin-amd64), func New(Priority, string) (*Writer, error)
 pkg log/syslog (darwin-amd64), func NewLogger(Priority, int) (*log.Logger, error)
 pkg log/syslog (darwin-amd64), method (*Writer) Alert(string) error
@@ -3881,7 +3906,7 @@ pkg log/syslog (darwin-amd64), method (*Writer) Err(string) error
 pkg log/syslog (darwin-amd64), method (*Writer) Info(string) error
 pkg log/syslog (darwin-amd64), method (*Writer) Notice(string) error
 pkg log/syslog (darwin-amd64), method (*Writer) Warning(string) error
-pkg log/syslog (darwin-amd64), method (*Writer) Write([]byte) (int, error)
+pkg log/syslog (darwin-amd64), method (*Writer) Write([]uint8) (int, error)
 pkg log/syslog (darwin-amd64), type Priority int
 pkg log/syslog (darwin-amd64), type Writer struct
 pkg log/syslog (darwin-amd64-cgo), const LOG_ALERT Priority
@@ -3892,7 +3917,7 @@ pkg log/syslog (darwin-amd64-cgo), const LOG_ERR Priority
 pkg log/syslog (darwin-amd64-cgo), const LOG_INFO Priority
 pkg log/syslog (darwin-amd64-cgo), const LOG_NOTICE Priority
 pkg log/syslog (darwin-amd64-cgo), const LOG_WARNING Priority
-pkg log/syslog (darwin-amd64-cgo), func Dial(string, Priority, string) (*Writer, error)
+pkg log/syslog (darwin-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
 pkg log/syslog (darwin-amd64-cgo), func New(Priority, string) (*Writer, error)
 pkg log/syslog (darwin-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
 pkg log/syslog (darwin-amd64-cgo), method (*Writer) Alert(string) error
@@ -3904,9 +3929,55 @@ pkg log/syslog (darwin-amd64-cgo), method (*Writer) Err(string) error
 pkg log/syslog (darwin-amd64-cgo), method (*Writer) Info(string) error
 pkg log/syslog (darwin-amd64-cgo), method (*Writer) Notice(string) error
 pkg log/syslog (darwin-amd64-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (darwin-amd64-cgo), method (*Writer) Write([]byte) (int, error)
+pkg log/syslog (darwin-amd64-cgo), method (*Writer) Write([]uint8) (int, error)
 pkg log/syslog (darwin-amd64-cgo), type Priority int
 pkg log/syslog (darwin-amd64-cgo), type Writer struct
+pkg log/syslog (freebsd-386), const LOG_ALERT Priority
+pkg log/syslog (freebsd-386), const LOG_CRIT Priority
+pkg log/syslog (freebsd-386), const LOG_DEBUG Priority
+pkg log/syslog (freebsd-386), const LOG_EMERG Priority
+pkg log/syslog (freebsd-386), const LOG_ERR Priority
+pkg log/syslog (freebsd-386), const LOG_INFO Priority
+pkg log/syslog (freebsd-386), const LOG_NOTICE Priority
+pkg log/syslog (freebsd-386), const LOG_WARNING Priority
+pkg log/syslog (freebsd-386), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-386), func New(Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-386), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (freebsd-386), method (*Writer) Alert(string) error
+pkg log/syslog (freebsd-386), method (*Writer) Close() error
+pkg log/syslog (freebsd-386), method (*Writer) Crit(string) error
+pkg log/syslog (freebsd-386), method (*Writer) Debug(string) error
+pkg log/syslog (freebsd-386), method (*Writer) Emerg(string) error
+pkg log/syslog (freebsd-386), method (*Writer) Err(string) error
+pkg log/syslog (freebsd-386), method (*Writer) Info(string) error
+pkg log/syslog (freebsd-386), method (*Writer) Notice(string) error
+pkg log/syslog (freebsd-386), method (*Writer) Warning(string) error
+pkg log/syslog (freebsd-386), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (freebsd-386), type Priority int
+pkg log/syslog (freebsd-386), type Writer struct
+pkg log/syslog (freebsd-amd64), const LOG_ALERT Priority
+pkg log/syslog (freebsd-amd64), const LOG_CRIT Priority
+pkg log/syslog (freebsd-amd64), const LOG_DEBUG Priority
+pkg log/syslog (freebsd-amd64), const LOG_EMERG Priority
+pkg log/syslog (freebsd-amd64), const LOG_ERR Priority
+pkg log/syslog (freebsd-amd64), const LOG_INFO Priority
+pkg log/syslog (freebsd-amd64), const LOG_NOTICE Priority
+pkg log/syslog (freebsd-amd64), const LOG_WARNING Priority
+pkg log/syslog (freebsd-amd64), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-amd64), func New(Priority, string) (*Writer, error)
+pkg log/syslog (freebsd-amd64), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (freebsd-amd64), method (*Writer) Alert(string) error
+pkg log/syslog (freebsd-amd64), method (*Writer) Close() error
+pkg log/syslog (freebsd-amd64), method (*Writer) Crit(string) error
+pkg log/syslog (freebsd-amd64), method (*Writer) Debug(string) error
+pkg log/syslog (freebsd-amd64), method (*Writer) Emerg(string) error
+pkg log/syslog (freebsd-amd64), method (*Writer) Err(string) error
+pkg log/syslog (freebsd-amd64), method (*Writer) Info(string) error
+pkg log/syslog (freebsd-amd64), method (*Writer) Notice(string) error
+pkg log/syslog (freebsd-amd64), method (*Writer) Warning(string) error
+pkg log/syslog (freebsd-amd64), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (freebsd-amd64), type Priority int
+pkg log/syslog (freebsd-amd64), type Writer struct
 pkg log/syslog (linux-386), const LOG_ALERT Priority
 pkg log/syslog (linux-386), const LOG_CRIT Priority
 pkg log/syslog (linux-386), const LOG_DEBUG Priority
@@ -3915,7 +3986,7 @@ pkg log/syslog (linux-386), const LOG_ERR Priority
 pkg log/syslog (linux-386), const LOG_INFO Priority
 pkg log/syslog (linux-386), const LOG_NOTICE Priority
 pkg log/syslog (linux-386), const LOG_WARNING Priority
-pkg log/syslog (linux-386), func Dial(string, Priority, string) (*Writer, error)
+pkg log/syslog (linux-386), func Dial(string, string, Priority, string) (*Writer, error)
 pkg log/syslog (linux-386), func New(Priority, string) (*Writer, error)
 pkg log/syslog (linux-386), func NewLogger(Priority, int) (*log.Logger, error)
 pkg log/syslog (linux-386), method (*Writer) Alert(string) error
@@ -3927,7 +3998,7 @@ pkg log/syslog (linux-386), method (*Writer) Err(string) error
 pkg log/syslog (linux-386), method (*Writer) Info(string) error
 pkg log/syslog (linux-386), method (*Writer) Notice(string) error
 pkg log/syslog (linux-386), method (*Writer) Warning(string) error
-pkg log/syslog (linux-386), method (*Writer) Write([]byte) (int, error)
+pkg log/syslog (linux-386), method (*Writer) Write([]uint8) (int, error)
 pkg log/syslog (linux-386), type Priority int
 pkg log/syslog (linux-386), type Writer struct
 pkg log/syslog (linux-386-cgo), const LOG_ALERT Priority
@@ -3938,7 +4009,7 @@ pkg log/syslog (linux-386-cgo), const LOG_ERR Priority
 pkg log/syslog (linux-386-cgo), const LOG_INFO Priority
 pkg log/syslog (linux-386-cgo), const LOG_NOTICE Priority
 pkg log/syslog (linux-386-cgo), const LOG_WARNING Priority
-pkg log/syslog (linux-386-cgo), func Dial(string, Priority, string) (*Writer, error)
+pkg log/syslog (linux-386-cgo), func Dial(string, string, Priority, string) (*Writer, error)
 pkg log/syslog (linux-386-cgo), func New(Priority, string) (*Writer, error)
 pkg log/syslog (linux-386-cgo), func NewLogger(Priority, int) (*log.Logger, error)
 pkg log/syslog (linux-386-cgo), method (*Writer) Alert(string) error
@@ -3950,7 +4021,7 @@ pkg log/syslog (linux-386-cgo), method (*Writer) Err(string) error
 pkg log/syslog (linux-386-cgo), method (*Writer) Info(string) error
 pkg log/syslog (linux-386-cgo), method (*Writer) Notice(string) error
 pkg log/syslog (linux-386-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (linux-386-cgo), method (*Writer) Write([]byte) (int, error)
+pkg log/syslog (linux-386-cgo), method (*Writer) Write([]uint8) (int, error)
 pkg log/syslog (linux-386-cgo), type Priority int
 pkg log/syslog (linux-386-cgo), type Writer struct
 pkg log/syslog (linux-amd64), const LOG_ALERT Priority
@@ -3961,7 +4032,7 @@ pkg log/syslog (linux-amd64), const LOG_ERR Priority
 pkg log/syslog (linux-amd64), const LOG_INFO Priority
 pkg log/syslog (linux-amd64), const LOG_NOTICE Priority
 pkg log/syslog (linux-amd64), const LOG_WARNING Priority
-pkg log/syslog (linux-amd64), func Dial(string, Priority, string) (*Writer, error)
+pkg log/syslog (linux-amd64), func Dial(string, string, Priority, string) (*Writer, error)
 pkg log/syslog (linux-amd64), func New(Priority, string) (*Writer, error)
 pkg log/syslog (linux-amd64), func NewLogger(Priority, int) (*log.Logger, error)
 pkg log/syslog (linux-amd64), method (*Writer) Alert(string) error
@@ -3973,7 +4044,7 @@ pkg log/syslog (linux-amd64), method (*Writer) Err(string) error
 pkg log/syslog (linux-amd64), method (*Writer) Info(string) error
 pkg log/syslog (linux-amd64), method (*Writer) Notice(string) error
 pkg log/syslog (linux-amd64), method (*Writer) Warning(string) error
-pkg log/syslog (linux-amd64), method (*Writer) Write([]byte) (int, error)
+pkg log/syslog (linux-amd64), method (*Writer) Write([]uint8) (int, error)
 pkg log/syslog (linux-amd64), type Priority int
 pkg log/syslog (linux-amd64), type Writer struct
 pkg log/syslog (linux-amd64-cgo), const LOG_ALERT Priority
@@ -3984,7 +4055,7 @@ pkg log/syslog (linux-amd64-cgo), const LOG_ERR Priority
 pkg log/syslog (linux-amd64-cgo), const LOG_INFO Priority
 pkg log/syslog (linux-amd64-cgo), const LOG_NOTICE Priority
 pkg log/syslog (linux-amd64-cgo), const LOG_WARNING Priority
-pkg log/syslog (linux-amd64-cgo), func Dial(string, Priority, string) (*Writer, error)
+pkg log/syslog (linux-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
 pkg log/syslog (linux-amd64-cgo), func New(Priority, string) (*Writer, error)
 pkg log/syslog (linux-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
 pkg log/syslog (linux-amd64-cgo), method (*Writer) Alert(string) error
@@ -3996,9 +4067,32 @@ pkg log/syslog (linux-amd64-cgo), method (*Writer) Err(string) error
 pkg log/syslog (linux-amd64-cgo), method (*Writer) Info(string) error
 pkg log/syslog (linux-amd64-cgo), method (*Writer) Notice(string) error
 pkg log/syslog (linux-amd64-cgo), method (*Writer) Warning(string) error
-pkg log/syslog (linux-amd64-cgo), method (*Writer) Write([]byte) (int, error)
+pkg log/syslog (linux-amd64-cgo), method (*Writer) Write([]uint8) (int, error)
 pkg log/syslog (linux-amd64-cgo), type Priority int
 pkg log/syslog (linux-amd64-cgo), type Writer struct
+pkg log/syslog (linux-arm), const LOG_ALERT Priority
+pkg log/syslog (linux-arm), const LOG_CRIT Priority
+pkg log/syslog (linux-arm), const LOG_DEBUG Priority
+pkg log/syslog (linux-arm), const LOG_EMERG Priority
+pkg log/syslog (linux-arm), const LOG_ERR Priority
+pkg log/syslog (linux-arm), const LOG_INFO Priority
+pkg log/syslog (linux-arm), const LOG_NOTICE Priority
+pkg log/syslog (linux-arm), const LOG_WARNING Priority
+pkg log/syslog (linux-arm), func Dial(string, string, Priority, string) (*Writer, error)
+pkg log/syslog (linux-arm), func New(Priority, string) (*Writer, error)
+pkg log/syslog (linux-arm), func NewLogger(Priority, int) (*log.Logger, error)
+pkg log/syslog (linux-arm), method (*Writer) Alert(string) error
+pkg log/syslog (linux-arm), method (*Writer) Close() error
+pkg log/syslog (linux-arm), method (*Writer) Crit(string) error
+pkg log/syslog (linux-arm), method (*Writer) Debug(string) error
+pkg log/syslog (linux-arm), method (*Writer) Emerg(string) error
+pkg log/syslog (linux-arm), method (*Writer) Err(string) error
+pkg log/syslog (linux-arm), method (*Writer) Info(string) error
+pkg log/syslog (linux-arm), method (*Writer) Notice(string) error
+pkg log/syslog (linux-arm), method (*Writer) Warning(string) error
+pkg log/syslog (linux-arm), method (*Writer) Write([]uint8) (int, error)
+pkg log/syslog (linux-arm), type Priority int
+pkg log/syslog (linux-arm), type Writer struct
 pkg math, const E ideal-float
 pkg math, const Ln10 ideal-float
 pkg math, const Ln2 ideal-float
@@ -4032,14 +4126,14 @@ pkg math, func Acosh(float64) float64
 pkg math, func Asin(float64) float64
 pkg math, func Asinh(float64) float64
 pkg math, func Atan(float64) float64
-pkg math, func Atan2(float64) float64
+pkg math, func Atan2(float64, float64) float64
 pkg math, func Atanh(float64) float64
 pkg math, func Cbrt(float64) float64
 pkg math, func Ceil(float64) float64
-pkg math, func Copysign(float64) float64
+pkg math, func Copysign(float64, float64) float64
 pkg math, func Cos(float64) float64
 pkg math, func Cosh(float64) float64
-pkg math, func Dim(float64) float64
+pkg math, func Dim(float64, float64) float64
 pkg math, func Erf(float64) float64
 pkg math, func Erfc(float64) float64
 pkg math, func Exp(float64) float64
@@ -4052,7 +4146,7 @@ pkg math, func Float64frombits(uint64) float64
 pkg math, func Floor(float64) float64
 pkg math, func Frexp(float64) (float64, int)
 pkg math, func Gamma(float64) float64
-pkg math, func Hypot(float64) float64
+pkg math, func Hypot(float64, float64) float64
 pkg math, func Ilogb(float64) int
 pkg math, func Inf(int) float64
 pkg math, func IsInf(float64, int) bool
@@ -4067,18 +4161,18 @@ pkg math, func Log10(float64) float64
 pkg math, func Log1p(float64) float64
 pkg math, func Log2(float64) float64
 pkg math, func Logb(float64) float64
-pkg math, func Max(float64) float64
-pkg math, func Min(float64) float64
-pkg math, func Mod(float64) float64
+pkg math, func Max(float64, float64) float64
+pkg math, func Min(float64, float64) float64
+pkg math, func Mod(float64, float64) float64
 pkg math, func Modf(float64) (float64, float64)
 pkg math, func NaN() float64
-pkg math, func Nextafter(float64) float64
-pkg math, func Pow(float64) float64
+pkg math, func Nextafter(float64, float64) float64
+pkg math, func Pow(float64, float64) float64
 pkg math, func Pow10(int) float64
-pkg math, func Remainder(float64) float64
+pkg math, func Remainder(float64, float64) float64
 pkg math, func Signbit(float64) bool
 pkg math, func Sin(float64) float64
-pkg math, func Sincos(float64) float64
+pkg math, func Sincos(float64) (float64, float64)
 pkg math, func Sinh(float64) float64
 pkg math, func Sqrt(float64) float64
 pkg math, func Tan(float64) float64
@@ -4087,76 +4181,76 @@ pkg math, func Trunc(float64) float64
 pkg math, func Y0(float64) float64
 pkg math, func Y1(float64) float64
 pkg math, func Yn(int, float64) float64
-pkg math/big, const MaxBase ideal-int
+pkg math/big, const MaxBase ideal-char
 pkg math/big, func NewInt(int64) *Int
-pkg math/big, func NewRat(int64) *Rat
+pkg math/big, func NewRat(int64, int64) *Rat
 pkg math/big, method (*Int) Abs(*Int) *Int
-pkg math/big, method (*Int) Add(*Int) *Int
-pkg math/big, method (*Int) And(*Int) *Int
-pkg math/big, method (*Int) AndNot(*Int) *Int
-pkg math/big, method (*Int) Binomial(int64) *Int
+pkg math/big, method (*Int) Add(*Int, *Int) *Int
+pkg math/big, method (*Int) And(*Int, *Int) *Int
+pkg math/big, method (*Int) AndNot(*Int, *Int) *Int
+pkg math/big, method (*Int) Binomial(int64, int64) *Int
 pkg math/big, method (*Int) Bit(int) uint
 pkg math/big, method (*Int) BitLen() int
 pkg math/big, method (*Int) Bits() []Word
-pkg math/big, method (*Int) Bytes() []byte
+pkg math/big, method (*Int) Bytes() []uint8
 pkg math/big, method (*Int) Cmp(*Int) int
-pkg math/big, method (*Int) Div(*Int) *Int
-pkg math/big, method (*Int) DivMod(*Int) (*Int, *Int)
-pkg math/big, method (*Int) Exp(*Int) *Int
-pkg math/big, method (*Int) Format(fmt.State, rune)
-pkg math/big, method (*Int) GCD(*Int) *Int
-pkg math/big, method (*Int) GobDecode([]byte) error
-pkg math/big, method (*Int) GobEncode() ([]byte, error)
+pkg math/big, method (*Int) Div(*Int, *Int) *Int
+pkg math/big, method (*Int) DivMod(*Int, *Int, *Int) (*Int, *Int)
+pkg math/big, method (*Int) Exp(*Int, *Int, *Int) *Int
+pkg math/big, method (*Int) Format(fmt.State, int32)
+pkg math/big, method (*Int) GCD(*Int, *Int, *Int, *Int) *Int
+pkg math/big, method (*Int) GobDecode([]uint8) error
+pkg math/big, method (*Int) GobEncode() ([]uint8, error)
 pkg math/big, method (*Int) Int64() int64
 pkg math/big, method (*Int) Lsh(*Int, uint) *Int
-pkg math/big, method (*Int) Mod(*Int) *Int
-pkg math/big, method (*Int) ModInverse(*Int) *Int
-pkg math/big, method (*Int) Mul(*Int) *Int
-pkg math/big, method (*Int) MulRange(int64) *Int
+pkg math/big, method (*Int) Mod(*Int, *Int) *Int
+pkg math/big, method (*Int) ModInverse(*Int, *Int) *Int
+pkg math/big, method (*Int) Mul(*Int, *Int) *Int
+pkg math/big, method (*Int) MulRange(int64, int64) *Int
 pkg math/big, method (*Int) Neg(*Int) *Int
 pkg math/big, method (*Int) Not(*Int) *Int
-pkg math/big, method (*Int) Or(*Int) *Int
+pkg math/big, method (*Int) Or(*Int, *Int) *Int
 pkg math/big, method (*Int) ProbablyPrime(int) bool
-pkg math/big, method (*Int) Quo(*Int) *Int
-pkg math/big, method (*Int) QuoRem(*Int) (*Int, *Int)
+pkg math/big, method (*Int) Quo(*Int, *Int) *Int
+pkg math/big, method (*Int) QuoRem(*Int, *Int, *Int) (*Int, *Int)
 pkg math/big, method (*Int) Rand(*rand.Rand, *Int) *Int
-pkg math/big, method (*Int) Rem(*Int) *Int
+pkg math/big, method (*Int) Rem(*Int, *Int) *Int
 pkg math/big, method (*Int) Rsh(*Int, uint) *Int
-pkg math/big, method (*Int) Scan(fmt.ScanState, rune) error
+pkg math/big, method (*Int) Scan(fmt.ScanState, int32) error
 pkg math/big, method (*Int) Set(*Int) *Int
 pkg math/big, method (*Int) SetBit(*Int, int, uint) *Int
 pkg math/big, method (*Int) SetBits([]Word) *Int
-pkg math/big, method (*Int) SetBytes([]byte) *Int
+pkg math/big, method (*Int) SetBytes([]uint8) *Int
 pkg math/big, method (*Int) SetInt64(int64) *Int
 pkg math/big, method (*Int) SetString(string, int) (*Int, bool)
 pkg math/big, method (*Int) Sign() int
 pkg math/big, method (*Int) String() string
-pkg math/big, method (*Int) Sub(*Int) *Int
-pkg math/big, method (*Int) Xor(*Int) *Int
+pkg math/big, method (*Int) Sub(*Int, *Int) *Int
+pkg math/big, method (*Int) Xor(*Int, *Int) *Int
 pkg math/big, method (*Rat) Abs(*Rat) *Rat
-pkg math/big, method (*Rat) Add(*Rat) *Rat
+pkg math/big, method (*Rat) Add(*Rat, *Rat) *Rat
 pkg math/big, method (*Rat) Cmp(*Rat) int
 pkg math/big, method (*Rat) Denom() *Int
 pkg math/big, method (*Rat) FloatString(int) string
-pkg math/big, method (*Rat) GobDecode([]byte) error
-pkg math/big, method (*Rat) GobEncode() ([]byte, error)
+pkg math/big, method (*Rat) GobDecode([]uint8) error
+pkg math/big, method (*Rat) GobEncode() ([]uint8, error)
 pkg math/big, method (*Rat) Inv(*Rat) *Rat
 pkg math/big, method (*Rat) IsInt() bool
-pkg math/big, method (*Rat) Mul(*Rat) *Rat
+pkg math/big, method (*Rat) Mul(*Rat, *Rat) *Rat
 pkg math/big, method (*Rat) Neg(*Rat) *Rat
 pkg math/big, method (*Rat) Num() *Int
-pkg math/big, method (*Rat) Quo(*Rat) *Rat
+pkg math/big, method (*Rat) Quo(*Rat, *Rat) *Rat
 pkg math/big, method (*Rat) RatString() string
-pkg math/big, method (*Rat) Scan(fmt.ScanState, rune) error
+pkg math/big, method (*Rat) Scan(fmt.ScanState, int32) error
 pkg math/big, method (*Rat) Set(*Rat) *Rat
-pkg math/big, method (*Rat) SetFrac(*Int) *Rat
-pkg math/big, method (*Rat) SetFrac64(int64) *Rat
+pkg math/big, method (*Rat) SetFrac(*Int, *Int) *Rat
+pkg math/big, method (*Rat) SetFrac64(int64, int64) *Rat
 pkg math/big, method (*Rat) SetInt(*Int) *Rat
 pkg math/big, method (*Rat) SetInt64(int64) *Rat
 pkg math/big, method (*Rat) SetString(string) (*Rat, bool)
 pkg math/big, method (*Rat) Sign() int
 pkg math/big, method (*Rat) String() string
-pkg math/big, method (*Rat) Sub(*Rat) *Rat
+pkg math/big, method (*Rat) Sub(*Rat, *Rat) *Rat
 pkg math/big, type Int struct
 pkg math/big, type Rat struct
 pkg math/big, type Word uintptr
@@ -4179,9 +4273,9 @@ pkg math/cmplx, func Log(complex128) complex128
 pkg math/cmplx, func Log10(complex128) complex128
 pkg math/cmplx, func NaN() complex128
 pkg math/cmplx, func Phase(complex128) float64
-pkg math/cmplx, func Polar(complex128) float64
-pkg math/cmplx, func Pow(complex128) complex128
-pkg math/cmplx, func Rect(float64) complex128
+pkg math/cmplx, func Polar(complex128) (float64, float64)
+pkg math/cmplx, func Pow(complex128, complex128) complex128
+pkg math/cmplx, func Rect(float64, float64) complex128
 pkg math/cmplx, func Sin(complex128) complex128
 pkg math/cmplx, func Sinh(complex128) complex128
 pkg math/cmplx, func Sqrt(complex128) complex128
@@ -4222,7 +4316,7 @@ pkg math/rand, type Source interface { Int63, Seed }
 pkg math/rand, type Source interface, Int63() int64
 pkg math/rand, type Source interface, Seed(int64)
 pkg math/rand, type Zipf struct
-pkg mime, func AddExtensionType(string) error
+pkg mime, func AddExtensionType(string, string) error
 pkg mime, func FormatMediaType(string, map[string]string) string
 pkg mime, func ParseMediaType(string) (string, map[string]string, error)
 pkg mime, func TypeByExtension(string) string
@@ -4233,20 +4327,20 @@ pkg mime/multipart, method (*Form) RemoveAll() error
 pkg mime/multipart, method (*Part) Close() error
 pkg mime/multipart, method (*Part) FileName() string
 pkg mime/multipart, method (*Part) FormName() string
-pkg mime/multipart, method (*Part) Read([]byte) (int, error)
+pkg mime/multipart, method (*Part) Read([]uint8) (int, error)
 pkg mime/multipart, method (*Reader) NextPart() (*Part, error)
 pkg mime/multipart, method (*Reader) ReadForm(int64) (*Form, error)
 pkg mime/multipart, method (*Writer) Boundary() string
 pkg mime/multipart, method (*Writer) Close() error
 pkg mime/multipart, method (*Writer) CreateFormField(string) (io.Writer, error)
-pkg mime/multipart, method (*Writer) CreateFormFile(string) (io.Writer, error)
+pkg mime/multipart, method (*Writer) CreateFormFile(string, string) (io.Writer, error)
 pkg mime/multipart, method (*Writer) CreatePart(textproto.MIMEHeader) (io.Writer, error)
 pkg mime/multipart, method (*Writer) FormDataContentType() string
-pkg mime/multipart, method (*Writer) WriteField(string) error
+pkg mime/multipart, method (*Writer) WriteField(string, string) error
 pkg mime/multipart, type File interface { Close, Read, ReadAt, Seek }
 pkg mime/multipart, type File interface, Close() error
-pkg mime/multipart, type File interface, Read([]byte) (int, error)
-pkg mime/multipart, type File interface, ReadAt([]byte, int64) (int, error)
+pkg mime/multipart, type File interface, Read([]uint8) (int, error)
+pkg mime/multipart, type File interface, ReadAt([]uint8, int64) (int, error)
 pkg mime/multipart, type File interface, Seek(int64, int) (int64, error)
 pkg mime/multipart, type FileHeader struct
 pkg mime/multipart, type FileHeader struct, Filename string
@@ -4265,27 +4359,27 @@ pkg net, const FlagPointToPoint Flags
 pkg net, const FlagUp Flags
 pkg net, const IPv4len ideal-int
 pkg net, const IPv6len ideal-int
-pkg net, func CIDRMask(int) IPMask
-pkg net, func Dial(string) (Conn, error)
-pkg net, func DialIP(string, *IPAddr) (*IPConn, error)
-pkg net, func DialTCP(string, *TCPAddr) (*TCPConn, error)
-pkg net, func DialTimeout(string, time.Duration) (Conn, error)
-pkg net, func DialUDP(string, *UDPAddr) (*UDPConn, error)
-pkg net, func DialUnix(string, *UnixAddr) (*UnixConn, error)
+pkg net, func CIDRMask(int, int) IPMask
+pkg net, func Dial(string, string) (Conn, error)
+pkg net, func DialIP(string, *IPAddr, *IPAddr) (*IPConn, error)
+pkg net, func DialTCP(string, *TCPAddr, *TCPAddr) (*TCPConn, error)
+pkg net, func DialTimeout(string, string, time.Duration) (Conn, error)
+pkg net, func DialUDP(string, *UDPAddr, *UDPAddr) (*UDPConn, error)
+pkg net, func DialUnix(string, *UnixAddr, *UnixAddr) (*UnixConn, error)
 pkg net, func FileConn(*os.File) (Conn, error)
 pkg net, func FileListener(*os.File) (Listener, error)
 pkg net, func FilePacketConn(*os.File) (PacketConn, error)
-pkg net, func IPv4(byte) IP
-pkg net, func IPv4Mask(byte) IPMask
+pkg net, func IPv4(uint8, uint8, uint8, uint8) IP
+pkg net, func IPv4Mask(uint8, uint8, uint8, uint8) IPMask
 pkg net, func InterfaceAddrs() ([]Addr, error)
 pkg net, func InterfaceByIndex(int) (*Interface, error)
 pkg net, func InterfaceByName(string) (*Interface, error)
 pkg net, func Interfaces() ([]Interface, error)
-pkg net, func JoinHostPort(string) string
-pkg net, func Listen(string) (Listener, error)
+pkg net, func JoinHostPort(string, string) string
+pkg net, func Listen(string, string) (Listener, error)
 pkg net, func ListenIP(string, *IPAddr) (*IPConn, error)
 pkg net, func ListenMulticastUDP(string, *Interface, *UDPAddr) (*UDPConn, error)
-pkg net, func ListenPacket(string) (PacketConn, error)
+pkg net, func ListenPacket(string, string) (PacketConn, error)
 pkg net, func ListenTCP(string, *TCPAddr) (*TCPListener, error)
 pkg net, func ListenUDP(string, *UDPAddr) (*UDPConn, error)
 pkg net, func ListenUnix(string, *UnixAddr) (*UnixListener, error)
@@ -4295,18 +4389,18 @@ pkg net, func LookupCNAME(string) (string, error)
 pkg net, func LookupHost(string) ([]string, error)
 pkg net, func LookupIP(string) ([]IP, error)
 pkg net, func LookupMX(string) ([]*MX, error)
-pkg net, func LookupPort(string) (int, error)
-pkg net, func LookupSRV(string) (string, []*SRV, error)
+pkg net, func LookupPort(string, string) (int, error)
+pkg net, func LookupSRV(string, string, string) (string, []*SRV, error)
 pkg net, func LookupTXT(string) ([]string, error)
 pkg net, func ParseCIDR(string) (IP, *IPNet, error)
 pkg net, func ParseIP(string) IP
 pkg net, func ParseMAC(string) (HardwareAddr, error)
 pkg net, func Pipe() (Conn, Conn)
-pkg net, func ResolveIPAddr(string) (*IPAddr, error)
-pkg net, func ResolveTCPAddr(string) (*TCPAddr, error)
-pkg net, func ResolveUDPAddr(string) (*UDPAddr, error)
-pkg net, func ResolveUnixAddr(string) (*UnixAddr, error)
-pkg net, func SplitHostPort(string) (string, error)
+pkg net, func ResolveIPAddr(string, string) (*IPAddr, error)
+pkg net, func ResolveTCPAddr(string, string) (*TCPAddr, error)
+pkg net, func ResolveUDPAddr(string, string) (*UDPAddr, error)
+pkg net, func ResolveUnixAddr(string, string) (*UnixAddr, error)
+pkg net, func SplitHostPort(string) (string, string, error)
 pkg net, method (*AddrError) Error() string
 pkg net, method (*AddrError) Temporary() bool
 pkg net, method (*AddrError) Timeout() bool
@@ -4321,18 +4415,18 @@ pkg net, method (*IPAddr) String() string
 pkg net, method (*IPConn) Close() error
 pkg net, method (*IPConn) File() (*os.File, error)
 pkg net, method (*IPConn) LocalAddr() Addr
-pkg net, method (*IPConn) Read([]byte) (int, error)
-pkg net, method (*IPConn) ReadFrom([]byte) (int, Addr, error)
-pkg net, method (*IPConn) ReadFromIP([]byte) (int, *IPAddr, error)
+pkg net, method (*IPConn) Read([]uint8) (int, error)
+pkg net, method (*IPConn) ReadFrom([]uint8) (int, Addr, error)
+pkg net, method (*IPConn) ReadFromIP([]uint8) (int, *IPAddr, error)
 pkg net, method (*IPConn) RemoteAddr() Addr
 pkg net, method (*IPConn) SetDeadline(time.Time) error
 pkg net, method (*IPConn) SetReadBuffer(int) error
 pkg net, method (*IPConn) SetReadDeadline(time.Time) error
 pkg net, method (*IPConn) SetWriteBuffer(int) error
 pkg net, method (*IPConn) SetWriteDeadline(time.Time) error
-pkg net, method (*IPConn) Write([]byte) (int, error)
-pkg net, method (*IPConn) WriteTo([]byte, Addr) (int, error)
-pkg net, method (*IPConn) WriteToIP([]byte, *IPAddr) (int, error)
+pkg net, method (*IPConn) Write([]uint8) (int, error)
+pkg net, method (*IPConn) WriteTo([]uint8, Addr) (int, error)
+pkg net, method (*IPConn) WriteToIP([]uint8, *IPAddr) (int, error)
 pkg net, method (*IPNet) Contains(IP) bool
 pkg net, method (*IPNet) Network() string
 pkg net, method (*IPNet) String() string
@@ -4349,7 +4443,7 @@ pkg net, method (*TCPConn) CloseRead() error
 pkg net, method (*TCPConn) CloseWrite() error
 pkg net, method (*TCPConn) File() (*os.File, error)
 pkg net, method (*TCPConn) LocalAddr() Addr
-pkg net, method (*TCPConn) Read([]byte) (int, error)
+pkg net, method (*TCPConn) Read([]uint8) (int, error)
 pkg net, method (*TCPConn) ReadFrom(io.Reader) (int64, error)
 pkg net, method (*TCPConn) RemoteAddr() Addr
 pkg net, method (*TCPConn) SetDeadline(time.Time) error
@@ -4360,7 +4454,7 @@ pkg net, method (*TCPConn) SetReadBuffer(int) error
 pkg net, method (*TCPConn) SetReadDeadline(time.Time) error
 pkg net, method (*TCPConn) SetWriteBuffer(int) error
 pkg net, method (*TCPConn) SetWriteDeadline(time.Time) error
-pkg net, method (*TCPConn) Write([]byte) (int, error)
+pkg net, method (*TCPConn) Write([]uint8) (int, error)
 pkg net, method (*TCPListener) Accept() (Conn, error)
 pkg net, method (*TCPListener) AcceptTCP() (*TCPConn, error)
 pkg net, method (*TCPListener) Addr() Addr
@@ -4372,37 +4466,37 @@ pkg net, method (*UDPAddr) String() string
 pkg net, method (*UDPConn) Close() error
 pkg net, method (*UDPConn) File() (*os.File, error)
 pkg net, method (*UDPConn) LocalAddr() Addr
-pkg net, method (*UDPConn) Read([]byte) (int, error)
-pkg net, method (*UDPConn) ReadFrom([]byte) (int, Addr, error)
-pkg net, method (*UDPConn) ReadFromUDP([]byte) (int, *UDPAddr, error)
+pkg net, method (*UDPConn) Read([]uint8) (int, error)
+pkg net, method (*UDPConn) ReadFrom([]uint8) (int, Addr, error)
+pkg net, method (*UDPConn) ReadFromUDP([]uint8) (int, *UDPAddr, error)
 pkg net, method (*UDPConn) RemoteAddr() Addr
 pkg net, method (*UDPConn) SetDeadline(time.Time) error
 pkg net, method (*UDPConn) SetReadBuffer(int) error
 pkg net, method (*UDPConn) SetReadDeadline(time.Time) error
 pkg net, method (*UDPConn) SetWriteBuffer(int) error
 pkg net, method (*UDPConn) SetWriteDeadline(time.Time) error
-pkg net, method (*UDPConn) Write([]byte) (int, error)
-pkg net, method (*UDPConn) WriteTo([]byte, Addr) (int, error)
-pkg net, method (*UDPConn) WriteToUDP([]byte, *UDPAddr) (int, error)
+pkg net, method (*UDPConn) Write([]uint8) (int, error)
+pkg net, method (*UDPConn) WriteTo([]uint8, Addr) (int, error)
+pkg net, method (*UDPConn) WriteToUDP([]uint8, *UDPAddr) (int, error)
 pkg net, method (*UnixAddr) Network() string
 pkg net, method (*UnixAddr) String() string
 pkg net, method (*UnixConn) Close() error
 pkg net, method (*UnixConn) File() (*os.File, error)
 pkg net, method (*UnixConn) LocalAddr() Addr
-pkg net, method (*UnixConn) Read([]byte) (int, error)
-pkg net, method (*UnixConn) ReadFrom([]byte) (int, Addr, error)
-pkg net, method (*UnixConn) ReadFromUnix([]byte) (int, *UnixAddr, error)
-pkg net, method (*UnixConn) ReadMsgUnix([]byte) (int, *UnixAddr, error)
+pkg net, method (*UnixConn) Read([]uint8) (int, error)
+pkg net, method (*UnixConn) ReadFrom([]uint8) (int, Addr, error)
+pkg net, method (*UnixConn) ReadFromUnix([]uint8) (int, *UnixAddr, error)
+pkg net, method (*UnixConn) ReadMsgUnix([]uint8, []uint8) (int, int, int, *UnixAddr, error)
 pkg net, method (*UnixConn) RemoteAddr() Addr
 pkg net, method (*UnixConn) SetDeadline(time.Time) error
 pkg net, method (*UnixConn) SetReadBuffer(int) error
 pkg net, method (*UnixConn) SetReadDeadline(time.Time) error
 pkg net, method (*UnixConn) SetWriteBuffer(int) error
 pkg net, method (*UnixConn) SetWriteDeadline(time.Time) error
-pkg net, method (*UnixConn) Write([]byte) (int, error)
-pkg net, method (*UnixConn) WriteMsgUnix([]byte, *UnixAddr) (int, error)
-pkg net, method (*UnixConn) WriteTo([]byte, Addr) (int, error)
-pkg net, method (*UnixConn) WriteToUnix([]byte, *UnixAddr) (int, error)
+pkg net, method (*UnixConn) Write([]uint8) (int, error)
+pkg net, method (*UnixConn) WriteMsgUnix([]uint8, []uint8, *UnixAddr) (int, int, error)
+pkg net, method (*UnixConn) WriteTo([]uint8, Addr) (int, error)
+pkg net, method (*UnixConn) WriteToUnix([]uint8, *UnixAddr) (int, error)
 pkg net, method (*UnixListener) Accept() (Conn, error)
 pkg net, method (*UnixListener) AcceptUnix() (*UnixConn, error)
 pkg net, method (*UnixListener) Addr() Addr
@@ -4424,7 +4518,7 @@ pkg net, method (IP) Mask(IPMask) IP
 pkg net, method (IP) String() string
 pkg net, method (IP) To16() IP
 pkg net, method (IP) To4() IP
-pkg net, method (IPMask) Size() int
+pkg net, method (IPMask) Size() (int, int)
 pkg net, method (IPMask) String() string
 pkg net, method (InvalidAddrError) Error() string
 pkg net, method (InvalidAddrError) Temporary() bool
@@ -4441,12 +4535,12 @@ pkg net, type AddrError struct, Err string
 pkg net, type Conn interface { Close, LocalAddr, Read, RemoteAddr, SetDeadline, SetReadDeadline, SetWriteDeadline, Write }
 pkg net, type Conn interface, Close() error
 pkg net, type Conn interface, LocalAddr() Addr
-pkg net, type Conn interface, Read([]byte) (int, error)
+pkg net, type Conn interface, Read([]uint8) (int, error)
 pkg net, type Conn interface, RemoteAddr() Addr
 pkg net, type Conn interface, SetDeadline(time.Time) error
 pkg net, type Conn interface, SetReadDeadline(time.Time) error
 pkg net, type Conn interface, SetWriteDeadline(time.Time) error
-pkg net, type Conn interface, Write([]byte) (int, error)
+pkg net, type Conn interface, Write([]uint8) (int, error)
 pkg net, type DNSConfigError struct
 pkg net, type DNSConfigError struct, Err error
 pkg net, type DNSError struct
@@ -4459,12 +4553,12 @@ pkg net, type Error interface, Error() string
 pkg net, type Error interface, Temporary() bool
 pkg net, type Error interface, Timeout() bool
 pkg net, type Flags uint
-pkg net, type HardwareAddr []byte
-pkg net, type IP []byte
+pkg net, type HardwareAddr []uint8
+pkg net, type IP []uint8
 pkg net, type IPAddr struct
 pkg net, type IPAddr struct, IP IP
 pkg net, type IPConn struct
-pkg net, type IPMask []byte
+pkg net, type IPMask []uint8
 pkg net, type IPNet struct
 pkg net, type IPNet struct, IP IP
 pkg net, type IPNet struct, Mask IPMask
@@ -4490,11 +4584,11 @@ pkg net, type OpError struct, Op string
 pkg net, type PacketConn interface { Close, LocalAddr, ReadFrom, SetDeadline, SetReadDeadline, SetWriteDeadline, WriteTo }
 pkg net, type PacketConn interface, Close() error
 pkg net, type PacketConn interface, LocalAddr() Addr
-pkg net, type PacketConn interface, ReadFrom([]byte) (int, Addr, error)
+pkg net, type PacketConn interface, ReadFrom([]uint8) (int, Addr, error)
 pkg net, type PacketConn interface, SetDeadline(time.Time) error
 pkg net, type PacketConn interface, SetReadDeadline(time.Time) error
 pkg net, type PacketConn interface, SetWriteDeadline(time.Time) error
-pkg net, type PacketConn interface, WriteTo([]byte, Addr) (int, error)
+pkg net, type PacketConn interface, WriteTo([]uint8, Addr) (int, error)
 pkg net, type ParseError struct
 pkg net, type ParseError struct, Text string
 pkg net, type ParseError struct, Type string
@@ -4574,7 +4668,7 @@ pkg net/http, const StatusUnsupportedMediaType ideal-int
 pkg net/http, const StatusUseProxy ideal-int
 pkg net/http, const TimeFormat ideal-string
 pkg net/http, func CanonicalHeaderKey(string) string
-pkg net/http, func DetectContentType([]byte) string
+pkg net/http, func DetectContentType([]uint8) string
 pkg net/http, func Error(ResponseWriter, string, int)
 pkg net/http, func FileServer(FileSystem) Handler
 pkg net/http, func Get(string) (*Response, error)
@@ -4585,11 +4679,11 @@ pkg net/http, func ListenAndServe(string, Handler) error
 pkg net/http, func ListenAndServeTLS(string, string, string, Handler) error
 pkg net/http, func MaxBytesReader(ResponseWriter, io.ReadCloser, int64) io.ReadCloser
 pkg net/http, func NewFileTransport(FileSystem) RoundTripper
-pkg net/http, func NewRequest(string, io.Reader) (*Request, error)
+pkg net/http, func NewRequest(string, string, io.Reader) (*Request, error)
 pkg net/http, func NewServeMux() *ServeMux
 pkg net/http, func NotFound(ResponseWriter, *Request)
 pkg net/http, func NotFoundHandler() Handler
-pkg net/http, func ParseHTTPVersion(string) (int, bool)
+pkg net/http, func ParseHTTPVersion(string) (int, int, bool)
 pkg net/http, func Post(string, string, io.Reader) (*Response, error)
 pkg net/http, func PostForm(string, url.Values) (*Response, error)
 pkg net/http, func ProxyFromEnvironment(*Request) (*url.URL, error)
@@ -4620,31 +4714,31 @@ pkg net/http, method (*Request) FormValue(string) string
 pkg net/http, method (*Request) MultipartReader() (*multipart.Reader, error)
 pkg net/http, method (*Request) ParseForm() error
 pkg net/http, method (*Request) ParseMultipartForm(int64) error
-pkg net/http, method (*Request) ProtoAtLeast(int) bool
+pkg net/http, method (*Request) ProtoAtLeast(int, int) bool
 pkg net/http, method (*Request) Referer() string
-pkg net/http, method (*Request) SetBasicAuth(string)
+pkg net/http, method (*Request) SetBasicAuth(string, string)
 pkg net/http, method (*Request) UserAgent() string
 pkg net/http, method (*Request) Write(io.Writer) error
 pkg net/http, method (*Request) WriteProxy(io.Writer) error
 pkg net/http, method (*Response) Cookies() []*Cookie
 pkg net/http, method (*Response) Location() (*url.URL, error)
-pkg net/http, method (*Response) ProtoAtLeast(int) bool
+pkg net/http, method (*Response) ProtoAtLeast(int, int) bool
 pkg net/http, method (*Response) Write(io.Writer) error
 pkg net/http, method (*ServeMux) Handle(string, Handler)
 pkg net/http, method (*ServeMux) HandleFunc(string, func(ResponseWriter, *Request))
 pkg net/http, method (*ServeMux) ServeHTTP(ResponseWriter, *Request)
 pkg net/http, method (*Server) ListenAndServe() error
-pkg net/http, method (*Server) ListenAndServeTLS(string) error
+pkg net/http, method (*Server) ListenAndServeTLS(string, string) error
 pkg net/http, method (*Server) Serve(net.Listener) error
 pkg net/http, method (*Transport) CloseIdleConnections()
 pkg net/http, method (*Transport) RegisterProtocol(string, RoundTripper)
 pkg net/http, method (*Transport) RoundTrip(*Request) (*Response, error)
 pkg net/http, method (Dir) Open(string) (File, error)
 pkg net/http, method (HandlerFunc) ServeHTTP(ResponseWriter, *Request)
-pkg net/http, method (Header) Add(string)
+pkg net/http, method (Header) Add(string, string)
 pkg net/http, method (Header) Del(string)
 pkg net/http, method (Header) Get(string) string
-pkg net/http, method (Header) Set(string)
+pkg net/http, method (Header) Set(string, string)
 pkg net/http, method (Header) Write(io.Writer) error
 pkg net/http, method (Header) WriteSubset(io.Writer, map[string]bool) error
 pkg net/http, type Client struct
@@ -4669,7 +4763,7 @@ pkg net/http, type CookieJar interface, SetCookies(*url.URL, []*Cookie)
 pkg net/http, type Dir string
 pkg net/http, type File interface { Close, Read, Readdir, Seek, Stat }
 pkg net/http, type File interface, Close() error
-pkg net/http, type File interface, Read([]byte) (int, error)
+pkg net/http, type File interface, Read([]uint8) (int, error)
 pkg net/http, type File interface, Readdir(int) ([]os.FileInfo, error)
 pkg net/http, type File interface, Seek(int64, int) (int64, error)
 pkg net/http, type File interface, Stat() (os.FileInfo, error)
@@ -4718,7 +4812,7 @@ pkg net/http, type Response struct, Trailer Header
 pkg net/http, type Response struct, TransferEncoding []string
 pkg net/http, type ResponseWriter interface { Header, Write, WriteHeader }
 pkg net/http, type ResponseWriter interface, Header() Header
-pkg net/http, type ResponseWriter interface, Write([]byte) (int, error)
+pkg net/http, type ResponseWriter interface, Write([]uint8) (int, error)
 pkg net/http, type ResponseWriter interface, WriteHeader(int)
 pkg net/http, type RoundTripper interface { RoundTrip }
 pkg net/http, type RoundTripper interface, RoundTrip(*Request) (*Response, error)
@@ -4731,7 +4825,7 @@ pkg net/http, type Server struct, ReadTimeout time.Duration
 pkg net/http, type Server struct, TLSConfig *tls.Config
 pkg net/http, type Server struct, WriteTimeout time.Duration
 pkg net/http, type Transport struct
-pkg net/http, type Transport struct, Dial func(string) (net.Conn, error)
+pkg net/http, type Transport struct, Dial func(string, string) (net.Conn, error)
 pkg net/http, type Transport struct, DisableCompression bool
 pkg net/http, type Transport struct, DisableKeepAlives bool
 pkg net/http, type Transport struct, MaxIdleConnsPerHost int
@@ -4778,7 +4872,7 @@ pkg net/http/httptest, func NewTLSServer(http.Handler) *Server
 pkg net/http/httptest, func NewUnstartedServer(http.Handler) *Server
 pkg net/http/httptest, method (*ResponseRecorder) Flush()
 pkg net/http/httptest, method (*ResponseRecorder) Header() http.Header
-pkg net/http/httptest, method (*ResponseRecorder) Write([]byte) (int, error)
+pkg net/http/httptest, method (*ResponseRecorder) Write([]uint8) (int, error)
 pkg net/http/httptest, method (*ResponseRecorder) WriteHeader(int)
 pkg net/http/httptest, method (*Server) Close()
 pkg net/http/httptest, method (*Server) CloseClientConnections()
@@ -4794,9 +4888,9 @@ pkg net/http/httptest, type Server struct, Config *http.Server
 pkg net/http/httptest, type Server struct, Listener net.Listener
 pkg net/http/httptest, type Server struct, TLS *tls.Config
 pkg net/http/httptest, type Server struct, URL string
-pkg net/http/httputil, func DumpRequest(*http.Request, bool) ([]byte, error)
-pkg net/http/httputil, func DumpRequestOut(*http.Request, bool) ([]byte, error)
-pkg net/http/httputil, func DumpResponse(*http.Response, bool) ([]byte, error)
+pkg net/http/httputil, func DumpRequest(*http.Request, bool) ([]uint8, error)
+pkg net/http/httputil, func DumpRequestOut(*http.Request, bool) ([]uint8, error)
+pkg net/http/httputil, func DumpResponse(*http.Response, bool) ([]uint8, error)
 pkg net/http/httputil, func NewChunkedReader(io.Reader) io.Reader
 pkg net/http/httputil, func NewChunkedWriter(io.Writer) io.WriteCloser
 pkg net/http/httputil, func NewClientConn(net.Conn, *bufio.Reader) *ClientConn
@@ -4846,9 +4940,9 @@ pkg net/mail, var ErrHeaderNotPresent error
 pkg net/rpc, const DefaultDebugPath ideal-string
 pkg net/rpc, const DefaultRPCPath ideal-string
 pkg net/rpc, func Accept(net.Listener)
-pkg net/rpc, func Dial(string) (*Client, error)
-pkg net/rpc, func DialHTTP(string) (*Client, error)
-pkg net/rpc, func DialHTTPPath(string) (*Client, error)
+pkg net/rpc, func Dial(string, string) (*Client, error)
+pkg net/rpc, func DialHTTP(string, string) (*Client, error)
+pkg net/rpc, func DialHTTPPath(string, string, string) (*Client, error)
 pkg net/rpc, func HandleHTTP()
 pkg net/rpc, func NewClient(io.ReadWriteCloser) *Client
 pkg net/rpc, func NewClientWithCodec(ClientCodec) *Client
@@ -4862,7 +4956,7 @@ pkg net/rpc, method (*Client) Call(string, interface{}, interface{}) error
 pkg net/rpc, method (*Client) Close() error
 pkg net/rpc, method (*Client) Go(string, interface{}, interface{}, chan *Call) *Call
 pkg net/rpc, method (*Server) Accept(net.Listener)
-pkg net/rpc, method (*Server) HandleHTTP(string)
+pkg net/rpc, method (*Server) HandleHTTP(string, string)
 pkg net/rpc, method (*Server) Register(interface{}) error
 pkg net/rpc, method (*Server) RegisterName(string, interface{}) error
 pkg net/rpc, method (*Server) ServeCodec(ServerCodec)
@@ -4898,16 +4992,16 @@ pkg net/rpc, type ServerCodec interface, WriteResponse(*Response, interface{}) e
 pkg net/rpc, type ServerError string
 pkg net/rpc, var DefaultServer *Server
 pkg net/rpc, var ErrShutdown error
-pkg net/rpc/jsonrpc, func Dial(string) (*rpc.Client, error)
+pkg net/rpc/jsonrpc, func Dial(string, string) (*rpc.Client, error)
 pkg net/rpc/jsonrpc, func NewClient(io.ReadWriteCloser) *rpc.Client
 pkg net/rpc/jsonrpc, func NewClientCodec(io.ReadWriteCloser) rpc.ClientCodec
 pkg net/rpc/jsonrpc, func NewServerCodec(io.ReadWriteCloser) rpc.ServerCodec
 pkg net/rpc/jsonrpc, func ServeConn(io.ReadWriteCloser)
-pkg net/smtp, func CRAMMD5Auth(string) Auth
+pkg net/smtp, func CRAMMD5Auth(string, string) Auth
 pkg net/smtp, func Dial(string) (*Client, error)
 pkg net/smtp, func NewClient(net.Conn, string) (*Client, error)
-pkg net/smtp, func PlainAuth(string) Auth
-pkg net/smtp, func SendMail(string, Auth, string, []string, []byte) error
+pkg net/smtp, func PlainAuth(string, string, string, string) Auth
+pkg net/smtp, func SendMail(string, Auth, string, []string, []uint8) error
 pkg net/smtp, method (*Client) Auth(Auth) error
 pkg net/smtp, method (*Client) Data() (io.WriteCloser, error)
 pkg net/smtp, method (*Client) Extension(string) (bool, string)
@@ -4918,8 +5012,8 @@ pkg net/smtp, method (*Client) Reset() error
 pkg net/smtp, method (*Client) StartTLS(*tls.Config) error
 pkg net/smtp, method (*Client) Verify(string) error
 pkg net/smtp, type Auth interface { Next, Start }
-pkg net/smtp, type Auth interface, Next([]byte, bool) ([]byte, error)
-pkg net/smtp, type Auth interface, Start(*ServerInfo) (string, []byte, error)
+pkg net/smtp, type Auth interface, Next([]uint8, bool) ([]uint8, error)
+pkg net/smtp, type Auth interface, Start(*ServerInfo) (string, []uint8, error)
 pkg net/smtp, type Client struct
 pkg net/smtp, type Client struct, Text *textproto.Conn
 pkg net/smtp, type ServerInfo struct
@@ -4927,7 +5021,7 @@ pkg net/smtp, type ServerInfo struct, Auth []string
 pkg net/smtp, type ServerInfo struct, Name string
 pkg net/smtp, type ServerInfo struct, TLS bool
 pkg net/textproto, func CanonicalMIMEHeaderKey(string) string
-pkg net/textproto, func Dial(string) (*Conn, error)
+pkg net/textproto, func Dial(string, string) (*Conn, error)
 pkg net/textproto, func NewConn(io.ReadWriteCloser) *Conn
 pkg net/textproto, func NewReader(*bufio.Reader) *Reader
 pkg net/textproto, func NewWriter(*bufio.Writer) *Writer
@@ -4941,11 +5035,11 @@ pkg net/textproto, method (*Conn) Next() uint
 pkg net/textproto, method (*Conn) PrintfLine(string, ...interface{}) error
 pkg net/textproto, method (*Conn) ReadCodeLine(int) (int, string, error)
 pkg net/textproto, method (*Conn) ReadContinuedLine() (string, error)
-pkg net/textproto, method (*Conn) ReadContinuedLineBytes() ([]byte, error)
-pkg net/textproto, method (*Conn) ReadDotBytes() ([]byte, error)
+pkg net/textproto, method (*Conn) ReadContinuedLineBytes() ([]uint8, error)
+pkg net/textproto, method (*Conn) ReadDotBytes() ([]uint8, error)
 pkg net/textproto, method (*Conn) ReadDotLines() ([]string, error)
 pkg net/textproto, method (*Conn) ReadLine() (string, error)
-pkg net/textproto, method (*Conn) ReadLineBytes() ([]byte, error)
+pkg net/textproto, method (*Conn) ReadLineBytes() ([]uint8, error)
 pkg net/textproto, method (*Conn) ReadMIMEHeader() (MIMEHeader, error)
 pkg net/textproto, method (*Conn) ReadResponse(int) (int, string, error)
 pkg net/textproto, method (*Conn) StartRequest(uint)
@@ -4959,19 +5053,19 @@ pkg net/textproto, method (*Pipeline) StartResponse(uint)
 pkg net/textproto, method (*Reader) DotReader() io.Reader
 pkg net/textproto, method (*Reader) ReadCodeLine(int) (int, string, error)
 pkg net/textproto, method (*Reader) ReadContinuedLine() (string, error)
-pkg net/textproto, method (*Reader) ReadContinuedLineBytes() ([]byte, error)
-pkg net/textproto, method (*Reader) ReadDotBytes() ([]byte, error)
+pkg net/textproto, method (*Reader) ReadContinuedLineBytes() ([]uint8, error)
+pkg net/textproto, method (*Reader) ReadDotBytes() ([]uint8, error)
 pkg net/textproto, method (*Reader) ReadDotLines() ([]string, error)
 pkg net/textproto, method (*Reader) ReadLine() (string, error)
-pkg net/textproto, method (*Reader) ReadLineBytes() ([]byte, error)
+pkg net/textproto, method (*Reader) ReadLineBytes() ([]uint8, error)
 pkg net/textproto, method (*Reader) ReadMIMEHeader() (MIMEHeader, error)
 pkg net/textproto, method (*Reader) ReadResponse(int) (int, string, error)
 pkg net/textproto, method (*Writer) DotWriter() io.WriteCloser
 pkg net/textproto, method (*Writer) PrintfLine(string, ...interface{}) error
-pkg net/textproto, method (MIMEHeader) Add(string)
+pkg net/textproto, method (MIMEHeader) Add(string, string)
 pkg net/textproto, method (MIMEHeader) Del(string)
 pkg net/textproto, method (MIMEHeader) Get(string) string
-pkg net/textproto, method (MIMEHeader) Set(string)
+pkg net/textproto, method (MIMEHeader) Set(string, string)
 pkg net/textproto, method (ProtocolError) Error() string
 pkg net/textproto, type Conn struct
 pkg net/textproto, type Conn struct, embedded Pipeline
@@ -4993,7 +5087,7 @@ pkg net/url, func ParseRequestURI(string) (*URL, error)
 pkg net/url, func QueryEscape(string) string
 pkg net/url, func QueryUnescape(string) (string, error)
 pkg net/url, func User(string) *Userinfo
-pkg net/url, func UserPassword(string) *Userinfo
+pkg net/url, func UserPassword(string, string) *Userinfo
 pkg net/url, method (*Error) Error() string
 pkg net/url, method (*URL) IsAbs() bool
 pkg net/url, method (*URL) Parse(string) (*URL, error)
@@ -5005,11 +5099,11 @@ pkg net/url, method (*Userinfo) Password() (string, bool)
 pkg net/url, method (*Userinfo) String() string
 pkg net/url, method (*Userinfo) Username() string
 pkg net/url, method (EscapeError) Error() string
-pkg net/url, method (Values) Add(string)
+pkg net/url, method (Values) Add(string, string)
 pkg net/url, method (Values) Del(string)
 pkg net/url, method (Values) Encode() string
 pkg net/url, method (Values) Get(string) string
-pkg net/url, method (Values) Set(string)
+pkg net/url, method (Values) Set(string, string)
 pkg net/url, type Error struct
 pkg net/url, type Error struct, Err error
 pkg net/url, type Error struct, Op string
@@ -5055,7 +5149,7 @@ pkg os, const SEEK_END int
 pkg os, const SEEK_SET int
 pkg os, func Chdir(string) error
 pkg os, func Chmod(string, FileMode) error
-pkg os, func Chown(string, int) error
+pkg os, func Chown(string, int, int) error
 pkg os, func Chtimes(string, time.Time, time.Time) error
 pkg os, func Clearenv()
 pkg os, func Create(string) (*File, error)
@@ -5079,8 +5173,8 @@ pkg os, func IsExist(error) bool
 pkg os, func IsNotExist(error) bool
 pkg os, func IsPathSeparator(uint8) bool
 pkg os, func IsPermission(error) bool
-pkg os, func Lchown(string, int) error
-pkg os, func Link(string) error
+pkg os, func Lchown(string, int, int) error
+pkg os, func Link(string, string) error
 pkg os, func Lstat(string) (FileInfo, error)
 pkg os, func Mkdir(string, FileMode) error
 pkg os, func MkdirAll(string, FileMode) error
@@ -5092,30 +5186,30 @@ pkg os, func Pipe() (*File, *File, error)
 pkg os, func Readlink(string) (string, error)
 pkg os, func Remove(string) error
 pkg os, func RemoveAll(string) error
-pkg os, func Rename(string) error
-pkg os, func SameFile(FileInfo) bool
-pkg os, func Setenv(string) error
+pkg os, func Rename(string, string) error
+pkg os, func SameFile(FileInfo, FileInfo) bool
+pkg os, func Setenv(string, string) error
 pkg os, func StartProcess(string, []string, *ProcAttr) (*Process, error)
 pkg os, func Stat(string) (FileInfo, error)
-pkg os, func Symlink(string) error
+pkg os, func Symlink(string, string) error
 pkg os, func TempDir() string
 pkg os, func Truncate(string, int64) error
 pkg os, method (*File) Chdir() error
 pkg os, method (*File) Chmod(FileMode) error
-pkg os, method (*File) Chown(int) error
+pkg os, method (*File) Chown(int, int) error
 pkg os, method (*File) Close() error
 pkg os, method (*File) Fd() uintptr
 pkg os, method (*File) Name() string
-pkg os, method (*File) Read([]byte) (int, error)
-pkg os, method (*File) ReadAt([]byte, int64) (int, error)
+pkg os, method (*File) Read([]uint8) (int, error)
+pkg os, method (*File) ReadAt([]uint8, int64) (int, error)
 pkg os, method (*File) Readdir(int) ([]FileInfo, error)
 pkg os, method (*File) Readdirnames(int) ([]string, error)
 pkg os, method (*File) Seek(int64, int) (int64, error)
 pkg os, method (*File) Stat() (FileInfo, error)
 pkg os, method (*File) Sync() error
 pkg os, method (*File) Truncate(int64) error
-pkg os, method (*File) Write([]byte) (int, error)
-pkg os, method (*File) WriteAt([]byte, int64) (int, error)
+pkg os, method (*File) Write([]uint8) (int, error)
+pkg os, method (*File) WriteAt([]uint8, int64) (int, error)
 pkg os, method (*File) WriteString(string) (int, error)
 pkg os, method (*LinkError) Error() string
 pkg os, method (*PathError) Error() string
@@ -5179,8 +5273,8 @@ pkg os, var Stdin *File
 pkg os, var Stdout *File
 pkg os/exec, func Command(string, ...string) *Cmd
 pkg os/exec, func LookPath(string) (string, error)
-pkg os/exec, method (*Cmd) CombinedOutput() ([]byte, error)
-pkg os/exec, method (*Cmd) Output() ([]byte, error)
+pkg os/exec, method (*Cmd) CombinedOutput() ([]uint8, error)
+pkg os/exec, method (*Cmd) Output() ([]uint8, error)
 pkg os/exec, method (*Cmd) Run() error
 pkg os/exec, method (*Cmd) Start() error
 pkg os/exec, method (*Cmd) StderrPipe() (io.ReadCloser, error)
@@ -5189,6 +5283,14 @@ pkg os/exec, method (*Cmd) StdoutPipe() (io.ReadCloser, error)
 pkg os/exec, method (*Cmd) Wait() error
 pkg os/exec, method (*Error) Error() string
 pkg os/exec, method (*ExitError) Error() string
+pkg os/exec, method (ExitError) Exited() bool
+pkg os/exec, method (ExitError) Pid() int
+pkg os/exec, method (ExitError) String() string
+pkg os/exec, method (ExitError) Success() bool
+pkg os/exec, method (ExitError) Sys() interface{}
+pkg os/exec, method (ExitError) SysUsage() interface{}
+pkg os/exec, method (ExitError) SystemTime() time.Duration
+pkg os/exec, method (ExitError) UserTime() time.Duration
 pkg os/exec, type Cmd struct
 pkg os/exec, type Cmd struct, Args []string
 pkg os/exec, type Cmd struct, Dir string
@@ -5227,8 +5329,8 @@ pkg path, func Dir(string) string
 pkg path, func Ext(string) string
 pkg path, func IsAbs(string) bool
 pkg path, func Join(...string) string
-pkg path, func Match(string) (bool, error)
-pkg path, func Split(string) string
+pkg path, func Match(string, string) (bool, error)
+pkg path, func Split(string) (string, string)
 pkg path, var ErrBadPattern error
 pkg path/filepath, const ListSeparator ideal-char
 pkg path/filepath, const Separator ideal-char
@@ -5240,17 +5342,17 @@ pkg path/filepath, func EvalSymlinks(string) (string, error)
 pkg path/filepath, func Ext(string) string
 pkg path/filepath, func FromSlash(string) string
 pkg path/filepath, func Glob(string) ([]string, error)
-pkg path/filepath, func HasPrefix(string) bool
+pkg path/filepath, func HasPrefix(string, string) bool
 pkg path/filepath, func IsAbs(string) bool
 pkg path/filepath, func Join(...string) string
-pkg path/filepath, func Match(string) (bool, error)
-pkg path/filepath, func Rel(string) (string, error)
-pkg path/filepath, func Split(string) string
+pkg path/filepath, func Match(string, string) (bool, error)
+pkg path/filepath, func Rel(string, string) (string, error)
+pkg path/filepath, func Split(string) (string, string)
 pkg path/filepath, func SplitList(string) []string
 pkg path/filepath, func ToSlash(string) string
 pkg path/filepath, func VolumeName(string) string
 pkg path/filepath, func Walk(string, WalkFunc) error
-pkg path/filepath, type WalkFunc func(path string, info os.FileInfo, err error) error
+pkg path/filepath, type WalkFunc func(string, os.FileInfo, error) error
 pkg path/filepath, var ErrBadPattern error
 pkg path/filepath, var SkipDir error
 pkg reflect, const Array Kind
@@ -5284,13 +5386,13 @@ pkg reflect, const Uint8 Kind
 pkg reflect, const Uintptr Kind
 pkg reflect, const UnsafePointer Kind
 pkg reflect, func Append(Value, ...Value) Value
-pkg reflect, func AppendSlice(Value) Value
-pkg reflect, func Copy(Value) int
-pkg reflect, func DeepEqual(interface{}) bool
+pkg reflect, func AppendSlice(Value, Value) Value
+pkg reflect, func Copy(Value, Value) int
+pkg reflect, func DeepEqual(interface{}, interface{}) bool
 pkg reflect, func Indirect(Value) Value
 pkg reflect, func MakeChan(Type, int) Value
 pkg reflect, func MakeMap(Type) Value
-pkg reflect, func MakeSlice(Type, int) Value
+pkg reflect, func MakeSlice(Type, int, int) Value
 pkg reflect, func New(Type) Value
 pkg reflect, func NewAt(Type, unsafe.Pointer) Value
 pkg reflect, func PtrTo(Type) Type
@@ -5303,7 +5405,7 @@ pkg reflect, method (Kind) String() string
 pkg reflect, method (StructTag) Get(string) string
 pkg reflect, method (Value) Addr() Value
 pkg reflect, method (Value) Bool() bool
-pkg reflect, method (Value) Bytes() []byte
+pkg reflect, method (Value) Bytes() []uint8
 pkg reflect, method (Value) Call([]Value) []Value
 pkg reflect, method (Value) CallSlice([]Value) []Value
 pkg reflect, method (Value) CanAddr() bool
@@ -5341,16 +5443,16 @@ pkg reflect, method (Value) Recv() (Value, bool)
 pkg reflect, method (Value) Send(Value)
 pkg reflect, method (Value) Set(Value)
 pkg reflect, method (Value) SetBool(bool)
-pkg reflect, method (Value) SetBytes([]byte)
+pkg reflect, method (Value) SetBytes([]uint8)
 pkg reflect, method (Value) SetComplex(complex128)
 pkg reflect, method (Value) SetFloat(float64)
 pkg reflect, method (Value) SetInt(int64)
 pkg reflect, method (Value) SetLen(int)
-pkg reflect, method (Value) SetMapIndex(Value)
+pkg reflect, method (Value) SetMapIndex(Value, Value)
 pkg reflect, method (Value) SetPointer(unsafe.Pointer)
 pkg reflect, method (Value) SetString(string)
 pkg reflect, method (Value) SetUint(uint64)
-pkg reflect, method (Value) Slice(int) Value
+pkg reflect, method (Value) Slice(int, int) Value
 pkg reflect, method (Value) String() string
 pkg reflect, method (Value) TryRecv() (Value, bool)
 pkg reflect, method (Value) TrySend(Value) bool
@@ -5381,7 +5483,6 @@ pkg reflect, type StructField struct, PkgPath string
 pkg reflect, type StructField struct, Tag StructTag
 pkg reflect, type StructField struct, Type Type
 pkg reflect, type StructTag string
-pkg reflect, type Type interface { Align, AssignableTo, Bits, ChanDir, Elem, Field, FieldAlign, FieldByIndex, FieldByName, FieldByNameFunc, Implements, In, IsVariadic, Key, Kind, Len, Method, MethodByName, Name, NumField, NumIn, NumMethod, NumOut, Out, PkgPath, Size, String }
 pkg reflect, type Type interface, Align() int
 pkg reflect, type Type interface, AssignableTo(Type) bool
 pkg reflect, type Type interface, Bits() int
@@ -5409,48 +5510,49 @@ pkg reflect, type Type interface, Out(int) Type
 pkg reflect, type Type interface, PkgPath() string
 pkg reflect, type Type interface, Size() uintptr
 pkg reflect, type Type interface, String() string
+pkg reflect, type Type interface, unexported methods
 pkg reflect, type Value struct
 pkg reflect, type ValueError struct
 pkg reflect, type ValueError struct, Kind Kind
 pkg reflect, type ValueError struct, Method string
 pkg regexp, func Compile(string) (*Regexp, error)
 pkg regexp, func CompilePOSIX(string) (*Regexp, error)
-pkg regexp, func Match(string, []byte) (bool, error)
+pkg regexp, func Match(string, []uint8) (bool, error)
 pkg regexp, func MatchReader(string, io.RuneReader) (bool, error)
 pkg regexp, func MatchString(string, string) (bool, error)
 pkg regexp, func MustCompile(string) *Regexp
 pkg regexp, func MustCompilePOSIX(string) *Regexp
 pkg regexp, func QuoteMeta(string) string
-pkg regexp, method (*Regexp) Expand([]byte, []byte, []byte, []int) []byte
-pkg regexp, method (*Regexp) ExpandString([]byte, string, string, []int) []byte
-pkg regexp, method (*Regexp) Find([]byte) []byte
-pkg regexp, method (*Regexp) FindAll([]byte, int) [][]byte
-pkg regexp, method (*Regexp) FindAllIndex([]byte, int) [][]int
+pkg regexp, method (*Regexp) Expand([]uint8, []uint8, []uint8, []int) []uint8
+pkg regexp, method (*Regexp) ExpandString([]uint8, string, string, []int) []uint8
+pkg regexp, method (*Regexp) Find([]uint8) []uint8
+pkg regexp, method (*Regexp) FindAll([]uint8, int) [][]uint8
+pkg regexp, method (*Regexp) FindAllIndex([]uint8, int) [][]int
 pkg regexp, method (*Regexp) FindAllString(string, int) []string
 pkg regexp, method (*Regexp) FindAllStringIndex(string, int) [][]int
 pkg regexp, method (*Regexp) FindAllStringSubmatch(string, int) [][]string
 pkg regexp, method (*Regexp) FindAllStringSubmatchIndex(string, int) [][]int
-pkg regexp, method (*Regexp) FindAllSubmatch([]byte, int) [][][]byte
-pkg regexp, method (*Regexp) FindAllSubmatchIndex([]byte, int) [][]int
-pkg regexp, method (*Regexp) FindIndex([]byte) []int
+pkg regexp, method (*Regexp) FindAllSubmatch([]uint8, int) [][][]uint8
+pkg regexp, method (*Regexp) FindAllSubmatchIndex([]uint8, int) [][]int
+pkg regexp, method (*Regexp) FindIndex([]uint8) []int
 pkg regexp, method (*Regexp) FindReaderIndex(io.RuneReader) []int
 pkg regexp, method (*Regexp) FindReaderSubmatchIndex(io.RuneReader) []int
 pkg regexp, method (*Regexp) FindString(string) string
 pkg regexp, method (*Regexp) FindStringIndex(string) []int
 pkg regexp, method (*Regexp) FindStringSubmatch(string) []string
 pkg regexp, method (*Regexp) FindStringSubmatchIndex(string) []int
-pkg regexp, method (*Regexp) FindSubmatch([]byte) [][]byte
-pkg regexp, method (*Regexp) FindSubmatchIndex([]byte) []int
+pkg regexp, method (*Regexp) FindSubmatch([]uint8) [][]uint8
+pkg regexp, method (*Regexp) FindSubmatchIndex([]uint8) []int
 pkg regexp, method (*Regexp) LiteralPrefix() (string, bool)
-pkg regexp, method (*Regexp) Match([]byte) bool
+pkg regexp, method (*Regexp) Match([]uint8) bool
 pkg regexp, method (*Regexp) MatchReader(io.RuneReader) bool
 pkg regexp, method (*Regexp) MatchString(string) bool
 pkg regexp, method (*Regexp) NumSubexp() int
-pkg regexp, method (*Regexp) ReplaceAll([]byte) []byte
-pkg regexp, method (*Regexp) ReplaceAllFunc([]byte, func([]byte) []byte) []byte
-pkg regexp, method (*Regexp) ReplaceAllLiteral([]byte) []byte
-pkg regexp, method (*Regexp) ReplaceAllLiteralString(string) string
-pkg regexp, method (*Regexp) ReplaceAllString(string) string
+pkg regexp, method (*Regexp) ReplaceAll([]uint8, []uint8) []uint8
+pkg regexp, method (*Regexp) ReplaceAllFunc([]uint8, func([]uint8) []uint8) []uint8
+pkg regexp, method (*Regexp) ReplaceAllLiteral([]uint8, []uint8) []uint8
+pkg regexp, method (*Regexp) ReplaceAllLiteralString(string, string) string
+pkg regexp, method (*Regexp) ReplaceAllString(string, string) string
 pkg regexp, method (*Regexp) ReplaceAllStringFunc(string, func(string) string) string
 pkg regexp, method (*Regexp) String() string
 pkg regexp, method (*Regexp) SubexpNames() []string
@@ -5518,12 +5620,12 @@ pkg regexp/syntax, const Simple Flags
 pkg regexp/syntax, const UnicodeGroups Flags
 pkg regexp/syntax, const WasDollar Flags
 pkg regexp/syntax, func Compile(*Regexp) (*Prog, error)
-pkg regexp/syntax, func EmptyOpContext(rune) EmptyOp
-pkg regexp/syntax, func IsWordChar(rune) bool
+pkg regexp/syntax, func EmptyOpContext(int32, int32) EmptyOp
+pkg regexp/syntax, func IsWordChar(int32) bool
 pkg regexp/syntax, func Parse(string, Flags) (*Regexp, error)
 pkg regexp/syntax, method (*Error) Error() string
-pkg regexp/syntax, method (*Inst) MatchEmptyWidth(rune, rune) bool
-pkg regexp/syntax, method (*Inst) MatchRune(rune) bool
+pkg regexp/syntax, method (*Inst) MatchEmptyWidth(int32, int32) bool
+pkg regexp/syntax, method (*Inst) MatchRune(int32) bool
 pkg regexp/syntax, method (*Inst) String() string
 pkg regexp/syntax, method (*Prog) Prefix() (string, bool)
 pkg regexp/syntax, method (*Prog) StartCond() EmptyOp
@@ -5544,7 +5646,7 @@ pkg regexp/syntax, type Inst struct
 pkg regexp/syntax, type Inst struct, Arg uint32
 pkg regexp/syntax, type Inst struct, Op InstOp
 pkg regexp/syntax, type Inst struct, Out uint32
-pkg regexp/syntax, type Inst struct, Rune []rune
+pkg regexp/syntax, type Inst struct, Rune []int32
 pkg regexp/syntax, type InstOp uint8
 pkg regexp/syntax, type Op uint8
 pkg regexp/syntax, type Prog struct
@@ -5558,15 +5660,15 @@ pkg regexp/syntax, type Regexp struct, Max int
 pkg regexp/syntax, type Regexp struct, Min int
 pkg regexp/syntax, type Regexp struct, Name string
 pkg regexp/syntax, type Regexp struct, Op Op
-pkg regexp/syntax, type Regexp struct, Rune []rune
-pkg regexp/syntax, type Regexp struct, Rune0 [2]rune
+pkg regexp/syntax, type Regexp struct, Rune []int32
+pkg regexp/syntax, type Regexp struct, Rune0 [2]int32
 pkg regexp/syntax, type Regexp struct, Sub []*Regexp
 pkg regexp/syntax, type Regexp struct, Sub0 [1]*Regexp
 pkg runtime, const Compiler ideal-string
 pkg runtime, const GOARCH string
 pkg runtime, const GOOS string
 pkg runtime, func Breakpoint()
-pkg runtime, func CPUProfile() []byte
+pkg runtime, func CPUProfile() []uint8
 pkg runtime, func Caller(int) (uintptr, string, int, bool)
 pkg runtime, func Callers(int, []uintptr) int
 pkg runtime, func FuncForPC(uintptr) *Func
@@ -5583,8 +5685,8 @@ pkg runtime, func NumCgoCall() int64
 pkg runtime, func NumGoroutine() int
 pkg runtime, func ReadMemStats(*MemStats)
 pkg runtime, func SetCPUProfileRate(int)
-pkg runtime, func SetFinalizer(interface{})
-pkg runtime, func Stack([]byte, bool) int
+pkg runtime, func SetFinalizer(interface{}, interface{})
+pkg runtime, func Stack([]uint8, bool) int
 pkg runtime, func ThreadCreateProfile([]StackRecord) (int, bool)
 pkg runtime, func UnlockOSThread()
 pkg runtime, func Version() string
@@ -5610,6 +5712,7 @@ pkg runtime, type MemProfileRecord struct, Stack0 [32]uintptr
 pkg runtime, type MemStats struct
 pkg runtime, type MemStats struct, Alloc uint64
 pkg runtime, type MemStats struct, BuckHashSys uint64
+pkg runtime, type MemStats struct, BySize [61]struct
 pkg runtime, type MemStats struct, DebugGC bool
 pkg runtime, type MemStats struct, EnableGC bool
 pkg runtime, type MemStats struct, Frees uint64
@@ -5639,7 +5742,7 @@ pkg runtime, type StackRecord struct, Stack0 [32]uintptr
 pkg runtime, type TypeAssertionError struct
 pkg runtime, var MemProfileRate int
 pkg runtime/debug, func PrintStack()
-pkg runtime/debug, func Stack() []byte
+pkg runtime/debug, func Stack() []uint8
 pkg runtime/pprof, func Lookup(string) *Profile
 pkg runtime/pprof, func NewProfile(string) *Profile
 pkg runtime/pprof, func Profiles() []*Profile
@@ -5665,54 +5768,54 @@ pkg sort, func Sort(Interface)
 pkg sort, func Strings([]string)
 pkg sort, func StringsAreSorted([]string) bool
 pkg sort, method (Float64Slice) Len() int
-pkg sort, method (Float64Slice) Less(int) bool
+pkg sort, method (Float64Slice) Less(int, int) bool
 pkg sort, method (Float64Slice) Search(float64) int
 pkg sort, method (Float64Slice) Sort()
-pkg sort, method (Float64Slice) Swap(int)
+pkg sort, method (Float64Slice) Swap(int, int)
 pkg sort, method (IntSlice) Len() int
-pkg sort, method (IntSlice) Less(int) bool
+pkg sort, method (IntSlice) Less(int, int) bool
 pkg sort, method (IntSlice) Search(int) int
 pkg sort, method (IntSlice) Sort()
-pkg sort, method (IntSlice) Swap(int)
+pkg sort, method (IntSlice) Swap(int, int)
 pkg sort, method (StringSlice) Len() int
-pkg sort, method (StringSlice) Less(int) bool
+pkg sort, method (StringSlice) Less(int, int) bool
 pkg sort, method (StringSlice) Search(string) int
 pkg sort, method (StringSlice) Sort()
-pkg sort, method (StringSlice) Swap(int)
+pkg sort, method (StringSlice) Swap(int, int)
 pkg sort, type Float64Slice []float64
 pkg sort, type IntSlice []int
 pkg sort, type Interface interface { Len, Less, Swap }
 pkg sort, type Interface interface, Len() int
-pkg sort, type Interface interface, Less(int) bool
-pkg sort, type Interface interface, Swap(int)
+pkg sort, type Interface interface, Less(int, int) bool
+pkg sort, type Interface interface, Swap(int, int)
 pkg sort, type StringSlice []string
 pkg strconv, const IntSize ideal-int
-pkg strconv, func AppendBool([]byte, bool) []byte
-pkg strconv, func AppendFloat([]byte, float64, byte, int, int) []byte
-pkg strconv, func AppendInt([]byte, int64, int) []byte
-pkg strconv, func AppendQuote([]byte, string) []byte
-pkg strconv, func AppendQuoteRune([]byte, rune) []byte
-pkg strconv, func AppendQuoteRuneToASCII([]byte, rune) []byte
-pkg strconv, func AppendQuoteToASCII([]byte, string) []byte
-pkg strconv, func AppendUint([]byte, uint64, int) []byte
+pkg strconv, func AppendBool([]uint8, bool) []uint8
+pkg strconv, func AppendFloat([]uint8, float64, uint8, int, int) []uint8
+pkg strconv, func AppendInt([]uint8, int64, int) []uint8
+pkg strconv, func AppendQuote([]uint8, string) []uint8
+pkg strconv, func AppendQuoteRune([]uint8, int32) []uint8
+pkg strconv, func AppendQuoteRuneToASCII([]uint8, int32) []uint8
+pkg strconv, func AppendQuoteToASCII([]uint8, string) []uint8
+pkg strconv, func AppendUint([]uint8, uint64, int) []uint8
 pkg strconv, func Atoi(string) (int, error)
 pkg strconv, func CanBackquote(string) bool
 pkg strconv, func FormatBool(bool) string
-pkg strconv, func FormatFloat(float64, byte, int) string
+pkg strconv, func FormatFloat(float64, uint8, int, int) string
 pkg strconv, func FormatInt(int64, int) string
 pkg strconv, func FormatUint(uint64, int) string
-pkg strconv, func IsPrint(rune) bool
+pkg strconv, func IsPrint(int32) bool
 pkg strconv, func Itoa(int) string
 pkg strconv, func ParseBool(string) (bool, error)
 pkg strconv, func ParseFloat(string, int) (float64, error)
 pkg strconv, func ParseInt(string, int, int) (int64, error)
 pkg strconv, func ParseUint(string, int, int) (uint64, error)
 pkg strconv, func Quote(string) string
-pkg strconv, func QuoteRune(rune) string
-pkg strconv, func QuoteRuneToASCII(rune) string
+pkg strconv, func QuoteRune(int32) string
+pkg strconv, func QuoteRuneToASCII(int32) string
 pkg strconv, func QuoteToASCII(string) string
 pkg strconv, func Unquote(string) (string, error)
-pkg strconv, func UnquoteChar(string, byte) (rune, bool, string, error)
+pkg strconv, func UnquoteChar(string, uint8) (int32, bool, string, error)
 pkg strconv, method (*NumError) Error() string
 pkg strconv, type NumError struct
 pkg strconv, type NumError struct, Err error
@@ -5720,32 +5823,32 @@ pkg strconv, type NumError struct, Func string
 pkg strconv, type NumError struct, Num string
 pkg strconv, var ErrRange error
 pkg strconv, var ErrSyntax error
-pkg strings, func Contains(string) bool
-pkg strings, func ContainsAny(string) bool
-pkg strings, func ContainsRune(string, rune) bool
-pkg strings, func Count(string) int
-pkg strings, func EqualFold(string) bool
+pkg strings, func Contains(string, string) bool
+pkg strings, func ContainsAny(string, string) bool
+pkg strings, func ContainsRune(string, int32) bool
+pkg strings, func Count(string, string) int
+pkg strings, func EqualFold(string, string) bool
 pkg strings, func Fields(string) []string
-pkg strings, func FieldsFunc(string, func(rune) bool) []string
-pkg strings, func HasPrefix(string) bool
-pkg strings, func HasSuffix(string) bool
-pkg strings, func Index(string) int
-pkg strings, func IndexAny(string) int
-pkg strings, func IndexFunc(string, func(rune) bool) int
-pkg strings, func IndexRune(string, rune) int
+pkg strings, func FieldsFunc(string, func(int32) bool) []string
+pkg strings, func HasPrefix(string, string) bool
+pkg strings, func HasSuffix(string, string) bool
+pkg strings, func Index(string, string) int
+pkg strings, func IndexAny(string, string) int
+pkg strings, func IndexFunc(string, func(int32) bool) int
+pkg strings, func IndexRune(string, int32) int
 pkg strings, func Join([]string, string) string
-pkg strings, func LastIndex(string) int
-pkg strings, func LastIndexAny(string) int
-pkg strings, func LastIndexFunc(string, func(rune) bool) int
-pkg strings, func Map(func(rune) rune, string) string
+pkg strings, func LastIndex(string, string) int
+pkg strings, func LastIndexAny(string, string) int
+pkg strings, func LastIndexFunc(string, func(int32) bool) int
+pkg strings, func Map(func(int32) int32, string) string
 pkg strings, func NewReader(string) *Reader
 pkg strings, func NewReplacer(...string) *Replacer
 pkg strings, func Repeat(string, int) string
-pkg strings, func Replace(string, int) string
-pkg strings, func Split(string) []string
-pkg strings, func SplitAfter(string) []string
-pkg strings, func SplitAfterN(string, int) []string
-pkg strings, func SplitN(string, int) []string
+pkg strings, func Replace(string, string, string, int) string
+pkg strings, func Split(string, string) []string
+pkg strings, func SplitAfter(string, string) []string
+pkg strings, func SplitAfterN(string, string, int) []string
+pkg strings, func SplitN(string, string, int) []string
 pkg strings, func Title(string) string
 pkg strings, func ToLower(string) string
 pkg strings, func ToLowerSpecial(unicode.SpecialCase, string) string
@@ -5754,17 +5857,17 @@ pkg strings, func ToTitleSpecial(unicode.SpecialCase, string) string
 pkg strings, func ToUpper(string) string
 pkg strings, func ToUpperSpecial(unicode.SpecialCase, string) string
 pkg strings, func Trim(string, string) string
-pkg strings, func TrimFunc(string, func(rune) bool) string
+pkg strings, func TrimFunc(string, func(int32) bool) string
 pkg strings, func TrimLeft(string, string) string
-pkg strings, func TrimLeftFunc(string, func(rune) bool) string
+pkg strings, func TrimLeftFunc(string, func(int32) bool) string
 pkg strings, func TrimRight(string, string) string
-pkg strings, func TrimRightFunc(string, func(rune) bool) string
+pkg strings, func TrimRightFunc(string, func(int32) bool) string
 pkg strings, func TrimSpace(string) string
 pkg strings, method (*Reader) Len() int
-pkg strings, method (*Reader) Read([]byte) (int, error)
-pkg strings, method (*Reader) ReadAt([]byte, int64) (int, error)
-pkg strings, method (*Reader) ReadByte() (byte, error)
-pkg strings, method (*Reader) ReadRune() (rune, int, error)
+pkg strings, method (*Reader) Read([]uint8) (int, error)
+pkg strings, method (*Reader) ReadAt([]uint8, int64) (int, error)
+pkg strings, method (*Reader) ReadByte() (uint8, error)
+pkg strings, method (*Reader) ReadRune() (int32, int, error)
 pkg strings, method (*Reader) Seek(int64, int) (int64, error)
 pkg strings, method (*Reader) UnreadByte() error
 pkg strings, method (*Reader) UnreadRune() error
@@ -5801,12 +5904,12 @@ pkg sync/atomic, func AddInt64(*int64, int64) int64
 pkg sync/atomic, func AddUint32(*uint32, uint32) uint32
 pkg sync/atomic, func AddUint64(*uint64, uint64) uint64
 pkg sync/atomic, func AddUintptr(*uintptr, uintptr) uintptr
-pkg sync/atomic, func CompareAndSwapInt32(*int32, int32) bool
-pkg sync/atomic, func CompareAndSwapInt64(*int64, int64) bool
-pkg sync/atomic, func CompareAndSwapPointer(*unsafe.Pointer, unsafe.Pointer) bool
-pkg sync/atomic, func CompareAndSwapUint32(*uint32, uint32) bool
-pkg sync/atomic, func CompareAndSwapUint64(*uint64, uint64) bool
-pkg sync/atomic, func CompareAndSwapUintptr(*uintptr, uintptr) bool
+pkg sync/atomic, func CompareAndSwapInt32(*int32, int32, int32) bool
+pkg sync/atomic, func CompareAndSwapInt64(*int64, int64, int64) bool
+pkg sync/atomic, func CompareAndSwapPointer(*unsafe.Pointer, unsafe.Pointer, unsafe.Pointer) bool
+pkg sync/atomic, func CompareAndSwapUint32(*uint32, uint32, uint32) bool
+pkg sync/atomic, func CompareAndSwapUint64(*uint64, uint64, uint64) bool
+pkg sync/atomic, func CompareAndSwapUintptr(*uintptr, uintptr, uintptr) bool
 pkg sync/atomic, func LoadInt32(*int32) int32
 pkg sync/atomic, func LoadInt64(*int64) int64
 pkg sync/atomic, func LoadPointer(*unsafe.Pointer) unsafe.Pointer
@@ -5958,6 +6061,7 @@ pkg syscall (darwin-386), const EAUTH Errno
 pkg syscall (darwin-386), const EBADARCH Errno
 pkg syscall (darwin-386), const EBADEXEC Errno
 pkg syscall (darwin-386), const EBADMACHO Errno
+pkg syscall (darwin-386), const EBADMSG Errno
 pkg syscall (darwin-386), const EBADRPC Errno
 pkg syscall (darwin-386), const ECHO ideal-int
 pkg syscall (darwin-386), const ECHOCTL ideal-int
@@ -5969,16 +6073,25 @@ pkg syscall (darwin-386), const ECHOPRT ideal-int
 pkg syscall (darwin-386), const EDEVERR Errno
 pkg syscall (darwin-386), const EFTYPE Errno
 pkg syscall (darwin-386), const ELAST Errno
+pkg syscall (darwin-386), const EMULTIHOP Errno
 pkg syscall (darwin-386), const ENEEDAUTH Errno
 pkg syscall (darwin-386), const ENOATTR Errno
+pkg syscall (darwin-386), const ENODATA Errno
+pkg syscall (darwin-386), const ENOLINK Errno
 pkg syscall (darwin-386), const ENOPOLICY Errno
+pkg syscall (darwin-386), const ENOSR Errno
+pkg syscall (darwin-386), const ENOSTR Errno
+pkg syscall (darwin-386), const ENOTRECOVERABLE Errno
+pkg syscall (darwin-386), const EOWNERDEAD Errno
 pkg syscall (darwin-386), const EPROCLIM Errno
 pkg syscall (darwin-386), const EPROCUNAVAIL Errno
 pkg syscall (darwin-386), const EPROGMISMATCH Errno
 pkg syscall (darwin-386), const EPROGUNAVAIL Errno
+pkg syscall (darwin-386), const EPROTO Errno
 pkg syscall (darwin-386), const EPWROFF Errno
 pkg syscall (darwin-386), const ERPCMISMATCH Errno
 pkg syscall (darwin-386), const ESHLIBVERS Errno
+pkg syscall (darwin-386), const ETIME Errno
 pkg syscall (darwin-386), const EVFILT_AIO ideal-int
 pkg syscall (darwin-386), const EVFILT_FS ideal-int
 pkg syscall (darwin-386), const EVFILT_MACHPORT ideal-int
@@ -7071,6 +7184,7 @@ pkg syscall (darwin-386), const S_IRWXU ideal-int
 pkg syscall (darwin-386), const S_ISTXT ideal-int
 pkg syscall (darwin-386), const S_IWGRP ideal-int
 pkg syscall (darwin-386), const S_IWOTH ideal-int
+pkg syscall (darwin-386), const S_IWRITE ideal-int
 pkg syscall (darwin-386), const S_IXGRP ideal-int
 pkg syscall (darwin-386), const S_IXOTH ideal-int
 pkg syscall (darwin-386), const SizeofBpfHdr ideal-int
@@ -7196,9 +7310,9 @@ pkg syscall (darwin-386), func BpfBuflen(int) (int, error)
 pkg syscall (darwin-386), func BpfDatalink(int) (int, error)
 pkg syscall (darwin-386), func BpfHeadercmpl(int) (int, error)
 pkg syscall (darwin-386), func BpfInterface(int, string) (string, error)
-pkg syscall (darwin-386), func BpfJump(int) *BpfInsn
+pkg syscall (darwin-386), func BpfJump(int, int, int, int) *BpfInsn
 pkg syscall (darwin-386), func BpfStats(int) (*BpfStat, error)
-pkg syscall (darwin-386), func BpfStmt(int) *BpfInsn
+pkg syscall (darwin-386), func BpfStmt(int, int) *BpfInsn
 pkg syscall (darwin-386), func BpfTimeout(int) (*Timeval, error)
 pkg syscall (darwin-386), func CheckBpfVersion(int) error
 pkg syscall (darwin-386), func Chflags(string, int) error
@@ -7224,7 +7338,7 @@ pkg syscall (darwin-386), func Fstatfs(int, *Statfs_t) error
 pkg syscall (darwin-386), func Fsync(int) error
 pkg syscall (darwin-386), func Ftruncate(int, int64) error
 pkg syscall (darwin-386), func Futimes(int, []Timeval) error
-pkg syscall (darwin-386), func Getdirentries(int, []byte, *uintptr) (int, error)
+pkg syscall (darwin-386), func Getdirentries(int, []uint8, *uintptr) (int, error)
 pkg syscall (darwin-386), func Getdtablesize() int
 pkg syscall (darwin-386), func Getfsstat([]Statfs_t, int) (int, error)
 pkg syscall (darwin-386), func Getpeername(int) (Sockaddr, error)
@@ -7235,58 +7349,56 @@ pkg syscall (darwin-386), func Getrlimit(int, *Rlimit) error
 pkg syscall (darwin-386), func Getrusage(int, *Rusage) error
 pkg syscall (darwin-386), func Getsid(int) (int, error)
 pkg syscall (darwin-386), func Getsockname(int) (Sockaddr, error)
-pkg syscall (darwin-386), func GetsockoptByte(int) (byte, error)
-pkg syscall (darwin-386), func GetsockoptIPMreq(int) (*IPMreq, error)
-pkg syscall (darwin-386), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
-pkg syscall (darwin-386), func GetsockoptInet4Addr(int) ([4]byte, error)
-pkg syscall (darwin-386), func GetsockoptInt(int) (int, error)
+pkg syscall (darwin-386), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (darwin-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (darwin-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (darwin-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (darwin-386), func GetsockoptInt(int, int, int) (int, error)
 pkg syscall (darwin-386), func Issetugid() bool
-pkg syscall (darwin-386), func Kevent(int, []Kevent_t, *Timespec) (int, error)
+pkg syscall (darwin-386), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
 pkg syscall (darwin-386), func Kill(int, Signal) error
 pkg syscall (darwin-386), func Kqueue() (int, error)
-pkg syscall (darwin-386), func Link(string, string) error
 pkg syscall (darwin-386), func Listen(int, int) error
 pkg syscall (darwin-386), func Lstat(string, *Stat_t) error
 pkg syscall (darwin-386), func Mkfifo(string, uint32) error
 pkg syscall (darwin-386), func Mknod(string, uint32, int) error
-pkg syscall (darwin-386), func Mmap(int, int64, int, int, int) ([]byte, error)
-pkg syscall (darwin-386), func Munmap([]byte) error
+pkg syscall (darwin-386), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (darwin-386), func Munmap([]uint8) error
 pkg syscall (darwin-386), func NsecToTimespec(int64) Timespec
 pkg syscall (darwin-386), func Open(string, int, uint32) (int, error)
-pkg syscall (darwin-386), func ParseDirent([]byte, int, []string) (int, int, []string)
-pkg syscall (darwin-386), func ParseRoutingMessage([]byte) ([]RoutingMessage, error)
+pkg syscall (darwin-386), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (darwin-386), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
 pkg syscall (darwin-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (darwin-386), func ParseSocketControlMessage([]byte) ([]SocketControlMessage, error)
+pkg syscall (darwin-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
 pkg syscall (darwin-386), func ParseUnixRights(*SocketControlMessage) ([]int, error)
 pkg syscall (darwin-386), func Pathconf(string, int) (int, error)
 pkg syscall (darwin-386), func Pipe([]int) error
-pkg syscall (darwin-386), func Pread(int, []byte, int64) (int, error)
+pkg syscall (darwin-386), func Pread(int, []uint8, int64) (int, error)
 pkg syscall (darwin-386), func PtraceAttach(int) error
 pkg syscall (darwin-386), func PtraceDetach(int) error
-pkg syscall (darwin-386), func Pwrite(int, []byte, int64) (int, error)
-pkg syscall (darwin-386), func RawSyscall(uintptr) (uintptr, Errno)
-pkg syscall (darwin-386), func RawSyscall6(uintptr) (uintptr, Errno)
-pkg syscall (darwin-386), func Read(int, []byte) (int, error)
-pkg syscall (darwin-386), func ReadDirent(int, []byte) (int, error)
-pkg syscall (darwin-386), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
-pkg syscall (darwin-386), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
-pkg syscall (darwin-386), func Rename(string, string) error
+pkg syscall (darwin-386), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (darwin-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-386), func Read(int, []uint8) (int, error)
+pkg syscall (darwin-386), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (darwin-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (darwin-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
 pkg syscall (darwin-386), func Revoke(string) error
-pkg syscall (darwin-386), func RouteRIB(int) ([]byte, error)
+pkg syscall (darwin-386), func RouteRIB(int, int) ([]uint8, error)
 pkg syscall (darwin-386), func Seek(int, int64, int) (int64, error)
 pkg syscall (darwin-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
 pkg syscall (darwin-386), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (darwin-386), func Sendmsg(int, []byte, Sockaddr, int) error
-pkg syscall (darwin-386), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (darwin-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (darwin-386), func Sendto(int, []uint8, int, Sockaddr) error
 pkg syscall (darwin-386), func SetBpf(int, []BpfInsn) error
-pkg syscall (darwin-386), func SetBpfBuflen(int) (int, error)
-pkg syscall (darwin-386), func SetBpfDatalink(int) (int, error)
-pkg syscall (darwin-386), func SetBpfHeadercmpl(int) error
-pkg syscall (darwin-386), func SetBpfImmediate(int) error
+pkg syscall (darwin-386), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (darwin-386), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (darwin-386), func SetBpfHeadercmpl(int, int) error
+pkg syscall (darwin-386), func SetBpfImmediate(int, int) error
 pkg syscall (darwin-386), func SetBpfInterface(int, string) error
-pkg syscall (darwin-386), func SetBpfPromisc(int) error
+pkg syscall (darwin-386), func SetBpfPromisc(int, int) error
 pkg syscall (darwin-386), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (darwin-386), func SetKevent(*Kevent_t, int)
+pkg syscall (darwin-386), func SetKevent(*Kevent_t, int, int, int)
 pkg syscall (darwin-386), func SetNonblock(int, bool) error
 pkg syscall (darwin-386), func Setegid(int) error
 pkg syscall (darwin-386), func Seteuid(int) error
@@ -7300,25 +7412,26 @@ pkg syscall (darwin-386), func Setregid(int, int) error
 pkg syscall (darwin-386), func Setreuid(int, int) error
 pkg syscall (darwin-386), func Setrlimit(int, *Rlimit) error
 pkg syscall (darwin-386), func Setsid() (int, error)
-pkg syscall (darwin-386), func SetsockoptByte(int, byte) error
-pkg syscall (darwin-386), func SetsockoptIPMreq(int, *IPMreq) error
-pkg syscall (darwin-386), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
-pkg syscall (darwin-386), func SetsockoptInet4Addr(int, [4]byte) error
-pkg syscall (darwin-386), func SetsockoptInt(int, int) error
-pkg syscall (darwin-386), func SetsockoptLinger(int, *Linger) error
-pkg syscall (darwin-386), func SetsockoptString(int, string) error
-pkg syscall (darwin-386), func SetsockoptTimeval(int, *Timeval) error
+pkg syscall (darwin-386), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (darwin-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (darwin-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (darwin-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (darwin-386), func SetsockoptInt(int, int, int, int) error
+pkg syscall (darwin-386), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (darwin-386), func SetsockoptString(int, int, int, string) error
+pkg syscall (darwin-386), func SetsockoptTimeval(int, int, int, *Timeval) error
 pkg syscall (darwin-386), func Settimeofday(*Timeval) error
 pkg syscall (darwin-386), func Setuid(int) error
 pkg syscall (darwin-386), func Shutdown(int, int) error
-pkg syscall (darwin-386), func Socket(int) (int, error)
-pkg syscall (darwin-386), func Socketpair(int) ([2]int, error)
+pkg syscall (darwin-386), func Socket(int, int, int) (int, error)
+pkg syscall (darwin-386), func Socketpair(int, int, int) ([2]int, error)
 pkg syscall (darwin-386), func Stat(string, *Stat_t) error
 pkg syscall (darwin-386), func Statfs(string, *Statfs_t) error
-pkg syscall (darwin-386), func StringSlicePtr([]string) []*byte
-pkg syscall (darwin-386), func Symlink(string, string) error
+pkg syscall (darwin-386), func StringSlicePtr([]string) []*uint8
 pkg syscall (darwin-386), func Sync() error
-pkg syscall (darwin-386), func Syscall9(uintptr) (uintptr, Errno)
+pkg syscall (darwin-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
 pkg syscall (darwin-386), func Sysctl(string) (string, error)
 pkg syscall (darwin-386), func SysctlUint32(string) (uint32, error)
 pkg syscall (darwin-386), func TimespecToNsec(Timespec) int64
@@ -7326,10 +7439,10 @@ pkg syscall (darwin-386), func TimevalToNsec(Timeval) int64
 pkg syscall (darwin-386), func Truncate(string, int64) error
 pkg syscall (darwin-386), func Umask(int) int
 pkg syscall (darwin-386), func Undelete(string) error
-pkg syscall (darwin-386), func UnixRights(...int) []byte
+pkg syscall (darwin-386), func UnixRights(...int) []uint8
 pkg syscall (darwin-386), func Unmount(string, int) error
 pkg syscall (darwin-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (darwin-386), func Write(int, []byte) (int, error)
+pkg syscall (darwin-386), func Write(int, []uint8) (int, error)
 pkg syscall (darwin-386), method (*Cmsghdr) SetLen(int)
 pkg syscall (darwin-386), method (*Iovec) SetLen(int)
 pkg syscall (darwin-386), method (*Msghdr) SetControllen(int)
@@ -7337,7 +7450,7 @@ pkg syscall (darwin-386), type BpfHdr struct
 pkg syscall (darwin-386), type BpfHdr struct, Caplen uint32
 pkg syscall (darwin-386), type BpfHdr struct, Datalen uint32
 pkg syscall (darwin-386), type BpfHdr struct, Hdrlen uint16
-pkg syscall (darwin-386), type BpfHdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386), type BpfHdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386), type BpfHdr struct, Tstamp Timeval
 pkg syscall (darwin-386), type BpfInsn struct
 pkg syscall (darwin-386), type BpfInsn struct, Code uint16
@@ -7365,12 +7478,12 @@ pkg syscall (darwin-386), type Dirent struct
 pkg syscall (darwin-386), type Dirent struct, Ino uint64
 pkg syscall (darwin-386), type Dirent struct, Name [1024]int8
 pkg syscall (darwin-386), type Dirent struct, Namlen uint16
-pkg syscall (darwin-386), type Dirent struct, Pad_cgo_0 [3]byte
+pkg syscall (darwin-386), type Dirent struct, Pad_cgo_0 [3]uint8
 pkg syscall (darwin-386), type Dirent struct, Reclen uint16
 pkg syscall (darwin-386), type Dirent struct, Seekoff uint64
 pkg syscall (darwin-386), type Dirent struct, Type uint8
 pkg syscall (darwin-386), type Fbootstraptransfer_t struct
-pkg syscall (darwin-386), type Fbootstraptransfer_t struct, Buffer *byte
+pkg syscall (darwin-386), type Fbootstraptransfer_t struct, Buffer *uint8
 pkg syscall (darwin-386), type Fbootstraptransfer_t struct, Length uint32
 pkg syscall (darwin-386), type Fbootstraptransfer_t struct, Offset int64
 pkg syscall (darwin-386), type FdSet struct
@@ -7425,7 +7538,7 @@ pkg syscall (darwin-386), type IfMsghdr struct, Data IfData
 pkg syscall (darwin-386), type IfMsghdr struct, Flags int32
 pkg syscall (darwin-386), type IfMsghdr struct, Index uint16
 pkg syscall (darwin-386), type IfMsghdr struct, Msglen uint16
-pkg syscall (darwin-386), type IfMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386), type IfMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386), type IfMsghdr struct, Type uint8
 pkg syscall (darwin-386), type IfMsghdr struct, Version uint8
 pkg syscall (darwin-386), type IfaMsghdr struct
@@ -7434,7 +7547,7 @@ pkg syscall (darwin-386), type IfaMsghdr struct, Flags int32
 pkg syscall (darwin-386), type IfaMsghdr struct, Index uint16
 pkg syscall (darwin-386), type IfaMsghdr struct, Metric int32
 pkg syscall (darwin-386), type IfaMsghdr struct, Msglen uint16
-pkg syscall (darwin-386), type IfaMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386), type IfaMsghdr struct, Type uint8
 pkg syscall (darwin-386), type IfaMsghdr struct, Version uint8
 pkg syscall (darwin-386), type IfmaMsghdr struct
@@ -7442,7 +7555,7 @@ pkg syscall (darwin-386), type IfmaMsghdr struct, Addrs int32
 pkg syscall (darwin-386), type IfmaMsghdr struct, Flags int32
 pkg syscall (darwin-386), type IfmaMsghdr struct, Index uint16
 pkg syscall (darwin-386), type IfmaMsghdr struct, Msglen uint16
-pkg syscall (darwin-386), type IfmaMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386), type IfmaMsghdr struct, Type uint8
 pkg syscall (darwin-386), type IfmaMsghdr struct, Version uint8
 pkg syscall (darwin-386), type IfmaMsghdr2 struct
@@ -7450,24 +7563,24 @@ pkg syscall (darwin-386), type IfmaMsghdr2 struct, Addrs int32
 pkg syscall (darwin-386), type IfmaMsghdr2 struct, Flags int32
 pkg syscall (darwin-386), type IfmaMsghdr2 struct, Index uint16
 pkg syscall (darwin-386), type IfmaMsghdr2 struct, Msglen uint16
-pkg syscall (darwin-386), type IfmaMsghdr2 struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386), type IfmaMsghdr2 struct, Refcount int32
 pkg syscall (darwin-386), type IfmaMsghdr2 struct, Type uint8
 pkg syscall (darwin-386), type IfmaMsghdr2 struct, Version uint8
 pkg syscall (darwin-386), type Inet6Pktinfo struct
-pkg syscall (darwin-386), type Inet6Pktinfo struct, Addr [16]byte
+pkg syscall (darwin-386), type Inet6Pktinfo struct, Addr [16]uint8
 pkg syscall (darwin-386), type Inet6Pktinfo struct, Ifindex uint32
 pkg syscall (darwin-386), type InterfaceAddrMessage struct
-pkg syscall (darwin-386), type InterfaceAddrMessage struct, Data []byte
+pkg syscall (darwin-386), type InterfaceAddrMessage struct, Data []uint8
 pkg syscall (darwin-386), type InterfaceAddrMessage struct, Header IfaMsghdr
 pkg syscall (darwin-386), type InterfaceMessage struct
-pkg syscall (darwin-386), type InterfaceMessage struct, Data []byte
+pkg syscall (darwin-386), type InterfaceMessage struct, Data []uint8
 pkg syscall (darwin-386), type InterfaceMessage struct, Header IfMsghdr
 pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct
-pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct, Data []byte
+pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct, Data []uint8
 pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2
 pkg syscall (darwin-386), type Iovec struct
-pkg syscall (darwin-386), type Iovec struct, Base *byte
+pkg syscall (darwin-386), type Iovec struct, Base *uint8
 pkg syscall (darwin-386), type Iovec struct, Len uint32
 pkg syscall (darwin-386), type Kevent_t struct
 pkg syscall (darwin-386), type Kevent_t struct, Data int32
@@ -7475,22 +7588,23 @@ pkg syscall (darwin-386), type Kevent_t struct, Fflags uint32
 pkg syscall (darwin-386), type Kevent_t struct, Filter int16
 pkg syscall (darwin-386), type Kevent_t struct, Flags uint16
 pkg syscall (darwin-386), type Kevent_t struct, Ident uint32
-pkg syscall (darwin-386), type Kevent_t struct, Udata *byte
+pkg syscall (darwin-386), type Kevent_t struct, Udata *uint8
 pkg syscall (darwin-386), type Log2phys_t struct
 pkg syscall (darwin-386), type Log2phys_t struct, Contigbytes int64
 pkg syscall (darwin-386), type Log2phys_t struct, Devoffset int64
 pkg syscall (darwin-386), type Log2phys_t struct, Flags uint32
 pkg syscall (darwin-386), type Msghdr struct
-pkg syscall (darwin-386), type Msghdr struct, Control *byte
+pkg syscall (darwin-386), type Msghdr struct, Control *uint8
 pkg syscall (darwin-386), type Msghdr struct, Controllen uint32
 pkg syscall (darwin-386), type Msghdr struct, Flags int32
 pkg syscall (darwin-386), type Msghdr struct, Iov *Iovec
 pkg syscall (darwin-386), type Msghdr struct, Iovlen int32
-pkg syscall (darwin-386), type Msghdr struct, Name *byte
+pkg syscall (darwin-386), type Msghdr struct, Name *uint8
 pkg syscall (darwin-386), type Msghdr struct, Namelen uint32
 pkg syscall (darwin-386), type Radvisory_t struct
 pkg syscall (darwin-386), type Radvisory_t struct, Count int32
 pkg syscall (darwin-386), type Radvisory_t struct, Offset int64
+pkg syscall (darwin-386), type RawSockaddr struct, Data [14]int8
 pkg syscall (darwin-386), type RawSockaddr struct, Family uint8
 pkg syscall (darwin-386), type RawSockaddr struct, Len uint8
 pkg syscall (darwin-386), type RawSockaddrAny struct, Pad [92]int8
@@ -7507,7 +7621,7 @@ pkg syscall (darwin-386), type RawSockaddrInet4 struct, Family uint8
 pkg syscall (darwin-386), type RawSockaddrInet4 struct, Len uint8
 pkg syscall (darwin-386), type RawSockaddrInet4 struct, Zero [8]int8
 pkg syscall (darwin-386), type RawSockaddrInet6 struct
-pkg syscall (darwin-386), type RawSockaddrInet6 struct, Addr [16]byte
+pkg syscall (darwin-386), type RawSockaddrInet6 struct, Addr [16]uint8
 pkg syscall (darwin-386), type RawSockaddrInet6 struct, Family uint8
 pkg syscall (darwin-386), type RawSockaddrInet6 struct, Flowinfo uint32
 pkg syscall (darwin-386), type RawSockaddrInet6 struct, Len uint8
@@ -7521,9 +7635,9 @@ pkg syscall (darwin-386), type Rlimit struct
 pkg syscall (darwin-386), type Rlimit struct, Cur uint64
 pkg syscall (darwin-386), type Rlimit struct, Max uint64
 pkg syscall (darwin-386), type RouteMessage struct
-pkg syscall (darwin-386), type RouteMessage struct, Data []byte
+pkg syscall (darwin-386), type RouteMessage struct, Data []uint8
 pkg syscall (darwin-386), type RouteMessage struct, Header RtMsghdr
-pkg syscall (darwin-386), type RoutingMessage interface {}
+pkg syscall (darwin-386), type RoutingMessage interface, unexported methods
 pkg syscall (darwin-386), type RtMetrics struct
 pkg syscall (darwin-386), type RtMetrics struct, Expire int32
 pkg syscall (darwin-386), type RtMetrics struct, Filler [4]uint32
@@ -7543,7 +7657,7 @@ pkg syscall (darwin-386), type RtMsghdr struct, Flags int32
 pkg syscall (darwin-386), type RtMsghdr struct, Index uint16
 pkg syscall (darwin-386), type RtMsghdr struct, Inits uint32
 pkg syscall (darwin-386), type RtMsghdr struct, Msglen uint16
-pkg syscall (darwin-386), type RtMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386), type RtMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386), type RtMsghdr struct, Pid int32
 pkg syscall (darwin-386), type RtMsghdr struct, Rmx RtMetrics
 pkg syscall (darwin-386), type RtMsghdr struct, Seq int32
@@ -7576,7 +7690,7 @@ pkg syscall (darwin-386), type SockaddrDatalink struct, Nlen uint8
 pkg syscall (darwin-386), type SockaddrDatalink struct, Slen uint8
 pkg syscall (darwin-386), type SockaddrDatalink struct, Type uint8
 pkg syscall (darwin-386), type SocketControlMessage struct
-pkg syscall (darwin-386), type SocketControlMessage struct, Data []byte
+pkg syscall (darwin-386), type SocketControlMessage struct, Data []uint8
 pkg syscall (darwin-386), type SocketControlMessage struct, Header Cmsghdr
 pkg syscall (darwin-386), type Stat_t struct
 pkg syscall (darwin-386), type Stat_t struct, Atimespec Timespec
@@ -7625,7 +7739,7 @@ pkg syscall (darwin-386), type Timespec struct, Nsec int32
 pkg syscall (darwin-386), type Timespec struct, Sec int32
 pkg syscall (darwin-386), type Timeval struct, Sec int32
 pkg syscall (darwin-386), type Timeval struct, Usec int32
-pkg syscall (darwin-386), type Timeval32 [0]byte
+pkg syscall (darwin-386), type Timeval32 [0]uint8
 pkg syscall (darwin-386), type WaitStatus uint32
 pkg syscall (darwin-386), var Stderr int
 pkg syscall (darwin-386), var Stdin int
@@ -7769,6 +7883,7 @@ pkg syscall (darwin-386-cgo), const EAUTH Errno
 pkg syscall (darwin-386-cgo), const EBADARCH Errno
 pkg syscall (darwin-386-cgo), const EBADEXEC Errno
 pkg syscall (darwin-386-cgo), const EBADMACHO Errno
+pkg syscall (darwin-386-cgo), const EBADMSG Errno
 pkg syscall (darwin-386-cgo), const EBADRPC Errno
 pkg syscall (darwin-386-cgo), const ECHO ideal-int
 pkg syscall (darwin-386-cgo), const ECHOCTL ideal-int
@@ -7780,16 +7895,25 @@ pkg syscall (darwin-386-cgo), const ECHOPRT ideal-int
 pkg syscall (darwin-386-cgo), const EDEVERR Errno
 pkg syscall (darwin-386-cgo), const EFTYPE Errno
 pkg syscall (darwin-386-cgo), const ELAST Errno
+pkg syscall (darwin-386-cgo), const EMULTIHOP Errno
 pkg syscall (darwin-386-cgo), const ENEEDAUTH Errno
 pkg syscall (darwin-386-cgo), const ENOATTR Errno
+pkg syscall (darwin-386-cgo), const ENODATA Errno
+pkg syscall (darwin-386-cgo), const ENOLINK Errno
 pkg syscall (darwin-386-cgo), const ENOPOLICY Errno
+pkg syscall (darwin-386-cgo), const ENOSR Errno
+pkg syscall (darwin-386-cgo), const ENOSTR Errno
+pkg syscall (darwin-386-cgo), const ENOTRECOVERABLE Errno
+pkg syscall (darwin-386-cgo), const EOWNERDEAD Errno
 pkg syscall (darwin-386-cgo), const EPROCLIM Errno
 pkg syscall (darwin-386-cgo), const EPROCUNAVAIL Errno
 pkg syscall (darwin-386-cgo), const EPROGMISMATCH Errno
 pkg syscall (darwin-386-cgo), const EPROGUNAVAIL Errno
+pkg syscall (darwin-386-cgo), const EPROTO Errno
 pkg syscall (darwin-386-cgo), const EPWROFF Errno
 pkg syscall (darwin-386-cgo), const ERPCMISMATCH Errno
 pkg syscall (darwin-386-cgo), const ESHLIBVERS Errno
+pkg syscall (darwin-386-cgo), const ETIME Errno
 pkg syscall (darwin-386-cgo), const EVFILT_AIO ideal-int
 pkg syscall (darwin-386-cgo), const EVFILT_FS ideal-int
 pkg syscall (darwin-386-cgo), const EVFILT_MACHPORT ideal-int
@@ -8882,6 +9006,7 @@ pkg syscall (darwin-386-cgo), const S_IRWXU ideal-int
 pkg syscall (darwin-386-cgo), const S_ISTXT ideal-int
 pkg syscall (darwin-386-cgo), const S_IWGRP ideal-int
 pkg syscall (darwin-386-cgo), const S_IWOTH ideal-int
+pkg syscall (darwin-386-cgo), const S_IWRITE ideal-int
 pkg syscall (darwin-386-cgo), const S_IXGRP ideal-int
 pkg syscall (darwin-386-cgo), const S_IXOTH ideal-int
 pkg syscall (darwin-386-cgo), const SizeofBpfHdr ideal-int
@@ -9007,9 +9132,9 @@ pkg syscall (darwin-386-cgo), func BpfBuflen(int) (int, error)
 pkg syscall (darwin-386-cgo), func BpfDatalink(int) (int, error)
 pkg syscall (darwin-386-cgo), func BpfHeadercmpl(int) (int, error)
 pkg syscall (darwin-386-cgo), func BpfInterface(int, string) (string, error)
-pkg syscall (darwin-386-cgo), func BpfJump(int) *BpfInsn
+pkg syscall (darwin-386-cgo), func BpfJump(int, int, int, int) *BpfInsn
 pkg syscall (darwin-386-cgo), func BpfStats(int) (*BpfStat, error)
-pkg syscall (darwin-386-cgo), func BpfStmt(int) *BpfInsn
+pkg syscall (darwin-386-cgo), func BpfStmt(int, int) *BpfInsn
 pkg syscall (darwin-386-cgo), func BpfTimeout(int) (*Timeval, error)
 pkg syscall (darwin-386-cgo), func CheckBpfVersion(int) error
 pkg syscall (darwin-386-cgo), func Chflags(string, int) error
@@ -9035,7 +9160,7 @@ pkg syscall (darwin-386-cgo), func Fstatfs(int, *Statfs_t) error
 pkg syscall (darwin-386-cgo), func Fsync(int) error
 pkg syscall (darwin-386-cgo), func Ftruncate(int, int64) error
 pkg syscall (darwin-386-cgo), func Futimes(int, []Timeval) error
-pkg syscall (darwin-386-cgo), func Getdirentries(int, []byte, *uintptr) (int, error)
+pkg syscall (darwin-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
 pkg syscall (darwin-386-cgo), func Getdtablesize() int
 pkg syscall (darwin-386-cgo), func Getfsstat([]Statfs_t, int) (int, error)
 pkg syscall (darwin-386-cgo), func Getpeername(int) (Sockaddr, error)
@@ -9046,58 +9171,56 @@ pkg syscall (darwin-386-cgo), func Getrlimit(int, *Rlimit) error
 pkg syscall (darwin-386-cgo), func Getrusage(int, *Rusage) error
 pkg syscall (darwin-386-cgo), func Getsid(int) (int, error)
 pkg syscall (darwin-386-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (darwin-386-cgo), func GetsockoptByte(int) (byte, error)
-pkg syscall (darwin-386-cgo), func GetsockoptIPMreq(int) (*IPMreq, error)
-pkg syscall (darwin-386-cgo), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
-pkg syscall (darwin-386-cgo), func GetsockoptInet4Addr(int) ([4]byte, error)
-pkg syscall (darwin-386-cgo), func GetsockoptInt(int) (int, error)
+pkg syscall (darwin-386-cgo), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (darwin-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (darwin-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (darwin-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (darwin-386-cgo), func GetsockoptInt(int, int, int) (int, error)
 pkg syscall (darwin-386-cgo), func Issetugid() bool
-pkg syscall (darwin-386-cgo), func Kevent(int, []Kevent_t, *Timespec) (int, error)
+pkg syscall (darwin-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
 pkg syscall (darwin-386-cgo), func Kill(int, Signal) error
 pkg syscall (darwin-386-cgo), func Kqueue() (int, error)
-pkg syscall (darwin-386-cgo), func Link(string, string) error
 pkg syscall (darwin-386-cgo), func Listen(int, int) error
 pkg syscall (darwin-386-cgo), func Lstat(string, *Stat_t) error
 pkg syscall (darwin-386-cgo), func Mkfifo(string, uint32) error
 pkg syscall (darwin-386-cgo), func Mknod(string, uint32, int) error
-pkg syscall (darwin-386-cgo), func Mmap(int, int64, int, int, int) ([]byte, error)
-pkg syscall (darwin-386-cgo), func Munmap([]byte) error
+pkg syscall (darwin-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (darwin-386-cgo), func Munmap([]uint8) error
 pkg syscall (darwin-386-cgo), func NsecToTimespec(int64) Timespec
 pkg syscall (darwin-386-cgo), func Open(string, int, uint32) (int, error)
-pkg syscall (darwin-386-cgo), func ParseDirent([]byte, int, []string) (int, int, []string)
-pkg syscall (darwin-386-cgo), func ParseRoutingMessage([]byte) ([]RoutingMessage, error)
+pkg syscall (darwin-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (darwin-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
 pkg syscall (darwin-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (darwin-386-cgo), func ParseSocketControlMessage([]byte) ([]SocketControlMessage, error)
+pkg syscall (darwin-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
 pkg syscall (darwin-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
 pkg syscall (darwin-386-cgo), func Pathconf(string, int) (int, error)
 pkg syscall (darwin-386-cgo), func Pipe([]int) error
-pkg syscall (darwin-386-cgo), func Pread(int, []byte, int64) (int, error)
+pkg syscall (darwin-386-cgo), func Pread(int, []uint8, int64) (int, error)
 pkg syscall (darwin-386-cgo), func PtraceAttach(int) error
 pkg syscall (darwin-386-cgo), func PtraceDetach(int) error
-pkg syscall (darwin-386-cgo), func Pwrite(int, []byte, int64) (int, error)
-pkg syscall (darwin-386-cgo), func RawSyscall(uintptr) (uintptr, Errno)
-pkg syscall (darwin-386-cgo), func RawSyscall6(uintptr) (uintptr, Errno)
-pkg syscall (darwin-386-cgo), func Read(int, []byte) (int, error)
-pkg syscall (darwin-386-cgo), func ReadDirent(int, []byte) (int, error)
-pkg syscall (darwin-386-cgo), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
-pkg syscall (darwin-386-cgo), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
-pkg syscall (darwin-386-cgo), func Rename(string, string) error
+pkg syscall (darwin-386-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (darwin-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-386-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (darwin-386-cgo), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (darwin-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (darwin-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
 pkg syscall (darwin-386-cgo), func Revoke(string) error
-pkg syscall (darwin-386-cgo), func RouteRIB(int) ([]byte, error)
+pkg syscall (darwin-386-cgo), func RouteRIB(int, int) ([]uint8, error)
 pkg syscall (darwin-386-cgo), func Seek(int, int64, int) (int64, error)
 pkg syscall (darwin-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
 pkg syscall (darwin-386-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (darwin-386-cgo), func Sendmsg(int, []byte, Sockaddr, int) error
-pkg syscall (darwin-386-cgo), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (darwin-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (darwin-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error
 pkg syscall (darwin-386-cgo), func SetBpf(int, []BpfInsn) error
-pkg syscall (darwin-386-cgo), func SetBpfBuflen(int) (int, error)
-pkg syscall (darwin-386-cgo), func SetBpfDatalink(int) (int, error)
-pkg syscall (darwin-386-cgo), func SetBpfHeadercmpl(int) error
-pkg syscall (darwin-386-cgo), func SetBpfImmediate(int) error
+pkg syscall (darwin-386-cgo), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (darwin-386-cgo), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (darwin-386-cgo), func SetBpfHeadercmpl(int, int) error
+pkg syscall (darwin-386-cgo), func SetBpfImmediate(int, int) error
 pkg syscall (darwin-386-cgo), func SetBpfInterface(int, string) error
-pkg syscall (darwin-386-cgo), func SetBpfPromisc(int) error
+pkg syscall (darwin-386-cgo), func SetBpfPromisc(int, int) error
 pkg syscall (darwin-386-cgo), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (darwin-386-cgo), func SetKevent(*Kevent_t, int)
+pkg syscall (darwin-386-cgo), func SetKevent(*Kevent_t, int, int, int)
 pkg syscall (darwin-386-cgo), func SetNonblock(int, bool) error
 pkg syscall (darwin-386-cgo), func Setegid(int) error
 pkg syscall (darwin-386-cgo), func Seteuid(int) error
@@ -9111,25 +9234,26 @@ pkg syscall (darwin-386-cgo), func Setregid(int, int) error
 pkg syscall (darwin-386-cgo), func Setreuid(int, int) error
 pkg syscall (darwin-386-cgo), func Setrlimit(int, *Rlimit) error
 pkg syscall (darwin-386-cgo), func Setsid() (int, error)
-pkg syscall (darwin-386-cgo), func SetsockoptByte(int, byte) error
-pkg syscall (darwin-386-cgo), func SetsockoptIPMreq(int, *IPMreq) error
-pkg syscall (darwin-386-cgo), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
-pkg syscall (darwin-386-cgo), func SetsockoptInet4Addr(int, [4]byte) error
-pkg syscall (darwin-386-cgo), func SetsockoptInt(int, int) error
-pkg syscall (darwin-386-cgo), func SetsockoptLinger(int, *Linger) error
-pkg syscall (darwin-386-cgo), func SetsockoptString(int, string) error
-pkg syscall (darwin-386-cgo), func SetsockoptTimeval(int, *Timeval) error
+pkg syscall (darwin-386-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (darwin-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (darwin-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (darwin-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (darwin-386-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (darwin-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (darwin-386-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (darwin-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
 pkg syscall (darwin-386-cgo), func Settimeofday(*Timeval) error
 pkg syscall (darwin-386-cgo), func Setuid(int) error
 pkg syscall (darwin-386-cgo), func Shutdown(int, int) error
-pkg syscall (darwin-386-cgo), func Socket(int) (int, error)
-pkg syscall (darwin-386-cgo), func Socketpair(int) ([2]int, error)
+pkg syscall (darwin-386-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (darwin-386-cgo), func Socketpair(int, int, int) ([2]int, error)
 pkg syscall (darwin-386-cgo), func Stat(string, *Stat_t) error
 pkg syscall (darwin-386-cgo), func Statfs(string, *Statfs_t) error
-pkg syscall (darwin-386-cgo), func StringSlicePtr([]string) []*byte
-pkg syscall (darwin-386-cgo), func Symlink(string, string) error
+pkg syscall (darwin-386-cgo), func StringSlicePtr([]string) []*uint8
 pkg syscall (darwin-386-cgo), func Sync() error
-pkg syscall (darwin-386-cgo), func Syscall9(uintptr) (uintptr, Errno)
+pkg syscall (darwin-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
 pkg syscall (darwin-386-cgo), func Sysctl(string) (string, error)
 pkg syscall (darwin-386-cgo), func SysctlUint32(string) (uint32, error)
 pkg syscall (darwin-386-cgo), func TimespecToNsec(Timespec) int64
@@ -9137,10 +9261,10 @@ pkg syscall (darwin-386-cgo), func TimevalToNsec(Timeval) int64
 pkg syscall (darwin-386-cgo), func Truncate(string, int64) error
 pkg syscall (darwin-386-cgo), func Umask(int) int
 pkg syscall (darwin-386-cgo), func Undelete(string) error
-pkg syscall (darwin-386-cgo), func UnixRights(...int) []byte
+pkg syscall (darwin-386-cgo), func UnixRights(...int) []uint8
 pkg syscall (darwin-386-cgo), func Unmount(string, int) error
 pkg syscall (darwin-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (darwin-386-cgo), func Write(int, []byte) (int, error)
+pkg syscall (darwin-386-cgo), func Write(int, []uint8) (int, error)
 pkg syscall (darwin-386-cgo), method (*Cmsghdr) SetLen(int)
 pkg syscall (darwin-386-cgo), method (*Iovec) SetLen(int)
 pkg syscall (darwin-386-cgo), method (*Msghdr) SetControllen(int)
@@ -9148,7 +9272,7 @@ pkg syscall (darwin-386-cgo), type BpfHdr struct
 pkg syscall (darwin-386-cgo), type BpfHdr struct, Caplen uint32
 pkg syscall (darwin-386-cgo), type BpfHdr struct, Datalen uint32
 pkg syscall (darwin-386-cgo), type BpfHdr struct, Hdrlen uint16
-pkg syscall (darwin-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386-cgo), type BpfHdr struct, Tstamp Timeval
 pkg syscall (darwin-386-cgo), type BpfInsn struct
 pkg syscall (darwin-386-cgo), type BpfInsn struct, Code uint16
@@ -9176,12 +9300,12 @@ pkg syscall (darwin-386-cgo), type Dirent struct
 pkg syscall (darwin-386-cgo), type Dirent struct, Ino uint64
 pkg syscall (darwin-386-cgo), type Dirent struct, Name [1024]int8
 pkg syscall (darwin-386-cgo), type Dirent struct, Namlen uint16
-pkg syscall (darwin-386-cgo), type Dirent struct, Pad_cgo_0 [3]byte
+pkg syscall (darwin-386-cgo), type Dirent struct, Pad_cgo_0 [3]uint8
 pkg syscall (darwin-386-cgo), type Dirent struct, Reclen uint16
 pkg syscall (darwin-386-cgo), type Dirent struct, Seekoff uint64
 pkg syscall (darwin-386-cgo), type Dirent struct, Type uint8
 pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct
-pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct, Buffer *byte
+pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct, Buffer *uint8
 pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct, Length uint32
 pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct, Offset int64
 pkg syscall (darwin-386-cgo), type FdSet struct
@@ -9236,7 +9360,7 @@ pkg syscall (darwin-386-cgo), type IfMsghdr struct, Data IfData
 pkg syscall (darwin-386-cgo), type IfMsghdr struct, Flags int32
 pkg syscall (darwin-386-cgo), type IfMsghdr struct, Index uint16
 pkg syscall (darwin-386-cgo), type IfMsghdr struct, Msglen uint16
-pkg syscall (darwin-386-cgo), type IfMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386-cgo), type IfMsghdr struct, Type uint8
 pkg syscall (darwin-386-cgo), type IfMsghdr struct, Version uint8
 pkg syscall (darwin-386-cgo), type IfaMsghdr struct
@@ -9245,7 +9369,7 @@ pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Flags int32
 pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Index uint16
 pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Metric int32
 pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Msglen uint16
-pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Type uint8
 pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Version uint8
 pkg syscall (darwin-386-cgo), type IfmaMsghdr struct
@@ -9253,7 +9377,7 @@ pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Addrs int32
 pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Flags int32
 pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Index uint16
 pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Msglen uint16
-pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Type uint8
 pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Version uint8
 pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct
@@ -9261,24 +9385,24 @@ pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Addrs int32
 pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Flags int32
 pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Index uint16
 pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Msglen uint16
-pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Refcount int32
 pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Type uint8
 pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Version uint8
 pkg syscall (darwin-386-cgo), type Inet6Pktinfo struct
-pkg syscall (darwin-386-cgo), type Inet6Pktinfo struct, Addr [16]byte
+pkg syscall (darwin-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8
 pkg syscall (darwin-386-cgo), type Inet6Pktinfo struct, Ifindex uint32
 pkg syscall (darwin-386-cgo), type InterfaceAddrMessage struct
-pkg syscall (darwin-386-cgo), type InterfaceAddrMessage struct, Data []byte
+pkg syscall (darwin-386-cgo), type InterfaceAddrMessage struct, Data []uint8
 pkg syscall (darwin-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
 pkg syscall (darwin-386-cgo), type InterfaceMessage struct
-pkg syscall (darwin-386-cgo), type InterfaceMessage struct, Data []byte
+pkg syscall (darwin-386-cgo), type InterfaceMessage struct, Data []uint8
 pkg syscall (darwin-386-cgo), type InterfaceMessage struct, Header IfMsghdr
 pkg syscall (darwin-386-cgo), type InterfaceMulticastAddrMessage struct
-pkg syscall (darwin-386-cgo), type InterfaceMulticastAddrMessage struct, Data []byte
+pkg syscall (darwin-386-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8
 pkg syscall (darwin-386-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2
 pkg syscall (darwin-386-cgo), type Iovec struct
-pkg syscall (darwin-386-cgo), type Iovec struct, Base *byte
+pkg syscall (darwin-386-cgo), type Iovec struct, Base *uint8
 pkg syscall (darwin-386-cgo), type Iovec struct, Len uint32
 pkg syscall (darwin-386-cgo), type Kevent_t struct
 pkg syscall (darwin-386-cgo), type Kevent_t struct, Data int32
@@ -9286,22 +9410,23 @@ pkg syscall (darwin-386-cgo), type Kevent_t struct, Fflags uint32
 pkg syscall (darwin-386-cgo), type Kevent_t struct, Filter int16
 pkg syscall (darwin-386-cgo), type Kevent_t struct, Flags uint16
 pkg syscall (darwin-386-cgo), type Kevent_t struct, Ident uint32
-pkg syscall (darwin-386-cgo), type Kevent_t struct, Udata *byte
+pkg syscall (darwin-386-cgo), type Kevent_t struct, Udata *uint8
 pkg syscall (darwin-386-cgo), type Log2phys_t struct
 pkg syscall (darwin-386-cgo), type Log2phys_t struct, Contigbytes int64
 pkg syscall (darwin-386-cgo), type Log2phys_t struct, Devoffset int64
 pkg syscall (darwin-386-cgo), type Log2phys_t struct, Flags uint32
 pkg syscall (darwin-386-cgo), type Msghdr struct
-pkg syscall (darwin-386-cgo), type Msghdr struct, Control *byte
+pkg syscall (darwin-386-cgo), type Msghdr struct, Control *uint8
 pkg syscall (darwin-386-cgo), type Msghdr struct, Controllen uint32
 pkg syscall (darwin-386-cgo), type Msghdr struct, Flags int32
 pkg syscall (darwin-386-cgo), type Msghdr struct, Iov *Iovec
 pkg syscall (darwin-386-cgo), type Msghdr struct, Iovlen int32
-pkg syscall (darwin-386-cgo), type Msghdr struct, Name *byte
+pkg syscall (darwin-386-cgo), type Msghdr struct, Name *uint8
 pkg syscall (darwin-386-cgo), type Msghdr struct, Namelen uint32
 pkg syscall (darwin-386-cgo), type Radvisory_t struct
 pkg syscall (darwin-386-cgo), type Radvisory_t struct, Count int32
 pkg syscall (darwin-386-cgo), type Radvisory_t struct, Offset int64
+pkg syscall (darwin-386-cgo), type RawSockaddr struct, Data [14]int8
 pkg syscall (darwin-386-cgo), type RawSockaddr struct, Family uint8
 pkg syscall (darwin-386-cgo), type RawSockaddr struct, Len uint8
 pkg syscall (darwin-386-cgo), type RawSockaddrAny struct, Pad [92]int8
@@ -9318,7 +9443,7 @@ pkg syscall (darwin-386-cgo), type RawSockaddrInet4 struct, Family uint8
 pkg syscall (darwin-386-cgo), type RawSockaddrInet4 struct, Len uint8
 pkg syscall (darwin-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8
 pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct
-pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Addr [16]byte
+pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Addr [16]uint8
 pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Family uint8
 pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Flowinfo uint32
 pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Len uint8
@@ -9332,9 +9457,9 @@ pkg syscall (darwin-386-cgo), type Rlimit struct
 pkg syscall (darwin-386-cgo), type Rlimit struct, Cur uint64
 pkg syscall (darwin-386-cgo), type Rlimit struct, Max uint64
 pkg syscall (darwin-386-cgo), type RouteMessage struct
-pkg syscall (darwin-386-cgo), type RouteMessage struct, Data []byte
+pkg syscall (darwin-386-cgo), type RouteMessage struct, Data []uint8
 pkg syscall (darwin-386-cgo), type RouteMessage struct, Header RtMsghdr
-pkg syscall (darwin-386-cgo), type RoutingMessage interface {}
+pkg syscall (darwin-386-cgo), type RoutingMessage interface, unexported methods
 pkg syscall (darwin-386-cgo), type RtMetrics struct
 pkg syscall (darwin-386-cgo), type RtMetrics struct, Expire int32
 pkg syscall (darwin-386-cgo), type RtMetrics struct, Filler [4]uint32
@@ -9354,7 +9479,7 @@ pkg syscall (darwin-386-cgo), type RtMsghdr struct, Flags int32
 pkg syscall (darwin-386-cgo), type RtMsghdr struct, Index uint16
 pkg syscall (darwin-386-cgo), type RtMsghdr struct, Inits uint32
 pkg syscall (darwin-386-cgo), type RtMsghdr struct, Msglen uint16
-pkg syscall (darwin-386-cgo), type RtMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-386-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-386-cgo), type RtMsghdr struct, Pid int32
 pkg syscall (darwin-386-cgo), type RtMsghdr struct, Rmx RtMetrics
 pkg syscall (darwin-386-cgo), type RtMsghdr struct, Seq int32
@@ -9387,7 +9512,7 @@ pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Nlen uint8
 pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Slen uint8
 pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Type uint8
 pkg syscall (darwin-386-cgo), type SocketControlMessage struct
-pkg syscall (darwin-386-cgo), type SocketControlMessage struct, Data []byte
+pkg syscall (darwin-386-cgo), type SocketControlMessage struct, Data []uint8
 pkg syscall (darwin-386-cgo), type SocketControlMessage struct, Header Cmsghdr
 pkg syscall (darwin-386-cgo), type Stat_t struct
 pkg syscall (darwin-386-cgo), type Stat_t struct, Atimespec Timespec
@@ -9436,7 +9561,7 @@ pkg syscall (darwin-386-cgo), type Timespec struct, Nsec int32
 pkg syscall (darwin-386-cgo), type Timespec struct, Sec int32
 pkg syscall (darwin-386-cgo), type Timeval struct, Sec int32
 pkg syscall (darwin-386-cgo), type Timeval struct, Usec int32
-pkg syscall (darwin-386-cgo), type Timeval32 [0]byte
+pkg syscall (darwin-386-cgo), type Timeval32 [0]uint8
 pkg syscall (darwin-386-cgo), type WaitStatus uint32
 pkg syscall (darwin-386-cgo), var Stderr int
 pkg syscall (darwin-386-cgo), var Stdin int
@@ -9580,6 +9705,7 @@ pkg syscall (darwin-amd64), const EAUTH Errno
 pkg syscall (darwin-amd64), const EBADARCH Errno
 pkg syscall (darwin-amd64), const EBADEXEC Errno
 pkg syscall (darwin-amd64), const EBADMACHO Errno
+pkg syscall (darwin-amd64), const EBADMSG Errno
 pkg syscall (darwin-amd64), const EBADRPC Errno
 pkg syscall (darwin-amd64), const ECHO ideal-int
 pkg syscall (darwin-amd64), const ECHOCTL ideal-int
@@ -9591,16 +9717,25 @@ pkg syscall (darwin-amd64), const ECHOPRT ideal-int
 pkg syscall (darwin-amd64), const EDEVERR Errno
 pkg syscall (darwin-amd64), const EFTYPE Errno
 pkg syscall (darwin-amd64), const ELAST Errno
+pkg syscall (darwin-amd64), const EMULTIHOP Errno
 pkg syscall (darwin-amd64), const ENEEDAUTH Errno
 pkg syscall (darwin-amd64), const ENOATTR Errno
+pkg syscall (darwin-amd64), const ENODATA Errno
+pkg syscall (darwin-amd64), const ENOLINK Errno
 pkg syscall (darwin-amd64), const ENOPOLICY Errno
+pkg syscall (darwin-amd64), const ENOSR Errno
+pkg syscall (darwin-amd64), const ENOSTR Errno
+pkg syscall (darwin-amd64), const ENOTRECOVERABLE Errno
+pkg syscall (darwin-amd64), const EOWNERDEAD Errno
 pkg syscall (darwin-amd64), const EPROCLIM Errno
 pkg syscall (darwin-amd64), const EPROCUNAVAIL Errno
 pkg syscall (darwin-amd64), const EPROGMISMATCH Errno
 pkg syscall (darwin-amd64), const EPROGUNAVAIL Errno
+pkg syscall (darwin-amd64), const EPROTO Errno
 pkg syscall (darwin-amd64), const EPWROFF Errno
 pkg syscall (darwin-amd64), const ERPCMISMATCH Errno
 pkg syscall (darwin-amd64), const ESHLIBVERS Errno
+pkg syscall (darwin-amd64), const ETIME Errno
 pkg syscall (darwin-amd64), const EVFILT_AIO ideal-int
 pkg syscall (darwin-amd64), const EVFILT_FS ideal-int
 pkg syscall (darwin-amd64), const EVFILT_MACHPORT ideal-int
@@ -10693,6 +10828,7 @@ pkg syscall (darwin-amd64), const S_IRWXU ideal-int
 pkg syscall (darwin-amd64), const S_ISTXT ideal-int
 pkg syscall (darwin-amd64), const S_IWGRP ideal-int
 pkg syscall (darwin-amd64), const S_IWOTH ideal-int
+pkg syscall (darwin-amd64), const S_IWRITE ideal-int
 pkg syscall (darwin-amd64), const S_IXGRP ideal-int
 pkg syscall (darwin-amd64), const S_IXOTH ideal-int
 pkg syscall (darwin-amd64), const SizeofBpfHdr ideal-int
@@ -10818,9 +10954,9 @@ pkg syscall (darwin-amd64), func BpfBuflen(int) (int, error)
 pkg syscall (darwin-amd64), func BpfDatalink(int) (int, error)
 pkg syscall (darwin-amd64), func BpfHeadercmpl(int) (int, error)
 pkg syscall (darwin-amd64), func BpfInterface(int, string) (string, error)
-pkg syscall (darwin-amd64), func BpfJump(int) *BpfInsn
+pkg syscall (darwin-amd64), func BpfJump(int, int, int, int) *BpfInsn
 pkg syscall (darwin-amd64), func BpfStats(int) (*BpfStat, error)
-pkg syscall (darwin-amd64), func BpfStmt(int) *BpfInsn
+pkg syscall (darwin-amd64), func BpfStmt(int, int) *BpfInsn
 pkg syscall (darwin-amd64), func BpfTimeout(int) (*Timeval, error)
 pkg syscall (darwin-amd64), func CheckBpfVersion(int) error
 pkg syscall (darwin-amd64), func Chflags(string, int) error
@@ -10846,7 +10982,7 @@ pkg syscall (darwin-amd64), func Fstatfs(int, *Statfs_t) error
 pkg syscall (darwin-amd64), func Fsync(int) error
 pkg syscall (darwin-amd64), func Ftruncate(int, int64) error
 pkg syscall (darwin-amd64), func Futimes(int, []Timeval) error
-pkg syscall (darwin-amd64), func Getdirentries(int, []byte, *uintptr) (int, error)
+pkg syscall (darwin-amd64), func Getdirentries(int, []uint8, *uintptr) (int, error)
 pkg syscall (darwin-amd64), func Getdtablesize() int
 pkg syscall (darwin-amd64), func Getfsstat([]Statfs_t, int) (int, error)
 pkg syscall (darwin-amd64), func Getpeername(int) (Sockaddr, error)
@@ -10857,58 +10993,56 @@ pkg syscall (darwin-amd64), func Getrlimit(int, *Rlimit) error
 pkg syscall (darwin-amd64), func Getrusage(int, *Rusage) error
 pkg syscall (darwin-amd64), func Getsid(int) (int, error)
 pkg syscall (darwin-amd64), func Getsockname(int) (Sockaddr, error)
-pkg syscall (darwin-amd64), func GetsockoptByte(int) (byte, error)
-pkg syscall (darwin-amd64), func GetsockoptIPMreq(int) (*IPMreq, error)
-pkg syscall (darwin-amd64), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
-pkg syscall (darwin-amd64), func GetsockoptInet4Addr(int) ([4]byte, error)
-pkg syscall (darwin-amd64), func GetsockoptInt(int) (int, error)
+pkg syscall (darwin-amd64), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (darwin-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (darwin-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (darwin-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (darwin-amd64), func GetsockoptInt(int, int, int) (int, error)
 pkg syscall (darwin-amd64), func Issetugid() bool
-pkg syscall (darwin-amd64), func Kevent(int, []Kevent_t, *Timespec) (int, error)
+pkg syscall (darwin-amd64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
 pkg syscall (darwin-amd64), func Kill(int, Signal) error
 pkg syscall (darwin-amd64), func Kqueue() (int, error)
-pkg syscall (darwin-amd64), func Link(string, string) error
 pkg syscall (darwin-amd64), func Listen(int, int) error
 pkg syscall (darwin-amd64), func Lstat(string, *Stat_t) error
 pkg syscall (darwin-amd64), func Mkfifo(string, uint32) error
 pkg syscall (darwin-amd64), func Mknod(string, uint32, int) error
-pkg syscall (darwin-amd64), func Mmap(int, int64, int, int, int) ([]byte, error)
-pkg syscall (darwin-amd64), func Munmap([]byte) error
+pkg syscall (darwin-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (darwin-amd64), func Munmap([]uint8) error
 pkg syscall (darwin-amd64), func NsecToTimespec(int64) Timespec
 pkg syscall (darwin-amd64), func Open(string, int, uint32) (int, error)
-pkg syscall (darwin-amd64), func ParseDirent([]byte, int, []string) (int, int, []string)
-pkg syscall (darwin-amd64), func ParseRoutingMessage([]byte) ([]RoutingMessage, error)
+pkg syscall (darwin-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (darwin-amd64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
 pkg syscall (darwin-amd64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (darwin-amd64), func ParseSocketControlMessage([]byte) ([]SocketControlMessage, error)
+pkg syscall (darwin-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
 pkg syscall (darwin-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error)
 pkg syscall (darwin-amd64), func Pathconf(string, int) (int, error)
 pkg syscall (darwin-amd64), func Pipe([]int) error
-pkg syscall (darwin-amd64), func Pread(int, []byte, int64) (int, error)
+pkg syscall (darwin-amd64), func Pread(int, []uint8, int64) (int, error)
 pkg syscall (darwin-amd64), func PtraceAttach(int) error
 pkg syscall (darwin-amd64), func PtraceDetach(int) error
-pkg syscall (darwin-amd64), func Pwrite(int, []byte, int64) (int, error)
-pkg syscall (darwin-amd64), func RawSyscall(uintptr) (uintptr, Errno)
-pkg syscall (darwin-amd64), func RawSyscall6(uintptr) (uintptr, Errno)
-pkg syscall (darwin-amd64), func Read(int, []byte) (int, error)
-pkg syscall (darwin-amd64), func ReadDirent(int, []byte) (int, error)
-pkg syscall (darwin-amd64), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
-pkg syscall (darwin-amd64), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
-pkg syscall (darwin-amd64), func Rename(string, string) error
+pkg syscall (darwin-amd64), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (darwin-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-amd64), func Read(int, []uint8) (int, error)
+pkg syscall (darwin-amd64), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (darwin-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (darwin-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
 pkg syscall (darwin-amd64), func Revoke(string) error
-pkg syscall (darwin-amd64), func RouteRIB(int) ([]byte, error)
+pkg syscall (darwin-amd64), func RouteRIB(int, int) ([]uint8, error)
 pkg syscall (darwin-amd64), func Seek(int, int64, int) (int64, error)
 pkg syscall (darwin-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
 pkg syscall (darwin-amd64), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (darwin-amd64), func Sendmsg(int, []byte, Sockaddr, int) error
-pkg syscall (darwin-amd64), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (darwin-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (darwin-amd64), func Sendto(int, []uint8, int, Sockaddr) error
 pkg syscall (darwin-amd64), func SetBpf(int, []BpfInsn) error
-pkg syscall (darwin-amd64), func SetBpfBuflen(int) (int, error)
-pkg syscall (darwin-amd64), func SetBpfDatalink(int) (int, error)
-pkg syscall (darwin-amd64), func SetBpfHeadercmpl(int) error
-pkg syscall (darwin-amd64), func SetBpfImmediate(int) error
+pkg syscall (darwin-amd64), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (darwin-amd64), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (darwin-amd64), func SetBpfHeadercmpl(int, int) error
+pkg syscall (darwin-amd64), func SetBpfImmediate(int, int) error
 pkg syscall (darwin-amd64), func SetBpfInterface(int, string) error
-pkg syscall (darwin-amd64), func SetBpfPromisc(int) error
+pkg syscall (darwin-amd64), func SetBpfPromisc(int, int) error
 pkg syscall (darwin-amd64), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (darwin-amd64), func SetKevent(*Kevent_t, int)
+pkg syscall (darwin-amd64), func SetKevent(*Kevent_t, int, int, int)
 pkg syscall (darwin-amd64), func SetNonblock(int, bool) error
 pkg syscall (darwin-amd64), func Setegid(int) error
 pkg syscall (darwin-amd64), func Seteuid(int) error
@@ -10922,24 +11056,25 @@ pkg syscall (darwin-amd64), func Setregid(int, int) error
 pkg syscall (darwin-amd64), func Setreuid(int, int) error
 pkg syscall (darwin-amd64), func Setrlimit(int, *Rlimit) error
 pkg syscall (darwin-amd64), func Setsid() (int, error)
-pkg syscall (darwin-amd64), func SetsockoptByte(int, byte) error
-pkg syscall (darwin-amd64), func SetsockoptIPMreq(int, *IPMreq) error
-pkg syscall (darwin-amd64), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
-pkg syscall (darwin-amd64), func SetsockoptInet4Addr(int, [4]byte) error
-pkg syscall (darwin-amd64), func SetsockoptInt(int, int) error
-pkg syscall (darwin-amd64), func SetsockoptLinger(int, *Linger) error
-pkg syscall (darwin-amd64), func SetsockoptString(int, string) error
-pkg syscall (darwin-amd64), func SetsockoptTimeval(int, *Timeval) error
+pkg syscall (darwin-amd64), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (darwin-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (darwin-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (darwin-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (darwin-amd64), func SetsockoptInt(int, int, int, int) error
+pkg syscall (darwin-amd64), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (darwin-amd64), func SetsockoptString(int, int, int, string) error
+pkg syscall (darwin-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error
 pkg syscall (darwin-amd64), func Settimeofday(*Timeval) error
 pkg syscall (darwin-amd64), func Setuid(int) error
 pkg syscall (darwin-amd64), func Shutdown(int, int) error
-pkg syscall (darwin-amd64), func Socket(int) (int, error)
-pkg syscall (darwin-amd64), func Socketpair(int) ([2]int, error)
+pkg syscall (darwin-amd64), func Socket(int, int, int) (int, error)
+pkg syscall (darwin-amd64), func Socketpair(int, int, int) ([2]int, error)
 pkg syscall (darwin-amd64), func Stat(string, *Stat_t) error
 pkg syscall (darwin-amd64), func Statfs(string, *Statfs_t) error
-pkg syscall (darwin-amd64), func StringSlicePtr([]string) []*byte
-pkg syscall (darwin-amd64), func Symlink(string, string) error
+pkg syscall (darwin-amd64), func StringSlicePtr([]string) []*uint8
 pkg syscall (darwin-amd64), func Sync() error
+pkg syscall (darwin-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
 pkg syscall (darwin-amd64), func Sysctl(string) (string, error)
 pkg syscall (darwin-amd64), func SysctlUint32(string) (uint32, error)
 pkg syscall (darwin-amd64), func TimespecToNsec(Timespec) int64
@@ -10947,10 +11082,10 @@ pkg syscall (darwin-amd64), func TimevalToNsec(Timeval) int64
 pkg syscall (darwin-amd64), func Truncate(string, int64) error
 pkg syscall (darwin-amd64), func Umask(int) int
 pkg syscall (darwin-amd64), func Undelete(string) error
-pkg syscall (darwin-amd64), func UnixRights(...int) []byte
+pkg syscall (darwin-amd64), func UnixRights(...int) []uint8
 pkg syscall (darwin-amd64), func Unmount(string, int) error
 pkg syscall (darwin-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (darwin-amd64), func Write(int, []byte) (int, error)
+pkg syscall (darwin-amd64), func Write(int, []uint8) (int, error)
 pkg syscall (darwin-amd64), method (*Cmsghdr) SetLen(int)
 pkg syscall (darwin-amd64), method (*Iovec) SetLen(int)
 pkg syscall (darwin-amd64), method (*Msghdr) SetControllen(int)
@@ -10958,7 +11093,7 @@ pkg syscall (darwin-amd64), type BpfHdr struct
 pkg syscall (darwin-amd64), type BpfHdr struct, Caplen uint32
 pkg syscall (darwin-amd64), type BpfHdr struct, Datalen uint32
 pkg syscall (darwin-amd64), type BpfHdr struct, Hdrlen uint16
-pkg syscall (darwin-amd64), type BpfHdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64), type BpfHdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64), type BpfHdr struct, Tstamp Timeval32
 pkg syscall (darwin-amd64), type BpfInsn struct
 pkg syscall (darwin-amd64), type BpfInsn struct, Code uint16
@@ -10968,7 +11103,7 @@ pkg syscall (darwin-amd64), type BpfInsn struct, K uint32
 pkg syscall (darwin-amd64), type BpfProgram struct
 pkg syscall (darwin-amd64), type BpfProgram struct, Insns *BpfInsn
 pkg syscall (darwin-amd64), type BpfProgram struct, Len uint32
-pkg syscall (darwin-amd64), type BpfProgram struct, Pad_cgo_0 [4]byte
+pkg syscall (darwin-amd64), type BpfProgram struct, Pad_cgo_0 [4]uint8
 pkg syscall (darwin-amd64), type BpfStat struct
 pkg syscall (darwin-amd64), type BpfStat struct, Drop uint32
 pkg syscall (darwin-amd64), type BpfStat struct, Recv uint32
@@ -10987,12 +11122,12 @@ pkg syscall (darwin-amd64), type Dirent struct
 pkg syscall (darwin-amd64), type Dirent struct, Ino uint64
 pkg syscall (darwin-amd64), type Dirent struct, Name [1024]int8
 pkg syscall (darwin-amd64), type Dirent struct, Namlen uint16
-pkg syscall (darwin-amd64), type Dirent struct, Pad_cgo_0 [3]byte
+pkg syscall (darwin-amd64), type Dirent struct, Pad_cgo_0 [3]uint8
 pkg syscall (darwin-amd64), type Dirent struct, Reclen uint16
 pkg syscall (darwin-amd64), type Dirent struct, Seekoff uint64
 pkg syscall (darwin-amd64), type Dirent struct, Type uint8
 pkg syscall (darwin-amd64), type Fbootstraptransfer_t struct
-pkg syscall (darwin-amd64), type Fbootstraptransfer_t struct, Buffer *byte
+pkg syscall (darwin-amd64), type Fbootstraptransfer_t struct, Buffer *uint8
 pkg syscall (darwin-amd64), type Fbootstraptransfer_t struct, Length uint64
 pkg syscall (darwin-amd64), type Fbootstraptransfer_t struct, Offset int64
 pkg syscall (darwin-amd64), type FdSet struct
@@ -11047,7 +11182,7 @@ pkg syscall (darwin-amd64), type IfMsghdr struct, Data IfData
 pkg syscall (darwin-amd64), type IfMsghdr struct, Flags int32
 pkg syscall (darwin-amd64), type IfMsghdr struct, Index uint16
 pkg syscall (darwin-amd64), type IfMsghdr struct, Msglen uint16
-pkg syscall (darwin-amd64), type IfMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64), type IfMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64), type IfMsghdr struct, Type uint8
 pkg syscall (darwin-amd64), type IfMsghdr struct, Version uint8
 pkg syscall (darwin-amd64), type IfaMsghdr struct
@@ -11056,7 +11191,7 @@ pkg syscall (darwin-amd64), type IfaMsghdr struct, Flags int32
 pkg syscall (darwin-amd64), type IfaMsghdr struct, Index uint16
 pkg syscall (darwin-amd64), type IfaMsghdr struct, Metric int32
 pkg syscall (darwin-amd64), type IfaMsghdr struct, Msglen uint16
-pkg syscall (darwin-amd64), type IfaMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64), type IfaMsghdr struct, Type uint8
 pkg syscall (darwin-amd64), type IfaMsghdr struct, Version uint8
 pkg syscall (darwin-amd64), type IfmaMsghdr struct
@@ -11064,7 +11199,7 @@ pkg syscall (darwin-amd64), type IfmaMsghdr struct, Addrs int32
 pkg syscall (darwin-amd64), type IfmaMsghdr struct, Flags int32
 pkg syscall (darwin-amd64), type IfmaMsghdr struct, Index uint16
 pkg syscall (darwin-amd64), type IfmaMsghdr struct, Msglen uint16
-pkg syscall (darwin-amd64), type IfmaMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64), type IfmaMsghdr struct, Type uint8
 pkg syscall (darwin-amd64), type IfmaMsghdr struct, Version uint8
 pkg syscall (darwin-amd64), type IfmaMsghdr2 struct
@@ -11072,24 +11207,24 @@ pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Addrs int32
 pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Flags int32
 pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Index uint16
 pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Msglen uint16
-pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Refcount int32
 pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Type uint8
 pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Version uint8
 pkg syscall (darwin-amd64), type Inet6Pktinfo struct
-pkg syscall (darwin-amd64), type Inet6Pktinfo struct, Addr [16]byte
+pkg syscall (darwin-amd64), type Inet6Pktinfo struct, Addr [16]uint8
 pkg syscall (darwin-amd64), type Inet6Pktinfo struct, Ifindex uint32
 pkg syscall (darwin-amd64), type InterfaceAddrMessage struct
-pkg syscall (darwin-amd64), type InterfaceAddrMessage struct, Data []byte
+pkg syscall (darwin-amd64), type InterfaceAddrMessage struct, Data []uint8
 pkg syscall (darwin-amd64), type InterfaceAddrMessage struct, Header IfaMsghdr
 pkg syscall (darwin-amd64), type InterfaceMessage struct
-pkg syscall (darwin-amd64), type InterfaceMessage struct, Data []byte
+pkg syscall (darwin-amd64), type InterfaceMessage struct, Data []uint8
 pkg syscall (darwin-amd64), type InterfaceMessage struct, Header IfMsghdr
 pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage struct
-pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage struct, Data []byte
+pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage struct, Data []uint8
 pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2
 pkg syscall (darwin-amd64), type Iovec struct
-pkg syscall (darwin-amd64), type Iovec struct, Base *byte
+pkg syscall (darwin-amd64), type Iovec struct, Base *uint8
 pkg syscall (darwin-amd64), type Iovec struct, Len uint64
 pkg syscall (darwin-amd64), type Kevent_t struct
 pkg syscall (darwin-amd64), type Kevent_t struct, Data int64
@@ -11097,25 +11232,26 @@ pkg syscall (darwin-amd64), type Kevent_t struct, Fflags uint32
 pkg syscall (darwin-amd64), type Kevent_t struct, Filter int16
 pkg syscall (darwin-amd64), type Kevent_t struct, Flags uint16
 pkg syscall (darwin-amd64), type Kevent_t struct, Ident uint64
-pkg syscall (darwin-amd64), type Kevent_t struct, Udata *byte
+pkg syscall (darwin-amd64), type Kevent_t struct, Udata *uint8
 pkg syscall (darwin-amd64), type Log2phys_t struct
 pkg syscall (darwin-amd64), type Log2phys_t struct, Contigbytes int64
 pkg syscall (darwin-amd64), type Log2phys_t struct, Devoffset int64
 pkg syscall (darwin-amd64), type Log2phys_t struct, Flags uint32
 pkg syscall (darwin-amd64), type Msghdr struct
-pkg syscall (darwin-amd64), type Msghdr struct, Control *byte
+pkg syscall (darwin-amd64), type Msghdr struct, Control *uint8
 pkg syscall (darwin-amd64), type Msghdr struct, Controllen uint32
 pkg syscall (darwin-amd64), type Msghdr struct, Flags int32
 pkg syscall (darwin-amd64), type Msghdr struct, Iov *Iovec
 pkg syscall (darwin-amd64), type Msghdr struct, Iovlen int32
-pkg syscall (darwin-amd64), type Msghdr struct, Name *byte
+pkg syscall (darwin-amd64), type Msghdr struct, Name *uint8
 pkg syscall (darwin-amd64), type Msghdr struct, Namelen uint32
-pkg syscall (darwin-amd64), type Msghdr struct, Pad_cgo_0 [4]byte
-pkg syscall (darwin-amd64), type Msghdr struct, Pad_cgo_1 [4]byte
+pkg syscall (darwin-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8
+pkg syscall (darwin-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8
 pkg syscall (darwin-amd64), type Radvisory_t struct
 pkg syscall (darwin-amd64), type Radvisory_t struct, Count int32
 pkg syscall (darwin-amd64), type Radvisory_t struct, Offset int64
-pkg syscall (darwin-amd64), type Radvisory_t struct, Pad_cgo_0 [4]byte
+pkg syscall (darwin-amd64), type Radvisory_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (darwin-amd64), type RawSockaddr struct, Data [14]int8
 pkg syscall (darwin-amd64), type RawSockaddr struct, Family uint8
 pkg syscall (darwin-amd64), type RawSockaddr struct, Len uint8
 pkg syscall (darwin-amd64), type RawSockaddrAny struct, Pad [92]int8
@@ -11132,7 +11268,7 @@ pkg syscall (darwin-amd64), type RawSockaddrInet4 struct, Family uint8
 pkg syscall (darwin-amd64), type RawSockaddrInet4 struct, Len uint8
 pkg syscall (darwin-amd64), type RawSockaddrInet4 struct, Zero [8]int8
 pkg syscall (darwin-amd64), type RawSockaddrInet6 struct
-pkg syscall (darwin-amd64), type RawSockaddrInet6 struct, Addr [16]byte
+pkg syscall (darwin-amd64), type RawSockaddrInet6 struct, Addr [16]uint8
 pkg syscall (darwin-amd64), type RawSockaddrInet6 struct, Family uint8
 pkg syscall (darwin-amd64), type RawSockaddrInet6 struct, Flowinfo uint32
 pkg syscall (darwin-amd64), type RawSockaddrInet6 struct, Len uint8
@@ -11146,9 +11282,9 @@ pkg syscall (darwin-amd64), type Rlimit struct
 pkg syscall (darwin-amd64), type Rlimit struct, Cur uint64
 pkg syscall (darwin-amd64), type Rlimit struct, Max uint64
 pkg syscall (darwin-amd64), type RouteMessage struct
-pkg syscall (darwin-amd64), type RouteMessage struct, Data []byte
+pkg syscall (darwin-amd64), type RouteMessage struct, Data []uint8
 pkg syscall (darwin-amd64), type RouteMessage struct, Header RtMsghdr
-pkg syscall (darwin-amd64), type RoutingMessage interface {}
+pkg syscall (darwin-amd64), type RoutingMessage interface, unexported methods
 pkg syscall (darwin-amd64), type RtMetrics struct
 pkg syscall (darwin-amd64), type RtMetrics struct, Expire int32
 pkg syscall (darwin-amd64), type RtMetrics struct, Filler [4]uint32
@@ -11168,7 +11304,7 @@ pkg syscall (darwin-amd64), type RtMsghdr struct, Flags int32
 pkg syscall (darwin-amd64), type RtMsghdr struct, Index uint16
 pkg syscall (darwin-amd64), type RtMsghdr struct, Inits uint32
 pkg syscall (darwin-amd64), type RtMsghdr struct, Msglen uint16
-pkg syscall (darwin-amd64), type RtMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64), type RtMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64), type RtMsghdr struct, Pid int32
 pkg syscall (darwin-amd64), type RtMsghdr struct, Rmx RtMetrics
 pkg syscall (darwin-amd64), type RtMsghdr struct, Seq int32
@@ -11201,7 +11337,7 @@ pkg syscall (darwin-amd64), type SockaddrDatalink struct, Nlen uint8
 pkg syscall (darwin-amd64), type SockaddrDatalink struct, Slen uint8
 pkg syscall (darwin-amd64), type SockaddrDatalink struct, Type uint8
 pkg syscall (darwin-amd64), type SocketControlMessage struct
-pkg syscall (darwin-amd64), type SocketControlMessage struct, Data []byte
+pkg syscall (darwin-amd64), type SocketControlMessage struct, Data []uint8
 pkg syscall (darwin-amd64), type SocketControlMessage struct, Header Cmsghdr
 pkg syscall (darwin-amd64), type Stat_t struct
 pkg syscall (darwin-amd64), type Stat_t struct, Atimespec Timespec
@@ -11218,7 +11354,7 @@ pkg syscall (darwin-amd64), type Stat_t struct, Lspare int32
 pkg syscall (darwin-amd64), type Stat_t struct, Mode uint16
 pkg syscall (darwin-amd64), type Stat_t struct, Mtimespec Timespec
 pkg syscall (darwin-amd64), type Stat_t struct, Nlink uint16
-pkg syscall (darwin-amd64), type Stat_t struct, Pad_cgo_0 [4]byte
+pkg syscall (darwin-amd64), type Stat_t struct, Pad_cgo_0 [4]uint8
 pkg syscall (darwin-amd64), type Stat_t struct, Qspare [2]int64
 pkg syscall (darwin-amd64), type Stat_t struct, Rdev int32
 pkg syscall (darwin-amd64), type Stat_t struct, Size int64
@@ -11249,7 +11385,7 @@ pkg syscall (darwin-amd64), type SysProcAttr struct, Setpgid bool
 pkg syscall (darwin-amd64), type SysProcAttr struct, Setsid bool
 pkg syscall (darwin-amd64), type Timespec struct, Nsec int64
 pkg syscall (darwin-amd64), type Timespec struct, Sec int64
-pkg syscall (darwin-amd64), type Timeval struct, Pad_cgo_0 [4]byte
+pkg syscall (darwin-amd64), type Timeval struct, Pad_cgo_0 [4]uint8
 pkg syscall (darwin-amd64), type Timeval struct, Sec int64
 pkg syscall (darwin-amd64), type Timeval struct, Usec int32
 pkg syscall (darwin-amd64), type Timeval32 struct
@@ -11398,6 +11534,7 @@ pkg syscall (darwin-amd64-cgo), const EAUTH Errno
 pkg syscall (darwin-amd64-cgo), const EBADARCH Errno
 pkg syscall (darwin-amd64-cgo), const EBADEXEC Errno
 pkg syscall (darwin-amd64-cgo), const EBADMACHO Errno
+pkg syscall (darwin-amd64-cgo), const EBADMSG Errno
 pkg syscall (darwin-amd64-cgo), const EBADRPC Errno
 pkg syscall (darwin-amd64-cgo), const ECHO ideal-int
 pkg syscall (darwin-amd64-cgo), const ECHOCTL ideal-int
@@ -11409,16 +11546,25 @@ pkg syscall (darwin-amd64-cgo), const ECHOPRT ideal-int
 pkg syscall (darwin-amd64-cgo), const EDEVERR Errno
 pkg syscall (darwin-amd64-cgo), const EFTYPE Errno
 pkg syscall (darwin-amd64-cgo), const ELAST Errno
+pkg syscall (darwin-amd64-cgo), const EMULTIHOP Errno
 pkg syscall (darwin-amd64-cgo), const ENEEDAUTH Errno
 pkg syscall (darwin-amd64-cgo), const ENOATTR Errno
+pkg syscall (darwin-amd64-cgo), const ENODATA Errno
+pkg syscall (darwin-amd64-cgo), const ENOLINK Errno
 pkg syscall (darwin-amd64-cgo), const ENOPOLICY Errno
+pkg syscall (darwin-amd64-cgo), const ENOSR Errno
+pkg syscall (darwin-amd64-cgo), const ENOSTR Errno
+pkg syscall (darwin-amd64-cgo), const ENOTRECOVERABLE Errno
+pkg syscall (darwin-amd64-cgo), const EOWNERDEAD Errno
 pkg syscall (darwin-amd64-cgo), const EPROCLIM Errno
 pkg syscall (darwin-amd64-cgo), const EPROCUNAVAIL Errno
 pkg syscall (darwin-amd64-cgo), const EPROGMISMATCH Errno
 pkg syscall (darwin-amd64-cgo), const EPROGUNAVAIL Errno
+pkg syscall (darwin-amd64-cgo), const EPROTO Errno
 pkg syscall (darwin-amd64-cgo), const EPWROFF Errno
 pkg syscall (darwin-amd64-cgo), const ERPCMISMATCH Errno
 pkg syscall (darwin-amd64-cgo), const ESHLIBVERS Errno
+pkg syscall (darwin-amd64-cgo), const ETIME Errno
 pkg syscall (darwin-amd64-cgo), const EVFILT_AIO ideal-int
 pkg syscall (darwin-amd64-cgo), const EVFILT_FS ideal-int
 pkg syscall (darwin-amd64-cgo), const EVFILT_MACHPORT ideal-int
@@ -12511,6 +12657,7 @@ pkg syscall (darwin-amd64-cgo), const S_IRWXU ideal-int
 pkg syscall (darwin-amd64-cgo), const S_ISTXT ideal-int
 pkg syscall (darwin-amd64-cgo), const S_IWGRP ideal-int
 pkg syscall (darwin-amd64-cgo), const S_IWOTH ideal-int
+pkg syscall (darwin-amd64-cgo), const S_IWRITE ideal-int
 pkg syscall (darwin-amd64-cgo), const S_IXGRP ideal-int
 pkg syscall (darwin-amd64-cgo), const S_IXOTH ideal-int
 pkg syscall (darwin-amd64-cgo), const SizeofBpfHdr ideal-int
@@ -12636,9 +12783,9 @@ pkg syscall (darwin-amd64-cgo), func BpfBuflen(int) (int, error)
 pkg syscall (darwin-amd64-cgo), func BpfDatalink(int) (int, error)
 pkg syscall (darwin-amd64-cgo), func BpfHeadercmpl(int) (int, error)
 pkg syscall (darwin-amd64-cgo), func BpfInterface(int, string) (string, error)
-pkg syscall (darwin-amd64-cgo), func BpfJump(int) *BpfInsn
+pkg syscall (darwin-amd64-cgo), func BpfJump(int, int, int, int) *BpfInsn
 pkg syscall (darwin-amd64-cgo), func BpfStats(int) (*BpfStat, error)
-pkg syscall (darwin-amd64-cgo), func BpfStmt(int) *BpfInsn
+pkg syscall (darwin-amd64-cgo), func BpfStmt(int, int) *BpfInsn
 pkg syscall (darwin-amd64-cgo), func BpfTimeout(int) (*Timeval, error)
 pkg syscall (darwin-amd64-cgo), func CheckBpfVersion(int) error
 pkg syscall (darwin-amd64-cgo), func Chflags(string, int) error
@@ -12664,7 +12811,7 @@ pkg syscall (darwin-amd64-cgo), func Fstatfs(int, *Statfs_t) error
 pkg syscall (darwin-amd64-cgo), func Fsync(int) error
 pkg syscall (darwin-amd64-cgo), func Ftruncate(int, int64) error
 pkg syscall (darwin-amd64-cgo), func Futimes(int, []Timeval) error
-pkg syscall (darwin-amd64-cgo), func Getdirentries(int, []byte, *uintptr) (int, error)
+pkg syscall (darwin-amd64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
 pkg syscall (darwin-amd64-cgo), func Getdtablesize() int
 pkg syscall (darwin-amd64-cgo), func Getfsstat([]Statfs_t, int) (int, error)
 pkg syscall (darwin-amd64-cgo), func Getpeername(int) (Sockaddr, error)
@@ -12675,58 +12822,56 @@ pkg syscall (darwin-amd64-cgo), func Getrlimit(int, *Rlimit) error
 pkg syscall (darwin-amd64-cgo), func Getrusage(int, *Rusage) error
 pkg syscall (darwin-amd64-cgo), func Getsid(int) (int, error)
 pkg syscall (darwin-amd64-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (darwin-amd64-cgo), func GetsockoptByte(int) (byte, error)
-pkg syscall (darwin-amd64-cgo), func GetsockoptIPMreq(int) (*IPMreq, error)
-pkg syscall (darwin-amd64-cgo), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
-pkg syscall (darwin-amd64-cgo), func GetsockoptInet4Addr(int) ([4]byte, error)
-pkg syscall (darwin-amd64-cgo), func GetsockoptInt(int) (int, error)
+pkg syscall (darwin-amd64-cgo), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (darwin-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (darwin-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (darwin-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (darwin-amd64-cgo), func GetsockoptInt(int, int, int) (int, error)
 pkg syscall (darwin-amd64-cgo), func Issetugid() bool
-pkg syscall (darwin-amd64-cgo), func Kevent(int, []Kevent_t, *Timespec) (int, error)
+pkg syscall (darwin-amd64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
 pkg syscall (darwin-amd64-cgo), func Kill(int, Signal) error
 pkg syscall (darwin-amd64-cgo), func Kqueue() (int, error)
-pkg syscall (darwin-amd64-cgo), func Link(string, string) error
 pkg syscall (darwin-amd64-cgo), func Listen(int, int) error
 pkg syscall (darwin-amd64-cgo), func Lstat(string, *Stat_t) error
 pkg syscall (darwin-amd64-cgo), func Mkfifo(string, uint32) error
 pkg syscall (darwin-amd64-cgo), func Mknod(string, uint32, int) error
-pkg syscall (darwin-amd64-cgo), func Mmap(int, int64, int, int, int) ([]byte, error)
-pkg syscall (darwin-amd64-cgo), func Munmap([]byte) error
+pkg syscall (darwin-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (darwin-amd64-cgo), func Munmap([]uint8) error
 pkg syscall (darwin-amd64-cgo), func NsecToTimespec(int64) Timespec
 pkg syscall (darwin-amd64-cgo), func Open(string, int, uint32) (int, error)
-pkg syscall (darwin-amd64-cgo), func ParseDirent([]byte, int, []string) (int, int, []string)
-pkg syscall (darwin-amd64-cgo), func ParseRoutingMessage([]byte) ([]RoutingMessage, error)
+pkg syscall (darwin-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (darwin-amd64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
 pkg syscall (darwin-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
-pkg syscall (darwin-amd64-cgo), func ParseSocketControlMessage([]byte) ([]SocketControlMessage, error)
+pkg syscall (darwin-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
 pkg syscall (darwin-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
 pkg syscall (darwin-amd64-cgo), func Pathconf(string, int) (int, error)
 pkg syscall (darwin-amd64-cgo), func Pipe([]int) error
-pkg syscall (darwin-amd64-cgo), func Pread(int, []byte, int64) (int, error)
+pkg syscall (darwin-amd64-cgo), func Pread(int, []uint8, int64) (int, error)
 pkg syscall (darwin-amd64-cgo), func PtraceAttach(int) error
 pkg syscall (darwin-amd64-cgo), func PtraceDetach(int) error
-pkg syscall (darwin-amd64-cgo), func Pwrite(int, []byte, int64) (int, error)
-pkg syscall (darwin-amd64-cgo), func RawSyscall(uintptr) (uintptr, Errno)
-pkg syscall (darwin-amd64-cgo), func RawSyscall6(uintptr) (uintptr, Errno)
-pkg syscall (darwin-amd64-cgo), func Read(int, []byte) (int, error)
-pkg syscall (darwin-amd64-cgo), func ReadDirent(int, []byte) (int, error)
-pkg syscall (darwin-amd64-cgo), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
-pkg syscall (darwin-amd64-cgo), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
-pkg syscall (darwin-amd64-cgo), func Rename(string, string) error
+pkg syscall (darwin-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (darwin-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-amd64-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (darwin-amd64-cgo), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (darwin-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (darwin-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
 pkg syscall (darwin-amd64-cgo), func Revoke(string) error
-pkg syscall (darwin-amd64-cgo), func RouteRIB(int) ([]byte, error)
+pkg syscall (darwin-amd64-cgo), func RouteRIB(int, int) ([]uint8, error)
 pkg syscall (darwin-amd64-cgo), func Seek(int, int64, int) (int64, error)
 pkg syscall (darwin-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
 pkg syscall (darwin-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (darwin-amd64-cgo), func Sendmsg(int, []byte, Sockaddr, int) error
-pkg syscall (darwin-amd64-cgo), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (darwin-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (darwin-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error
 pkg syscall (darwin-amd64-cgo), func SetBpf(int, []BpfInsn) error
-pkg syscall (darwin-amd64-cgo), func SetBpfBuflen(int) (int, error)
-pkg syscall (darwin-amd64-cgo), func SetBpfDatalink(int) (int, error)
-pkg syscall (darwin-amd64-cgo), func SetBpfHeadercmpl(int) error
-pkg syscall (darwin-amd64-cgo), func SetBpfImmediate(int) error
+pkg syscall (darwin-amd64-cgo), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (darwin-amd64-cgo), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (darwin-amd64-cgo), func SetBpfHeadercmpl(int, int) error
+pkg syscall (darwin-amd64-cgo), func SetBpfImmediate(int, int) error
 pkg syscall (darwin-amd64-cgo), func SetBpfInterface(int, string) error
-pkg syscall (darwin-amd64-cgo), func SetBpfPromisc(int) error
+pkg syscall (darwin-amd64-cgo), func SetBpfPromisc(int, int) error
 pkg syscall (darwin-amd64-cgo), func SetBpfTimeout(int, *Timeval) error
-pkg syscall (darwin-amd64-cgo), func SetKevent(*Kevent_t, int)
+pkg syscall (darwin-amd64-cgo), func SetKevent(*Kevent_t, int, int, int)
 pkg syscall (darwin-amd64-cgo), func SetNonblock(int, bool) error
 pkg syscall (darwin-amd64-cgo), func Setegid(int) error
 pkg syscall (darwin-amd64-cgo), func Seteuid(int) error
@@ -12740,24 +12885,25 @@ pkg syscall (darwin-amd64-cgo), func Setregid(int, int) error
 pkg syscall (darwin-amd64-cgo), func Setreuid(int, int) error
 pkg syscall (darwin-amd64-cgo), func Setrlimit(int, *Rlimit) error
 pkg syscall (darwin-amd64-cgo), func Setsid() (int, error)
-pkg syscall (darwin-amd64-cgo), func SetsockoptByte(int, byte) error
-pkg syscall (darwin-amd64-cgo), func SetsockoptIPMreq(int, *IPMreq) error
-pkg syscall (darwin-amd64-cgo), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
-pkg syscall (darwin-amd64-cgo), func SetsockoptInet4Addr(int, [4]byte) error
-pkg syscall (darwin-amd64-cgo), func SetsockoptInt(int, int) error
-pkg syscall (darwin-amd64-cgo), func SetsockoptLinger(int, *Linger) error
-pkg syscall (darwin-amd64-cgo), func SetsockoptString(int, string) error
-pkg syscall (darwin-amd64-cgo), func SetsockoptTimeval(int, *Timeval) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
 pkg syscall (darwin-amd64-cgo), func Settimeofday(*Timeval) error
 pkg syscall (darwin-amd64-cgo), func Setuid(int) error
 pkg syscall (darwin-amd64-cgo), func Shutdown(int, int) error
-pkg syscall (darwin-amd64-cgo), func Socket(int) (int, error)
-pkg syscall (darwin-amd64-cgo), func Socketpair(int) ([2]int, error)
+pkg syscall (darwin-amd64-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (darwin-amd64-cgo), func Socketpair(int, int, int) ([2]int, error)
 pkg syscall (darwin-amd64-cgo), func Stat(string, *Stat_t) error
 pkg syscall (darwin-amd64-cgo), func Statfs(string, *Statfs_t) error
-pkg syscall (darwin-amd64-cgo), func StringSlicePtr([]string) []*byte
-pkg syscall (darwin-amd64-cgo), func Symlink(string, string) error
+pkg syscall (darwin-amd64-cgo), func StringSlicePtr([]string) []*uint8
 pkg syscall (darwin-amd64-cgo), func Sync() error
+pkg syscall (darwin-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (darwin-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
 pkg syscall (darwin-amd64-cgo), func Sysctl(string) (string, error)
 pkg syscall (darwin-amd64-cgo), func SysctlUint32(string) (uint32, error)
 pkg syscall (darwin-amd64-cgo), func TimespecToNsec(Timespec) int64
@@ -12765,10 +12911,10 @@ pkg syscall (darwin-amd64-cgo), func TimevalToNsec(Timeval) int64
 pkg syscall (darwin-amd64-cgo), func Truncate(string, int64) error
 pkg syscall (darwin-amd64-cgo), func Umask(int) int
 pkg syscall (darwin-amd64-cgo), func Undelete(string) error
-pkg syscall (darwin-amd64-cgo), func UnixRights(...int) []byte
+pkg syscall (darwin-amd64-cgo), func UnixRights(...int) []uint8
 pkg syscall (darwin-amd64-cgo), func Unmount(string, int) error
 pkg syscall (darwin-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (darwin-amd64-cgo), func Write(int, []byte) (int, error)
+pkg syscall (darwin-amd64-cgo), func Write(int, []uint8) (int, error)
 pkg syscall (darwin-amd64-cgo), method (*Cmsghdr) SetLen(int)
 pkg syscall (darwin-amd64-cgo), method (*Iovec) SetLen(int)
 pkg syscall (darwin-amd64-cgo), method (*Msghdr) SetControllen(int)
@@ -12776,7 +12922,7 @@ pkg syscall (darwin-amd64-cgo), type BpfHdr struct
 pkg syscall (darwin-amd64-cgo), type BpfHdr struct, Caplen uint32
 pkg syscall (darwin-amd64-cgo), type BpfHdr struct, Datalen uint32
 pkg syscall (darwin-amd64-cgo), type BpfHdr struct, Hdrlen uint16
-pkg syscall (darwin-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64-cgo), type BpfHdr struct, Tstamp Timeval32
 pkg syscall (darwin-amd64-cgo), type BpfInsn struct
 pkg syscall (darwin-amd64-cgo), type BpfInsn struct, Code uint16
@@ -12786,7 +12932,7 @@ pkg syscall (darwin-amd64-cgo), type BpfInsn struct, K uint32
 pkg syscall (darwin-amd64-cgo), type BpfProgram struct
 pkg syscall (darwin-amd64-cgo), type BpfProgram struct, Insns *BpfInsn
 pkg syscall (darwin-amd64-cgo), type BpfProgram struct, Len uint32
-pkg syscall (darwin-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]byte
+pkg syscall (darwin-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8
 pkg syscall (darwin-amd64-cgo), type BpfStat struct
 pkg syscall (darwin-amd64-cgo), type BpfStat struct, Drop uint32
 pkg syscall (darwin-amd64-cgo), type BpfStat struct, Recv uint32
@@ -12805,12 +12951,12 @@ pkg syscall (darwin-amd64-cgo), type Dirent struct
 pkg syscall (darwin-amd64-cgo), type Dirent struct, Ino uint64
 pkg syscall (darwin-amd64-cgo), type Dirent struct, Name [1024]int8
 pkg syscall (darwin-amd64-cgo), type Dirent struct, Namlen uint16
-pkg syscall (darwin-amd64-cgo), type Dirent struct, Pad_cgo_0 [3]byte
+pkg syscall (darwin-amd64-cgo), type Dirent struct, Pad_cgo_0 [3]uint8
 pkg syscall (darwin-amd64-cgo), type Dirent struct, Reclen uint16
 pkg syscall (darwin-amd64-cgo), type Dirent struct, Seekoff uint64
 pkg syscall (darwin-amd64-cgo), type Dirent struct, Type uint8
 pkg syscall (darwin-amd64-cgo), type Fbootstraptransfer_t struct
-pkg syscall (darwin-amd64-cgo), type Fbootstraptransfer_t struct, Buffer *byte
+pkg syscall (darwin-amd64-cgo), type Fbootstraptransfer_t struct, Buffer *uint8
 pkg syscall (darwin-amd64-cgo), type Fbootstraptransfer_t struct, Length uint64
 pkg syscall (darwin-amd64-cgo), type Fbootstraptransfer_t struct, Offset int64
 pkg syscall (darwin-amd64-cgo), type FdSet struct
@@ -12865,7 +13011,7 @@ pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Data IfData
 pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Flags int32
 pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Index uint16
 pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Msglen uint16
-pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Type uint8
 pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Version uint8
 pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct
@@ -12874,7 +13020,7 @@ pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Flags int32
 pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Index uint16
 pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Metric int32
 pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Msglen uint16
-pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Type uint8
 pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Version uint8
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct
@@ -12882,7 +13028,7 @@ pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Addrs int32
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Flags int32
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Index uint16
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Msglen uint16
-pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Type uint8
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Version uint8
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct
@@ -12890,24 +13036,24 @@ pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Addrs int32
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Flags int32
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Index uint16
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Msglen uint16
-pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Refcount int32
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Type uint8
 pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Version uint8
 pkg syscall (darwin-amd64-cgo), type Inet6Pktinfo struct
-pkg syscall (darwin-amd64-cgo), type Inet6Pktinfo struct, Addr [16]byte
+pkg syscall (darwin-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8
 pkg syscall (darwin-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32
 pkg syscall (darwin-amd64-cgo), type InterfaceAddrMessage struct
-pkg syscall (darwin-amd64-cgo), type InterfaceAddrMessage struct, Data []byte
+pkg syscall (darwin-amd64-cgo), type InterfaceAddrMessage struct, Data []uint8
 pkg syscall (darwin-amd64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
 pkg syscall (darwin-amd64-cgo), type InterfaceMessage struct
-pkg syscall (darwin-amd64-cgo), type InterfaceMessage struct, Data []byte
+pkg syscall (darwin-amd64-cgo), type InterfaceMessage struct, Data []uint8
 pkg syscall (darwin-amd64-cgo), type InterfaceMessage struct, Header IfMsghdr
 pkg syscall (darwin-amd64-cgo), type InterfaceMulticastAddrMessage struct
-pkg syscall (darwin-amd64-cgo), type InterfaceMulticastAddrMessage struct, Data []byte
+pkg syscall (darwin-amd64-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8
 pkg syscall (darwin-amd64-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2
 pkg syscall (darwin-amd64-cgo), type Iovec struct
-pkg syscall (darwin-amd64-cgo), type Iovec struct, Base *byte
+pkg syscall (darwin-amd64-cgo), type Iovec struct, Base *uint8
 pkg syscall (darwin-amd64-cgo), type Iovec struct, Len uint64
 pkg syscall (darwin-amd64-cgo), type Kevent_t struct
 pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Data int64
@@ -12915,25 +13061,26 @@ pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Fflags uint32
 pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Filter int16
 pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Flags uint16
 pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Ident uint64
-pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Udata *byte
+pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Udata *uint8
 pkg syscall (darwin-amd64-cgo), type Log2phys_t struct
 pkg syscall (darwin-amd64-cgo), type Log2phys_t struct, Contigbytes int64
 pkg syscall (darwin-amd64-cgo), type Log2phys_t struct, Devoffset int64
 pkg syscall (darwin-amd64-cgo), type Log2phys_t struct, Flags uint32
 pkg syscall (darwin-amd64-cgo), type Msghdr struct
-pkg syscall (darwin-amd64-cgo), type Msghdr struct, Control *byte
+pkg syscall (darwin-amd64-cgo), type Msghdr struct, Control *uint8
 pkg syscall (darwin-amd64-cgo), type Msghdr struct, Controllen uint32
 pkg syscall (darwin-amd64-cgo), type Msghdr struct, Flags int32
 pkg syscall (darwin-amd64-cgo), type Msghdr struct, Iov *Iovec
 pkg syscall (darwin-amd64-cgo), type Msghdr struct, Iovlen int32
-pkg syscall (darwin-amd64-cgo), type Msghdr struct, Name *byte
+pkg syscall (darwin-amd64-cgo), type Msghdr struct, Name *uint8
 pkg syscall (darwin-amd64-cgo), type Msghdr struct, Namelen uint32
-pkg syscall (darwin-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]byte
-pkg syscall (darwin-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]byte
+pkg syscall (darwin-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8
+pkg syscall (darwin-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8
 pkg syscall (darwin-amd64-cgo), type Radvisory_t struct
 pkg syscall (darwin-amd64-cgo), type Radvisory_t struct, Count int32
 pkg syscall (darwin-amd64-cgo), type Radvisory_t struct, Offset int64
-pkg syscall (darwin-amd64-cgo), type Radvisory_t struct, Pad_cgo_0 [4]byte
+pkg syscall (darwin-amd64-cgo), type Radvisory_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (darwin-amd64-cgo), type RawSockaddr struct, Data [14]int8
 pkg syscall (darwin-amd64-cgo), type RawSockaddr struct, Family uint8
 pkg syscall (darwin-amd64-cgo), type RawSockaddr struct, Len uint8
 pkg syscall (darwin-amd64-cgo), type RawSockaddrAny struct, Pad [92]int8
@@ -12950,7 +13097,7 @@ pkg syscall (darwin-amd64-cgo), type RawSockaddrInet4 struct, Family uint8
 pkg syscall (darwin-amd64-cgo), type RawSockaddrInet4 struct, Len uint8
 pkg syscall (darwin-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]int8
 pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct
-pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct, Addr [16]byte
+pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct, Addr [16]uint8
 pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct, Family uint8
 pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct, Flowinfo uint32
 pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct, Len uint8
@@ -12964,9 +13111,9 @@ pkg syscall (darwin-amd64-cgo), type Rlimit struct
 pkg syscall (darwin-amd64-cgo), type Rlimit struct, Cur uint64
 pkg syscall (darwin-amd64-cgo), type Rlimit struct, Max uint64
 pkg syscall (darwin-amd64-cgo), type RouteMessage struct
-pkg syscall (darwin-amd64-cgo), type RouteMessage struct, Data []byte
+pkg syscall (darwin-amd64-cgo), type RouteMessage struct, Data []uint8
 pkg syscall (darwin-amd64-cgo), type RouteMessage struct, Header RtMsghdr
-pkg syscall (darwin-amd64-cgo), type RoutingMessage interface {}
+pkg syscall (darwin-amd64-cgo), type RoutingMessage interface, unexported methods
 pkg syscall (darwin-amd64-cgo), type RtMetrics struct
 pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Expire int32
 pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Filler [4]uint32
@@ -12986,7 +13133,7 @@ pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Flags int32
 pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Index uint16
 pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Inits uint32
 pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Msglen uint16
-pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]byte
+pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
 pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Pid int32
 pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Rmx RtMetrics
 pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Seq int32
@@ -13019,7 +13166,7 @@ pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct, Nlen uint8
 pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct, Slen uint8
 pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct, Type uint8
 pkg syscall (darwin-amd64-cgo), type SocketControlMessage struct
-pkg syscall (darwin-amd64-cgo), type SocketControlMessage struct, Data []byte
+pkg syscall (darwin-amd64-cgo), type SocketControlMessage struct, Data []uint8
 pkg syscall (darwin-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr
 pkg syscall (darwin-amd64-cgo), type Stat_t struct
 pkg syscall (darwin-amd64-cgo), type Stat_t struct, Atimespec Timespec
@@ -13036,7 +13183,7 @@ pkg syscall (darwin-amd64-cgo), type Stat_t struct, Lspare int32
 pkg syscall (darwin-amd64-cgo), type Stat_t struct, Mode uint16
 pkg syscall (darwin-amd64-cgo), type Stat_t struct, Mtimespec Timespec
 pkg syscall (darwin-amd64-cgo), type Stat_t struct, Nlink uint16
-pkg syscall (darwin-amd64-cgo), type Stat_t struct, Pad_cgo_0 [4]byte
+pkg syscall (darwin-amd64-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8
 pkg syscall (darwin-amd64-cgo), type Stat_t struct, Qspare [2]int64
 pkg syscall (darwin-amd64-cgo), type Stat_t struct, Rdev int32
 pkg syscall (darwin-amd64-cgo), type Stat_t struct, Size int64
@@ -13067,7 +13214,7 @@ pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Setpgid bool
 pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Setsid bool
 pkg syscall (darwin-amd64-cgo), type Timespec struct, Nsec int64
 pkg syscall (darwin-amd64-cgo), type Timespec struct, Sec int64
-pkg syscall (darwin-amd64-cgo), type Timeval struct, Pad_cgo_0 [4]byte
+pkg syscall (darwin-amd64-cgo), type Timeval struct, Pad_cgo_0 [4]uint8
 pkg syscall (darwin-amd64-cgo), type Timeval struct, Sec int64
 pkg syscall (darwin-amd64-cgo), type Timeval struct, Usec int32
 pkg syscall (darwin-amd64-cgo), type Timeval32 struct
@@ -13077,6 +13224,3960 @@ pkg syscall (darwin-amd64-cgo), type WaitStatus uint32
 pkg syscall (darwin-amd64-cgo), var Stderr int
 pkg syscall (darwin-amd64-cgo), var Stdin int
 pkg syscall (darwin-amd64-cgo), var Stdout int
+pkg syscall (freebsd-386), const AF_APPLETALK ideal-int
+pkg syscall (freebsd-386), const AF_ARP ideal-int
+pkg syscall (freebsd-386), const AF_ATM ideal-int
+pkg syscall (freebsd-386), const AF_BLUETOOTH ideal-int
+pkg syscall (freebsd-386), const AF_CCITT ideal-int
+pkg syscall (freebsd-386), const AF_CHAOS ideal-int
+pkg syscall (freebsd-386), const AF_CNT ideal-int
+pkg syscall (freebsd-386), const AF_COIP ideal-int
+pkg syscall (freebsd-386), const AF_DATAKIT ideal-int
+pkg syscall (freebsd-386), const AF_DECnet ideal-int
+pkg syscall (freebsd-386), const AF_DLI ideal-int
+pkg syscall (freebsd-386), const AF_E164 ideal-int
+pkg syscall (freebsd-386), const AF_ECMA ideal-int
+pkg syscall (freebsd-386), const AF_HYLINK ideal-int
+pkg syscall (freebsd-386), const AF_IEEE80211 ideal-int
+pkg syscall (freebsd-386), const AF_IMPLINK ideal-int
+pkg syscall (freebsd-386), const AF_IPX ideal-int
+pkg syscall (freebsd-386), const AF_ISDN ideal-int
+pkg syscall (freebsd-386), const AF_ISO ideal-int
+pkg syscall (freebsd-386), const AF_LAT ideal-int
+pkg syscall (freebsd-386), const AF_LINK ideal-int
+pkg syscall (freebsd-386), const AF_LOCAL ideal-int
+pkg syscall (freebsd-386), const AF_MAX ideal-int
+pkg syscall (freebsd-386), const AF_NATM ideal-int
+pkg syscall (freebsd-386), const AF_NETBIOS ideal-int
+pkg syscall (freebsd-386), const AF_NETGRAPH ideal-int
+pkg syscall (freebsd-386), const AF_OSI ideal-int
+pkg syscall (freebsd-386), const AF_PUP ideal-int
+pkg syscall (freebsd-386), const AF_ROUTE ideal-int
+pkg syscall (freebsd-386), const AF_SCLUSTER ideal-int
+pkg syscall (freebsd-386), const AF_SIP ideal-int
+pkg syscall (freebsd-386), const AF_SLOW ideal-int
+pkg syscall (freebsd-386), const AF_SNA ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR00 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR01 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR02 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR03 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR04 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR05 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR06 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR07 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR08 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR09 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR10 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR11 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR12 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR13 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR14 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR15 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR16 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR17 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR18 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR19 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR20 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR21 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR22 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR23 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR24 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR25 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR26 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR27 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR28 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR29 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR30 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR31 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR32 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR33 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR34 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR35 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR36 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR37 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR38 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR39 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR40 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR41 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR42 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR43 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR44 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR45 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR46 ideal-int
+pkg syscall (freebsd-386), const AF_VENDOR47 ideal-int
+pkg syscall (freebsd-386), const BIOCFEEDBACK ideal-int
+pkg syscall (freebsd-386), const BIOCFLUSH ideal-int
+pkg syscall (freebsd-386), const BIOCGBLEN ideal-int
+pkg syscall (freebsd-386), const BIOCGDIRECTION ideal-int
+pkg syscall (freebsd-386), const BIOCGDLT ideal-int
+pkg syscall (freebsd-386), const BIOCGDLTLIST ideal-int
+pkg syscall (freebsd-386), const BIOCGETBUFMODE ideal-int
+pkg syscall (freebsd-386), const BIOCGETIF ideal-int
+pkg syscall (freebsd-386), const BIOCGETZMAX ideal-int
+pkg syscall (freebsd-386), const BIOCGHDRCMPLT ideal-int
+pkg syscall (freebsd-386), const BIOCGRSIG ideal-int
+pkg syscall (freebsd-386), const BIOCGRTIMEOUT ideal-int
+pkg syscall (freebsd-386), const BIOCGSEESENT ideal-int
+pkg syscall (freebsd-386), const BIOCGSTATS ideal-int
+pkg syscall (freebsd-386), const BIOCIMMEDIATE ideal-int
+pkg syscall (freebsd-386), const BIOCLOCK ideal-int
+pkg syscall (freebsd-386), const BIOCPROMISC ideal-int
+pkg syscall (freebsd-386), const BIOCROTZBUF ideal-int
+pkg syscall (freebsd-386), const BIOCSBLEN ideal-int
+pkg syscall (freebsd-386), const BIOCSDIRECTION ideal-int
+pkg syscall (freebsd-386), const BIOCSDLT ideal-int
+pkg syscall (freebsd-386), const BIOCSETBUFMODE ideal-int
+pkg syscall (freebsd-386), const BIOCSETF ideal-int
+pkg syscall (freebsd-386), const BIOCSETFNR ideal-int
+pkg syscall (freebsd-386), const BIOCSETIF ideal-int
+pkg syscall (freebsd-386), const BIOCSETWF ideal-int
+pkg syscall (freebsd-386), const BIOCSETZBUF ideal-int
+pkg syscall (freebsd-386), const BIOCSHDRCMPLT ideal-int
+pkg syscall (freebsd-386), const BIOCSRSIG ideal-int
+pkg syscall (freebsd-386), const BIOCSRTIMEOUT ideal-int
+pkg syscall (freebsd-386), const BIOCSSEESENT ideal-int
+pkg syscall (freebsd-386), const BIOCVERSION ideal-int
+pkg syscall (freebsd-386), const BPF_A ideal-int
+pkg syscall (freebsd-386), const BPF_ABS ideal-int
+pkg syscall (freebsd-386), const BPF_ADD ideal-int
+pkg syscall (freebsd-386), const BPF_ALIGNMENT ideal-int
+pkg syscall (freebsd-386), const BPF_ALU ideal-int
+pkg syscall (freebsd-386), const BPF_AND ideal-int
+pkg syscall (freebsd-386), const BPF_B ideal-int
+pkg syscall (freebsd-386), const BPF_BUFMODE_BUFFER ideal-int
+pkg syscall (freebsd-386), const BPF_BUFMODE_ZBUF ideal-int
+pkg syscall (freebsd-386), const BPF_DIV ideal-int
+pkg syscall (freebsd-386), const BPF_H ideal-int
+pkg syscall (freebsd-386), const BPF_IMM ideal-int
+pkg syscall (freebsd-386), const BPF_IND ideal-int
+pkg syscall (freebsd-386), const BPF_JA ideal-int
+pkg syscall (freebsd-386), const BPF_JEQ ideal-int
+pkg syscall (freebsd-386), const BPF_JGE ideal-int
+pkg syscall (freebsd-386), const BPF_JGT ideal-int
+pkg syscall (freebsd-386), const BPF_JMP ideal-int
+pkg syscall (freebsd-386), const BPF_JSET ideal-int
+pkg syscall (freebsd-386), const BPF_K ideal-int
+pkg syscall (freebsd-386), const BPF_LD ideal-int
+pkg syscall (freebsd-386), const BPF_LDX ideal-int
+pkg syscall (freebsd-386), const BPF_LEN ideal-int
+pkg syscall (freebsd-386), const BPF_LSH ideal-int
+pkg syscall (freebsd-386), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (freebsd-386), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (freebsd-386), const BPF_MAXINSNS ideal-int
+pkg syscall (freebsd-386), const BPF_MEM ideal-int
+pkg syscall (freebsd-386), const BPF_MEMWORDS ideal-int
+pkg syscall (freebsd-386), const BPF_MINBUFSIZE ideal-int
+pkg syscall (freebsd-386), const BPF_MINOR_VERSION ideal-int
+pkg syscall (freebsd-386), const BPF_MISC ideal-int
+pkg syscall (freebsd-386), const BPF_MSH ideal-int
+pkg syscall (freebsd-386), const BPF_MUL ideal-int
+pkg syscall (freebsd-386), const BPF_NEG ideal-int
+pkg syscall (freebsd-386), const BPF_OR ideal-int
+pkg syscall (freebsd-386), const BPF_RELEASE ideal-int
+pkg syscall (freebsd-386), const BPF_RET ideal-int
+pkg syscall (freebsd-386), const BPF_RSH ideal-int
+pkg syscall (freebsd-386), const BPF_ST ideal-int
+pkg syscall (freebsd-386), const BPF_STX ideal-int
+pkg syscall (freebsd-386), const BPF_SUB ideal-int
+pkg syscall (freebsd-386), const BPF_TAX ideal-int
+pkg syscall (freebsd-386), const BPF_TXA ideal-int
+pkg syscall (freebsd-386), const BPF_W ideal-int
+pkg syscall (freebsd-386), const BPF_X ideal-int
+pkg syscall (freebsd-386), const CTL_MAXNAME ideal-int
+pkg syscall (freebsd-386), const CTL_NET ideal-int
+pkg syscall (freebsd-386), const DLT_A429 ideal-int
+pkg syscall (freebsd-386), const DLT_A653_ICM ideal-int
+pkg syscall (freebsd-386), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (freebsd-386), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (freebsd-386), const DLT_ARCNET ideal-int
+pkg syscall (freebsd-386), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (freebsd-386), const DLT_ATM_CLIP ideal-int
+pkg syscall (freebsd-386), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (freebsd-386), const DLT_AURORA ideal-int
+pkg syscall (freebsd-386), const DLT_AX25 ideal-int
+pkg syscall (freebsd-386), const DLT_AX25_KISS ideal-int
+pkg syscall (freebsd-386), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (freebsd-386), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (freebsd-386), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (freebsd-386), const DLT_CAN20B ideal-int
+pkg syscall (freebsd-386), const DLT_CHAOS ideal-int
+pkg syscall (freebsd-386), const DLT_CHDLC ideal-int
+pkg syscall (freebsd-386), const DLT_CISCO_IOS ideal-int
+pkg syscall (freebsd-386), const DLT_C_HDLC ideal-int
+pkg syscall (freebsd-386), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (freebsd-386), const DLT_DOCSIS ideal-int
+pkg syscall (freebsd-386), const DLT_ECONET ideal-int
+pkg syscall (freebsd-386), const DLT_EN10MB ideal-int
+pkg syscall (freebsd-386), const DLT_EN3MB ideal-int
+pkg syscall (freebsd-386), const DLT_ENC ideal-int
+pkg syscall (freebsd-386), const DLT_ERF ideal-int
+pkg syscall (freebsd-386), const DLT_ERF_ETH ideal-int
+pkg syscall (freebsd-386), const DLT_ERF_POS ideal-int
+pkg syscall (freebsd-386), const DLT_FDDI ideal-int
+pkg syscall (freebsd-386), const DLT_FLEXRAY ideal-int
+pkg syscall (freebsd-386), const DLT_FRELAY ideal-int
+pkg syscall (freebsd-386), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (freebsd-386), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (freebsd-386), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (freebsd-386), const DLT_GPF_F ideal-int
+pkg syscall (freebsd-386), const DLT_GPF_T ideal-int
+pkg syscall (freebsd-386), const DLT_GPRS_LLC ideal-int
+pkg syscall (freebsd-386), const DLT_HHDLC ideal-int
+pkg syscall (freebsd-386), const DLT_IBM_SN ideal-int
+pkg syscall (freebsd-386), const DLT_IBM_SP ideal-int
+pkg syscall (freebsd-386), const DLT_IEEE802 ideal-int
+pkg syscall (freebsd-386), const DLT_IEEE802_11 ideal-int
+pkg syscall (freebsd-386), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (freebsd-386), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (freebsd-386), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (freebsd-386), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (freebsd-386), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (freebsd-386), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (freebsd-386), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (freebsd-386), const DLT_IPFILTER ideal-int
+pkg syscall (freebsd-386), const DLT_IPMB ideal-int
+pkg syscall (freebsd-386), const DLT_IPMB_LINUX ideal-int
+pkg syscall (freebsd-386), const DLT_IP_OVER_FC ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_ES ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_ST ideal-int
+pkg syscall (freebsd-386), const DLT_JUNIPER_VP ideal-int
+pkg syscall (freebsd-386), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (freebsd-386), const DLT_LAPD ideal-int
+pkg syscall (freebsd-386), const DLT_LIN ideal-int
+pkg syscall (freebsd-386), const DLT_LINUX_IRDA ideal-int
+pkg syscall (freebsd-386), const DLT_LINUX_LAPD ideal-int
+pkg syscall (freebsd-386), const DLT_LINUX_PPP_WITHDIRECTION ideal-int
+pkg syscall (freebsd-386), const DLT_LINUX_SLL ideal-int
+pkg syscall (freebsd-386), const DLT_LOOP ideal-int
+pkg syscall (freebsd-386), const DLT_LTALK ideal-int
+pkg syscall (freebsd-386), const DLT_MFR ideal-int
+pkg syscall (freebsd-386), const DLT_MOST ideal-int
+pkg syscall (freebsd-386), const DLT_MTP2 ideal-int
+pkg syscall (freebsd-386), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (freebsd-386), const DLT_MTP3 ideal-int
+pkg syscall (freebsd-386), const DLT_NULL ideal-int
+pkg syscall (freebsd-386), const DLT_PCI_EXP ideal-int
+pkg syscall (freebsd-386), const DLT_PFLOG ideal-int
+pkg syscall (freebsd-386), const DLT_PFSYNC ideal-int
+pkg syscall (freebsd-386), const DLT_PPI ideal-int
+pkg syscall (freebsd-386), const DLT_PPP ideal-int
+pkg syscall (freebsd-386), const DLT_PPP_BSDOS ideal-int
+pkg syscall (freebsd-386), const DLT_PPP_ETHER ideal-int
+pkg syscall (freebsd-386), const DLT_PPP_PPPD ideal-int
+pkg syscall (freebsd-386), const DLT_PPP_SERIAL ideal-int
+pkg syscall (freebsd-386), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (freebsd-386), const DLT_PPP_WITH_DIRECTION ideal-int
+pkg syscall (freebsd-386), const DLT_PRISM_HEADER ideal-int
+pkg syscall (freebsd-386), const DLT_PRONET ideal-int
+pkg syscall (freebsd-386), const DLT_RAIF1 ideal-int
+pkg syscall (freebsd-386), const DLT_RAW ideal-int
+pkg syscall (freebsd-386), const DLT_RIO ideal-int
+pkg syscall (freebsd-386), const DLT_SCCP ideal-int
+pkg syscall (freebsd-386), const DLT_SITA ideal-int
+pkg syscall (freebsd-386), const DLT_SLIP ideal-int
+pkg syscall (freebsd-386), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (freebsd-386), const DLT_SUNATM ideal-int
+pkg syscall (freebsd-386), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (freebsd-386), const DLT_TZSP ideal-int
+pkg syscall (freebsd-386), const DLT_USB ideal-int
+pkg syscall (freebsd-386), const DLT_USB_LINUX ideal-int
+pkg syscall (freebsd-386), const DLT_USER0 ideal-int
+pkg syscall (freebsd-386), const DLT_USER1 ideal-int
+pkg syscall (freebsd-386), const DLT_USER10 ideal-int
+pkg syscall (freebsd-386), const DLT_USER11 ideal-int
+pkg syscall (freebsd-386), const DLT_USER12 ideal-int
+pkg syscall (freebsd-386), const DLT_USER13 ideal-int
+pkg syscall (freebsd-386), const DLT_USER14 ideal-int
+pkg syscall (freebsd-386), const DLT_USER15 ideal-int
+pkg syscall (freebsd-386), const DLT_USER2 ideal-int
+pkg syscall (freebsd-386), const DLT_USER3 ideal-int
+pkg syscall (freebsd-386), const DLT_USER4 ideal-int
+pkg syscall (freebsd-386), const DLT_USER5 ideal-int
+pkg syscall (freebsd-386), const DLT_USER6 ideal-int
+pkg syscall (freebsd-386), const DLT_USER7 ideal-int
+pkg syscall (freebsd-386), const DLT_USER8 ideal-int
+pkg syscall (freebsd-386), const DLT_USER9 ideal-int
+pkg syscall (freebsd-386), const DLT_X2E_SERIAL ideal-int
+pkg syscall (freebsd-386), const DLT_X2E_XORAYA ideal-int
+pkg syscall (freebsd-386), const DT_BLK ideal-int
+pkg syscall (freebsd-386), const DT_CHR ideal-int
+pkg syscall (freebsd-386), const DT_DIR ideal-int
+pkg syscall (freebsd-386), const DT_FIFO ideal-int
+pkg syscall (freebsd-386), const DT_LNK ideal-int
+pkg syscall (freebsd-386), const DT_REG ideal-int
+pkg syscall (freebsd-386), const DT_SOCK ideal-int
+pkg syscall (freebsd-386), const DT_UNKNOWN ideal-int
+pkg syscall (freebsd-386), const DT_WHT ideal-int
+pkg syscall (freebsd-386), const EAUTH Errno
+pkg syscall (freebsd-386), const EBADMSG Errno
+pkg syscall (freebsd-386), const EBADRPC Errno
+pkg syscall (freebsd-386), const ECHO ideal-int
+pkg syscall (freebsd-386), const ECHOCTL ideal-int
+pkg syscall (freebsd-386), const ECHOE ideal-int
+pkg syscall (freebsd-386), const ECHOK ideal-int
+pkg syscall (freebsd-386), const ECHOKE ideal-int
+pkg syscall (freebsd-386), const ECHONL ideal-int
+pkg syscall (freebsd-386), const ECHOPRT ideal-int
+pkg syscall (freebsd-386), const EDOOFUS Errno
+pkg syscall (freebsd-386), const EFTYPE Errno
+pkg syscall (freebsd-386), const ELAST Errno
+pkg syscall (freebsd-386), const EMULTIHOP Errno
+pkg syscall (freebsd-386), const ENEEDAUTH Errno
+pkg syscall (freebsd-386), const ENOATTR Errno
+pkg syscall (freebsd-386), const ENOLINK Errno
+pkg syscall (freebsd-386), const ENOTCAPABLE Errno
+pkg syscall (freebsd-386), const EPROCLIM Errno
+pkg syscall (freebsd-386), const EPROCUNAVAIL Errno
+pkg syscall (freebsd-386), const EPROGMISMATCH Errno
+pkg syscall (freebsd-386), const EPROGUNAVAIL Errno
+pkg syscall (freebsd-386), const EPROTO Errno
+pkg syscall (freebsd-386), const ERPCMISMATCH Errno
+pkg syscall (freebsd-386), const EVFILT_AIO ideal-int
+pkg syscall (freebsd-386), const EVFILT_FS ideal-int
+pkg syscall (freebsd-386), const EVFILT_LIO ideal-int
+pkg syscall (freebsd-386), const EVFILT_PROC ideal-int
+pkg syscall (freebsd-386), const EVFILT_READ ideal-int
+pkg syscall (freebsd-386), const EVFILT_SIGNAL ideal-int
+pkg syscall (freebsd-386), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (freebsd-386), const EVFILT_TIMER ideal-int
+pkg syscall (freebsd-386), const EVFILT_USER ideal-int
+pkg syscall (freebsd-386), const EVFILT_VNODE ideal-int
+pkg syscall (freebsd-386), const EVFILT_WRITE ideal-int
+pkg syscall (freebsd-386), const EV_ADD ideal-int
+pkg syscall (freebsd-386), const EV_CLEAR ideal-int
+pkg syscall (freebsd-386), const EV_DELETE ideal-int
+pkg syscall (freebsd-386), const EV_DISABLE ideal-int
+pkg syscall (freebsd-386), const EV_DISPATCH ideal-int
+pkg syscall (freebsd-386), const EV_ENABLE ideal-int
+pkg syscall (freebsd-386), const EV_EOF ideal-int
+pkg syscall (freebsd-386), const EV_ERROR ideal-int
+pkg syscall (freebsd-386), const EV_FLAG1 ideal-int
+pkg syscall (freebsd-386), const EV_ONESHOT ideal-int
+pkg syscall (freebsd-386), const EV_RECEIPT ideal-int
+pkg syscall (freebsd-386), const EV_SYSFLAGS ideal-int
+pkg syscall (freebsd-386), const EXTA ideal-int
+pkg syscall (freebsd-386), const EXTB ideal-int
+pkg syscall (freebsd-386), const EXTPROC ideal-int
+pkg syscall (freebsd-386), const FD_CLOEXEC ideal-int
+pkg syscall (freebsd-386), const FD_SETSIZE ideal-int
+pkg syscall (freebsd-386), const F_CANCEL ideal-int
+pkg syscall (freebsd-386), const F_DUP2FD ideal-int
+pkg syscall (freebsd-386), const F_DUPFD ideal-int
+pkg syscall (freebsd-386), const F_GETFD ideal-int
+pkg syscall (freebsd-386), const F_GETFL ideal-int
+pkg syscall (freebsd-386), const F_GETLK ideal-int
+pkg syscall (freebsd-386), const F_GETOWN ideal-int
+pkg syscall (freebsd-386), const F_OGETLK ideal-int
+pkg syscall (freebsd-386), const F_OK ideal-int
+pkg syscall (freebsd-386), const F_OSETLK ideal-int
+pkg syscall (freebsd-386), const F_OSETLKW ideal-int
+pkg syscall (freebsd-386), const F_RDAHEAD ideal-int
+pkg syscall (freebsd-386), const F_RDLCK ideal-int
+pkg syscall (freebsd-386), const F_READAHEAD ideal-int
+pkg syscall (freebsd-386), const F_SETFD ideal-int
+pkg syscall (freebsd-386), const F_SETFL ideal-int
+pkg syscall (freebsd-386), const F_SETLK ideal-int
+pkg syscall (freebsd-386), const F_SETLKW ideal-int
+pkg syscall (freebsd-386), const F_SETLK_REMOTE ideal-int
+pkg syscall (freebsd-386), const F_SETOWN ideal-int
+pkg syscall (freebsd-386), const F_UNLCK ideal-int
+pkg syscall (freebsd-386), const F_UNLCKSYS ideal-int
+pkg syscall (freebsd-386), const F_WRLCK ideal-int
+pkg syscall (freebsd-386), const IFF_ALLMULTI ideal-int
+pkg syscall (freebsd-386), const IFF_ALTPHYS ideal-int
+pkg syscall (freebsd-386), const IFF_CANTCHANGE ideal-int
+pkg syscall (freebsd-386), const IFF_DEBUG ideal-int
+pkg syscall (freebsd-386), const IFF_DRV_OACTIVE ideal-int
+pkg syscall (freebsd-386), const IFF_DRV_RUNNING ideal-int
+pkg syscall (freebsd-386), const IFF_DYING ideal-int
+pkg syscall (freebsd-386), const IFF_LINK0 ideal-int
+pkg syscall (freebsd-386), const IFF_LINK1 ideal-int
+pkg syscall (freebsd-386), const IFF_LINK2 ideal-int
+pkg syscall (freebsd-386), const IFF_MONITOR ideal-int
+pkg syscall (freebsd-386), const IFF_NOARP ideal-int
+pkg syscall (freebsd-386), const IFF_OACTIVE ideal-int
+pkg syscall (freebsd-386), const IFF_POINTOPOINT ideal-int
+pkg syscall (freebsd-386), const IFF_PPROMISC ideal-int
+pkg syscall (freebsd-386), const IFF_PROMISC ideal-int
+pkg syscall (freebsd-386), const IFF_RENAMING ideal-int
+pkg syscall (freebsd-386), const IFF_RUNNING ideal-int
+pkg syscall (freebsd-386), const IFF_SIMPLEX ideal-int
+pkg syscall (freebsd-386), const IFF_SMART ideal-int
+pkg syscall (freebsd-386), const IFF_STATICARP ideal-int
+pkg syscall (freebsd-386), const IFNAMSIZ ideal-int
+pkg syscall (freebsd-386), const IFT_1822 ideal-int
+pkg syscall (freebsd-386), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (freebsd-386), const IFT_AAL2 ideal-int
+pkg syscall (freebsd-386), const IFT_AAL5 ideal-int
+pkg syscall (freebsd-386), const IFT_ADSL ideal-int
+pkg syscall (freebsd-386), const IFT_AFLANE8023 ideal-int
+pkg syscall (freebsd-386), const IFT_AFLANE8025 ideal-int
+pkg syscall (freebsd-386), const IFT_ARAP ideal-int
+pkg syscall (freebsd-386), const IFT_ARCNET ideal-int
+pkg syscall (freebsd-386), const IFT_ARCNETPLUS ideal-int
+pkg syscall (freebsd-386), const IFT_ASYNC ideal-int
+pkg syscall (freebsd-386), const IFT_ATM ideal-int
+pkg syscall (freebsd-386), const IFT_ATMDXI ideal-int
+pkg syscall (freebsd-386), const IFT_ATMFUNI ideal-int
+pkg syscall (freebsd-386), const IFT_ATMIMA ideal-int
+pkg syscall (freebsd-386), const IFT_ATMLOGICAL ideal-int
+pkg syscall (freebsd-386), const IFT_ATMRADIO ideal-int
+pkg syscall (freebsd-386), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (freebsd-386), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (freebsd-386), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (freebsd-386), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (freebsd-386), const IFT_BRIDGE ideal-int
+pkg syscall (freebsd-386), const IFT_BSC ideal-int
+pkg syscall (freebsd-386), const IFT_CARP ideal-int
+pkg syscall (freebsd-386), const IFT_CCTEMUL ideal-int
+pkg syscall (freebsd-386), const IFT_CEPT ideal-int
+pkg syscall (freebsd-386), const IFT_CES ideal-int
+pkg syscall (freebsd-386), const IFT_CHANNEL ideal-int
+pkg syscall (freebsd-386), const IFT_CNR ideal-int
+pkg syscall (freebsd-386), const IFT_COFFEE ideal-int
+pkg syscall (freebsd-386), const IFT_COMPOSITELINK ideal-int
+pkg syscall (freebsd-386), const IFT_DCN ideal-int
+pkg syscall (freebsd-386), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (freebsd-386), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-386), const IFT_DLSW ideal-int
+pkg syscall (freebsd-386), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (freebsd-386), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (freebsd-386), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (freebsd-386), const IFT_DS0 ideal-int
+pkg syscall (freebsd-386), const IFT_DS0BUNDLE ideal-int
+pkg syscall (freebsd-386), const IFT_DS1FDL ideal-int
+pkg syscall (freebsd-386), const IFT_DS3 ideal-int
+pkg syscall (freebsd-386), const IFT_DTM ideal-int
+pkg syscall (freebsd-386), const IFT_DVBASILN ideal-int
+pkg syscall (freebsd-386), const IFT_DVBASIOUT ideal-int
+pkg syscall (freebsd-386), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (freebsd-386), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (freebsd-386), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (freebsd-386), const IFT_ENC ideal-int
+pkg syscall (freebsd-386), const IFT_EON ideal-int
+pkg syscall (freebsd-386), const IFT_EPLRS ideal-int
+pkg syscall (freebsd-386), const IFT_ESCON ideal-int
+pkg syscall (freebsd-386), const IFT_ETHER ideal-int
+pkg syscall (freebsd-386), const IFT_FAITH ideal-int
+pkg syscall (freebsd-386), const IFT_FAST ideal-int
+pkg syscall (freebsd-386), const IFT_FASTETHER ideal-int
+pkg syscall (freebsd-386), const IFT_FASTETHERFX ideal-int
+pkg syscall (freebsd-386), const IFT_FDDI ideal-int
+pkg syscall (freebsd-386), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (freebsd-386), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (freebsd-386), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (freebsd-386), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (freebsd-386), const IFT_FRELAY ideal-int
+pkg syscall (freebsd-386), const IFT_FRELAYDCE ideal-int
+pkg syscall (freebsd-386), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (freebsd-386), const IFT_FRFORWARD ideal-int
+pkg syscall (freebsd-386), const IFT_G703AT2MB ideal-int
+pkg syscall (freebsd-386), const IFT_G703AT64K ideal-int
+pkg syscall (freebsd-386), const IFT_GIF ideal-int
+pkg syscall (freebsd-386), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (freebsd-386), const IFT_GR303IDT ideal-int
+pkg syscall (freebsd-386), const IFT_GR303RDT ideal-int
+pkg syscall (freebsd-386), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (freebsd-386), const IFT_H323PROXY ideal-int
+pkg syscall (freebsd-386), const IFT_HDH1822 ideal-int
+pkg syscall (freebsd-386), const IFT_HDLC ideal-int
+pkg syscall (freebsd-386), const IFT_HDSL2 ideal-int
+pkg syscall (freebsd-386), const IFT_HIPERLAN2 ideal-int
+pkg syscall (freebsd-386), const IFT_HIPPI ideal-int
+pkg syscall (freebsd-386), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (freebsd-386), const IFT_HOSTPAD ideal-int
+pkg syscall (freebsd-386), const IFT_HSSI ideal-int
+pkg syscall (freebsd-386), const IFT_HY ideal-int
+pkg syscall (freebsd-386), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (freebsd-386), const IFT_IDSL ideal-int
+pkg syscall (freebsd-386), const IFT_IEEE1394 ideal-int
+pkg syscall (freebsd-386), const IFT_IEEE80211 ideal-int
+pkg syscall (freebsd-386), const IFT_IEEE80212 ideal-int
+pkg syscall (freebsd-386), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (freebsd-386), const IFT_IFGSN ideal-int
+pkg syscall (freebsd-386), const IFT_IMT ideal-int
+pkg syscall (freebsd-386), const IFT_INTERLEAVE ideal-int
+pkg syscall (freebsd-386), const IFT_IP ideal-int
+pkg syscall (freebsd-386), const IFT_IPFORWARD ideal-int
+pkg syscall (freebsd-386), const IFT_IPOVERATM ideal-int
+pkg syscall (freebsd-386), const IFT_IPOVERCDLC ideal-int
+pkg syscall (freebsd-386), const IFT_IPOVERCLAW ideal-int
+pkg syscall (freebsd-386), const IFT_IPSWITCH ideal-int
+pkg syscall (freebsd-386), const IFT_IPXIP ideal-int
+pkg syscall (freebsd-386), const IFT_ISDN ideal-int
+pkg syscall (freebsd-386), const IFT_ISDNBASIC ideal-int
+pkg syscall (freebsd-386), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (freebsd-386), const IFT_ISDNS ideal-int
+pkg syscall (freebsd-386), const IFT_ISDNU ideal-int
+pkg syscall (freebsd-386), const IFT_ISO88022LLC ideal-int
+pkg syscall (freebsd-386), const IFT_ISO88023 ideal-int
+pkg syscall (freebsd-386), const IFT_ISO88024 ideal-int
+pkg syscall (freebsd-386), const IFT_ISO88025 ideal-int
+pkg syscall (freebsd-386), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (freebsd-386), const IFT_ISO88025DTR ideal-int
+pkg syscall (freebsd-386), const IFT_ISO88025FIBER ideal-int
+pkg syscall (freebsd-386), const IFT_ISO88026 ideal-int
+pkg syscall (freebsd-386), const IFT_ISUP ideal-int
+pkg syscall (freebsd-386), const IFT_L2VLAN ideal-int
+pkg syscall (freebsd-386), const IFT_L3IPVLAN ideal-int
+pkg syscall (freebsd-386), const IFT_L3IPXVLAN ideal-int
+pkg syscall (freebsd-386), const IFT_LAPB ideal-int
+pkg syscall (freebsd-386), const IFT_LAPD ideal-int
+pkg syscall (freebsd-386), const IFT_LAPF ideal-int
+pkg syscall (freebsd-386), const IFT_LOCALTALK ideal-int
+pkg syscall (freebsd-386), const IFT_LOOP ideal-int
+pkg syscall (freebsd-386), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (freebsd-386), const IFT_MFSIGLINK ideal-int
+pkg syscall (freebsd-386), const IFT_MIOX25 ideal-int
+pkg syscall (freebsd-386), const IFT_MODEM ideal-int
+pkg syscall (freebsd-386), const IFT_MPC ideal-int
+pkg syscall (freebsd-386), const IFT_MPLS ideal-int
+pkg syscall (freebsd-386), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (freebsd-386), const IFT_MSDSL ideal-int
+pkg syscall (freebsd-386), const IFT_MVL ideal-int
+pkg syscall (freebsd-386), const IFT_MYRINET ideal-int
+pkg syscall (freebsd-386), const IFT_NFAS ideal-int
+pkg syscall (freebsd-386), const IFT_NSIP ideal-int
+pkg syscall (freebsd-386), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (freebsd-386), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (freebsd-386), const IFT_OTHER ideal-int
+pkg syscall (freebsd-386), const IFT_P10 ideal-int
+pkg syscall (freebsd-386), const IFT_P80 ideal-int
+pkg syscall (freebsd-386), const IFT_PARA ideal-int
+pkg syscall (freebsd-386), const IFT_PFLOG ideal-int
+pkg syscall (freebsd-386), const IFT_PFSYNC ideal-int
+pkg syscall (freebsd-386), const IFT_PLC ideal-int
+pkg syscall (freebsd-386), const IFT_POS ideal-int
+pkg syscall (freebsd-386), const IFT_PPP ideal-int
+pkg syscall (freebsd-386), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (freebsd-386), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (freebsd-386), const IFT_PROPCNLS ideal-int
+pkg syscall (freebsd-386), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (freebsd-386), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (freebsd-386), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (freebsd-386), const IFT_PROPMUX ideal-int
+pkg syscall (freebsd-386), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (freebsd-386), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (freebsd-386), const IFT_PTPSERIAL ideal-int
+pkg syscall (freebsd-386), const IFT_PVC ideal-int
+pkg syscall (freebsd-386), const IFT_QLLC ideal-int
+pkg syscall (freebsd-386), const IFT_RADIOMAC ideal-int
+pkg syscall (freebsd-386), const IFT_RADSL ideal-int
+pkg syscall (freebsd-386), const IFT_REACHDSL ideal-int
+pkg syscall (freebsd-386), const IFT_RFC1483 ideal-int
+pkg syscall (freebsd-386), const IFT_RS232 ideal-int
+pkg syscall (freebsd-386), const IFT_RSRB ideal-int
+pkg syscall (freebsd-386), const IFT_SDLC ideal-int
+pkg syscall (freebsd-386), const IFT_SDSL ideal-int
+pkg syscall (freebsd-386), const IFT_SHDSL ideal-int
+pkg syscall (freebsd-386), const IFT_SIP ideal-int
+pkg syscall (freebsd-386), const IFT_SLIP ideal-int
+pkg syscall (freebsd-386), const IFT_SMDSDXI ideal-int
+pkg syscall (freebsd-386), const IFT_SMDSICIP ideal-int
+pkg syscall (freebsd-386), const IFT_SONET ideal-int
+pkg syscall (freebsd-386), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-386), const IFT_SONETPATH ideal-int
+pkg syscall (freebsd-386), const IFT_SONETVT ideal-int
+pkg syscall (freebsd-386), const IFT_SRP ideal-int
+pkg syscall (freebsd-386), const IFT_SS7SIGLINK ideal-int
+pkg syscall (freebsd-386), const IFT_STACKTOSTACK ideal-int
+pkg syscall (freebsd-386), const IFT_STARLAN ideal-int
+pkg syscall (freebsd-386), const IFT_STF ideal-int
+pkg syscall (freebsd-386), const IFT_T1 ideal-int
+pkg syscall (freebsd-386), const IFT_TDLC ideal-int
+pkg syscall (freebsd-386), const IFT_TERMPAD ideal-int
+pkg syscall (freebsd-386), const IFT_TR008 ideal-int
+pkg syscall (freebsd-386), const IFT_TRANSPHDLC ideal-int
+pkg syscall (freebsd-386), const IFT_TUNNEL ideal-int
+pkg syscall (freebsd-386), const IFT_ULTRA ideal-int
+pkg syscall (freebsd-386), const IFT_USB ideal-int
+pkg syscall (freebsd-386), const IFT_V11 ideal-int
+pkg syscall (freebsd-386), const IFT_V35 ideal-int
+pkg syscall (freebsd-386), const IFT_V36 ideal-int
+pkg syscall (freebsd-386), const IFT_V37 ideal-int
+pkg syscall (freebsd-386), const IFT_VDSL ideal-int
+pkg syscall (freebsd-386), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (freebsd-386), const IFT_VOICEEM ideal-int
+pkg syscall (freebsd-386), const IFT_VOICEENCAP ideal-int
+pkg syscall (freebsd-386), const IFT_VOICEFXO ideal-int
+pkg syscall (freebsd-386), const IFT_VOICEFXS ideal-int
+pkg syscall (freebsd-386), const IFT_VOICEOVERATM ideal-int
+pkg syscall (freebsd-386), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (freebsd-386), const IFT_VOICEOVERIP ideal-int
+pkg syscall (freebsd-386), const IFT_X213 ideal-int
+pkg syscall (freebsd-386), const IFT_X25 ideal-int
+pkg syscall (freebsd-386), const IFT_X25DDN ideal-int
+pkg syscall (freebsd-386), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (freebsd-386), const IFT_X25MLP ideal-int
+pkg syscall (freebsd-386), const IFT_X25PLE ideal-int
+pkg syscall (freebsd-386), const IFT_XETHER ideal-int
+pkg syscall (freebsd-386), const IN_CLASSA_HOST ideal-int
+pkg syscall (freebsd-386), const IN_CLASSA_MAX ideal-int
+pkg syscall (freebsd-386), const IN_CLASSA_NET ideal-int
+pkg syscall (freebsd-386), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (freebsd-386), const IN_CLASSB_HOST ideal-int
+pkg syscall (freebsd-386), const IN_CLASSB_MAX ideal-int
+pkg syscall (freebsd-386), const IN_CLASSB_NET ideal-int
+pkg syscall (freebsd-386), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (freebsd-386), const IN_CLASSC_HOST ideal-int
+pkg syscall (freebsd-386), const IN_CLASSC_NET ideal-int
+pkg syscall (freebsd-386), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (freebsd-386), const IN_CLASSD_HOST ideal-int
+pkg syscall (freebsd-386), const IN_CLASSD_NET ideal-int
+pkg syscall (freebsd-386), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (freebsd-386), const IN_LOOPBACKNET ideal-int
+pkg syscall (freebsd-386), const IPPROTO_3PC ideal-int
+pkg syscall (freebsd-386), const IPPROTO_ADFS ideal-int
+pkg syscall (freebsd-386), const IPPROTO_AH ideal-int
+pkg syscall (freebsd-386), const IPPROTO_AHIP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_APES ideal-int
+pkg syscall (freebsd-386), const IPPROTO_ARGUS ideal-int
+pkg syscall (freebsd-386), const IPPROTO_AX25 ideal-int
+pkg syscall (freebsd-386), const IPPROTO_BHA ideal-int
+pkg syscall (freebsd-386), const IPPROTO_BLT ideal-int
+pkg syscall (freebsd-386), const IPPROTO_BRSATMON ideal-int
+pkg syscall (freebsd-386), const IPPROTO_CARP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_CFTP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_CHAOS ideal-int
+pkg syscall (freebsd-386), const IPPROTO_CMTP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_CPHB ideal-int
+pkg syscall (freebsd-386), const IPPROTO_CPNX ideal-int
+pkg syscall (freebsd-386), const IPPROTO_DDP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_DGP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_DIVERT ideal-int
+pkg syscall (freebsd-386), const IPPROTO_DONE ideal-int
+pkg syscall (freebsd-386), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (freebsd-386), const IPPROTO_EGP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_EMCON ideal-int
+pkg syscall (freebsd-386), const IPPROTO_ENCAP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_EON ideal-int
+pkg syscall (freebsd-386), const IPPROTO_ESP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_ETHERIP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (freebsd-386), const IPPROTO_GGP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_GMTP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_GRE ideal-int
+pkg syscall (freebsd-386), const IPPROTO_HELLO ideal-int
+pkg syscall (freebsd-386), const IPPROTO_HMP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (freebsd-386), const IPPROTO_ICMP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IDP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IDPR ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IDRP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IGMP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IGP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IGRP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IL ideal-int
+pkg syscall (freebsd-386), const IPPROTO_INLSP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_INP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IPCOMP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IPCV ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IPEIP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IPIP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IPPC ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IPV4 ideal-int
+pkg syscall (freebsd-386), const IPPROTO_IRTP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_KRYPTOLAN ideal-int
+pkg syscall (freebsd-386), const IPPROTO_LARP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_LEAF1 ideal-int
+pkg syscall (freebsd-386), const IPPROTO_LEAF2 ideal-int
+pkg syscall (freebsd-386), const IPPROTO_MAX ideal-int
+pkg syscall (freebsd-386), const IPPROTO_MAXID ideal-int
+pkg syscall (freebsd-386), const IPPROTO_MEAS ideal-int
+pkg syscall (freebsd-386), const IPPROTO_MHRP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_MICP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_MOBILE ideal-int
+pkg syscall (freebsd-386), const IPPROTO_MTP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_MUX ideal-int
+pkg syscall (freebsd-386), const IPPROTO_ND ideal-int
+pkg syscall (freebsd-386), const IPPROTO_NHRP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_NONE ideal-int
+pkg syscall (freebsd-386), const IPPROTO_NSP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_NVPII ideal-int
+pkg syscall (freebsd-386), const IPPROTO_OLD_DIVERT ideal-int
+pkg syscall (freebsd-386), const IPPROTO_OSPFIGP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_PFSYNC ideal-int
+pkg syscall (freebsd-386), const IPPROTO_PGM ideal-int
+pkg syscall (freebsd-386), const IPPROTO_PIGP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_PIM ideal-int
+pkg syscall (freebsd-386), const IPPROTO_PRM ideal-int
+pkg syscall (freebsd-386), const IPPROTO_PUP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_PVP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_RAW ideal-int
+pkg syscall (freebsd-386), const IPPROTO_RCCMON ideal-int
+pkg syscall (freebsd-386), const IPPROTO_RDP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_ROUTING ideal-int
+pkg syscall (freebsd-386), const IPPROTO_RSVP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_RVD ideal-int
+pkg syscall (freebsd-386), const IPPROTO_SATEXPAK ideal-int
+pkg syscall (freebsd-386), const IPPROTO_SATMON ideal-int
+pkg syscall (freebsd-386), const IPPROTO_SCCSP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_SCTP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_SDRP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_SEP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_SKIP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_SPACER ideal-int
+pkg syscall (freebsd-386), const IPPROTO_SRPC ideal-int
+pkg syscall (freebsd-386), const IPPROTO_ST ideal-int
+pkg syscall (freebsd-386), const IPPROTO_SVMTP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_SWIPE ideal-int
+pkg syscall (freebsd-386), const IPPROTO_TCF ideal-int
+pkg syscall (freebsd-386), const IPPROTO_TLSP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_TP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_TPXX ideal-int
+pkg syscall (freebsd-386), const IPPROTO_TRUNK1 ideal-int
+pkg syscall (freebsd-386), const IPPROTO_TRUNK2 ideal-int
+pkg syscall (freebsd-386), const IPPROTO_TTP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_VINES ideal-int
+pkg syscall (freebsd-386), const IPPROTO_VISA ideal-int
+pkg syscall (freebsd-386), const IPPROTO_VMTP ideal-int
+pkg syscall (freebsd-386), const IPPROTO_WBEXPAK ideal-int
+pkg syscall (freebsd-386), const IPPROTO_WBMON ideal-int
+pkg syscall (freebsd-386), const IPPROTO_WSN ideal-int
+pkg syscall (freebsd-386), const IPPROTO_XNET ideal-int
+pkg syscall (freebsd-386), const IPPROTO_XTP ideal-int
+pkg syscall (freebsd-386), const IPV6_AUTOFLOWLABEL ideal-int
+pkg syscall (freebsd-386), const IPV6_BINDANY ideal-int
+pkg syscall (freebsd-386), const IPV6_BINDV6ONLY ideal-int
+pkg syscall (freebsd-386), const IPV6_CHECKSUM ideal-int
+pkg syscall (freebsd-386), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (freebsd-386), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-386), const IPV6_DEFHLIM ideal-int
+pkg syscall (freebsd-386), const IPV6_DONTFRAG ideal-int
+pkg syscall (freebsd-386), const IPV6_DSTOPTS ideal-int
+pkg syscall (freebsd-386), const IPV6_FAITH ideal-int
+pkg syscall (freebsd-386), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (freebsd-386), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (freebsd-386), const IPV6_FRAGTTL ideal-int
+pkg syscall (freebsd-386), const IPV6_FW_ADD ideal-int
+pkg syscall (freebsd-386), const IPV6_FW_DEL ideal-int
+pkg syscall (freebsd-386), const IPV6_FW_FLUSH ideal-int
+pkg syscall (freebsd-386), const IPV6_FW_GET ideal-int
+pkg syscall (freebsd-386), const IPV6_FW_ZERO ideal-int
+pkg syscall (freebsd-386), const IPV6_HLIMDEC ideal-int
+pkg syscall (freebsd-386), const IPV6_HOPLIMIT ideal-int
+pkg syscall (freebsd-386), const IPV6_HOPOPTS ideal-int
+pkg syscall (freebsd-386), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-386), const IPV6_MAXHLIM ideal-int
+pkg syscall (freebsd-386), const IPV6_MAXOPTHDR ideal-int
+pkg syscall (freebsd-386), const IPV6_MAXPACKET ideal-int
+pkg syscall (freebsd-386), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-386), const IPV6_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-386), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-386), const IPV6_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-386), const IPV6_MMTU ideal-int
+pkg syscall (freebsd-386), const IPV6_MSFILTER ideal-int
+pkg syscall (freebsd-386), const IPV6_NEXTHOP ideal-int
+pkg syscall (freebsd-386), const IPV6_PATHMTU ideal-int
+pkg syscall (freebsd-386), const IPV6_PKTINFO ideal-int
+pkg syscall (freebsd-386), const IPV6_PORTRANGE ideal-int
+pkg syscall (freebsd-386), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-386), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-386), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-386), const IPV6_PREFER_TEMPADDR ideal-int
+pkg syscall (freebsd-386), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (freebsd-386), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (freebsd-386), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (freebsd-386), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (freebsd-386), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (freebsd-386), const IPV6_RECVRTHDR ideal-int
+pkg syscall (freebsd-386), const IPV6_RECVTCLASS ideal-int
+pkg syscall (freebsd-386), const IPV6_RTHDR ideal-int
+pkg syscall (freebsd-386), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (freebsd-386), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (freebsd-386), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (freebsd-386), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (freebsd-386), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (freebsd-386), const IPV6_TCLASS ideal-int
+pkg syscall (freebsd-386), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (freebsd-386), const IPV6_VERSION ideal-int
+pkg syscall (freebsd-386), const IPV6_VERSION_MASK ideal-int
+pkg syscall (freebsd-386), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-386), const IP_BINDANY ideal-int
+pkg syscall (freebsd-386), const IP_BLOCK_SOURCE ideal-int
+pkg syscall (freebsd-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-386), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (freebsd-386), const IP_DF ideal-int
+pkg syscall (freebsd-386), const IP_DONTFRAG ideal-int
+pkg syscall (freebsd-386), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-386), const IP_DUMMYNET3 ideal-int
+pkg syscall (freebsd-386), const IP_DUMMYNET_CONFIGURE ideal-int
+pkg syscall (freebsd-386), const IP_DUMMYNET_DEL ideal-int
+pkg syscall (freebsd-386), const IP_DUMMYNET_FLUSH ideal-int
+pkg syscall (freebsd-386), const IP_DUMMYNET_GET ideal-int
+pkg syscall (freebsd-386), const IP_FAITH ideal-int
+pkg syscall (freebsd-386), const IP_FW3 ideal-int
+pkg syscall (freebsd-386), const IP_FW_ADD ideal-int
+pkg syscall (freebsd-386), const IP_FW_DEL ideal-int
+pkg syscall (freebsd-386), const IP_FW_FLUSH ideal-int
+pkg syscall (freebsd-386), const IP_FW_GET ideal-int
+pkg syscall (freebsd-386), const IP_FW_NAT_CFG ideal-int
+pkg syscall (freebsd-386), const IP_FW_NAT_DEL ideal-int
+pkg syscall (freebsd-386), const IP_FW_NAT_GET_CONFIG ideal-int
+pkg syscall (freebsd-386), const IP_FW_NAT_GET_LOG ideal-int
+pkg syscall (freebsd-386), const IP_FW_RESETLOG ideal-int
+pkg syscall (freebsd-386), const IP_FW_TABLE_ADD ideal-int
+pkg syscall (freebsd-386), const IP_FW_TABLE_DEL ideal-int
+pkg syscall (freebsd-386), const IP_FW_TABLE_FLUSH ideal-int
+pkg syscall (freebsd-386), const IP_FW_TABLE_GETSIZE ideal-int
+pkg syscall (freebsd-386), const IP_FW_TABLE_LIST ideal-int
+pkg syscall (freebsd-386), const IP_FW_ZERO ideal-int
+pkg syscall (freebsd-386), const IP_HDRINCL ideal-int
+pkg syscall (freebsd-386), const IP_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-386), const IP_MAXPACKET ideal-int
+pkg syscall (freebsd-386), const IP_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-386), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-386), const IP_MAX_SOCK_MUTE_FILTER ideal-int
+pkg syscall (freebsd-386), const IP_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-386), const IP_MAX_SOURCE_FILTER ideal-int
+pkg syscall (freebsd-386), const IP_MF ideal-int
+pkg syscall (freebsd-386), const IP_MINTTL ideal-int
+pkg syscall (freebsd-386), const IP_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-386), const IP_MSFILTER ideal-int
+pkg syscall (freebsd-386), const IP_MSS ideal-int
+pkg syscall (freebsd-386), const IP_MULTICAST_VIF ideal-int
+pkg syscall (freebsd-386), const IP_OFFMASK ideal-int
+pkg syscall (freebsd-386), const IP_ONESBCAST ideal-int
+pkg syscall (freebsd-386), const IP_OPTIONS ideal-int
+pkg syscall (freebsd-386), const IP_PORTRANGE ideal-int
+pkg syscall (freebsd-386), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-386), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-386), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-386), const IP_RECVDSTADDR ideal-int
+pkg syscall (freebsd-386), const IP_RECVIF ideal-int
+pkg syscall (freebsd-386), const IP_RECVOPTS ideal-int
+pkg syscall (freebsd-386), const IP_RECVRETOPTS ideal-int
+pkg syscall (freebsd-386), const IP_RECVTTL ideal-int
+pkg syscall (freebsd-386), const IP_RETOPTS ideal-int
+pkg syscall (freebsd-386), const IP_RF ideal-int
+pkg syscall (freebsd-386), const IP_RSVP_OFF ideal-int
+pkg syscall (freebsd-386), const IP_RSVP_ON ideal-int
+pkg syscall (freebsd-386), const IP_RSVP_VIF_OFF ideal-int
+pkg syscall (freebsd-386), const IP_RSVP_VIF_ON ideal-int
+pkg syscall (freebsd-386), const IP_SENDSRCADDR ideal-int
+pkg syscall (freebsd-386), const IP_UNBLOCK_SOURCE ideal-int
+pkg syscall (freebsd-386), const LOCK_EX ideal-int
+pkg syscall (freebsd-386), const LOCK_NB ideal-int
+pkg syscall (freebsd-386), const LOCK_SH ideal-int
+pkg syscall (freebsd-386), const LOCK_UN ideal-int
+pkg syscall (freebsd-386), const MSG_COMPAT ideal-int
+pkg syscall (freebsd-386), const MSG_CTRUNC ideal-int
+pkg syscall (freebsd-386), const MSG_DONTROUTE ideal-int
+pkg syscall (freebsd-386), const MSG_DONTWAIT ideal-int
+pkg syscall (freebsd-386), const MSG_EOF ideal-int
+pkg syscall (freebsd-386), const MSG_EOR ideal-int
+pkg syscall (freebsd-386), const MSG_NBIO ideal-int
+pkg syscall (freebsd-386), const MSG_NOSIGNAL ideal-int
+pkg syscall (freebsd-386), const MSG_NOTIFICATION ideal-int
+pkg syscall (freebsd-386), const MSG_OOB ideal-int
+pkg syscall (freebsd-386), const MSG_PEEK ideal-int
+pkg syscall (freebsd-386), const MSG_TRUNC ideal-int
+pkg syscall (freebsd-386), const MSG_WAITALL ideal-int
+pkg syscall (freebsd-386), const NET_RT_DUMP ideal-int
+pkg syscall (freebsd-386), const NET_RT_FLAGS ideal-int
+pkg syscall (freebsd-386), const NET_RT_IFLIST ideal-int
+pkg syscall (freebsd-386), const NET_RT_IFMALIST ideal-int
+pkg syscall (freebsd-386), const NET_RT_MAXID ideal-int
+pkg syscall (freebsd-386), const NOTE_ATTRIB ideal-int
+pkg syscall (freebsd-386), const NOTE_CHILD ideal-int
+pkg syscall (freebsd-386), const NOTE_DELETE ideal-int
+pkg syscall (freebsd-386), const NOTE_EXEC ideal-int
+pkg syscall (freebsd-386), const NOTE_EXIT ideal-int
+pkg syscall (freebsd-386), const NOTE_EXTEND ideal-int
+pkg syscall (freebsd-386), const NOTE_FFAND ideal-int
+pkg syscall (freebsd-386), const NOTE_FFCOPY ideal-int
+pkg syscall (freebsd-386), const NOTE_FFCTRLMASK ideal-int
+pkg syscall (freebsd-386), const NOTE_FFLAGSMASK ideal-int
+pkg syscall (freebsd-386), const NOTE_FFNOP ideal-int
+pkg syscall (freebsd-386), const NOTE_FFOR ideal-int
+pkg syscall (freebsd-386), const NOTE_FORK ideal-int
+pkg syscall (freebsd-386), const NOTE_LINK ideal-int
+pkg syscall (freebsd-386), const NOTE_LOWAT ideal-int
+pkg syscall (freebsd-386), const NOTE_PCTRLMASK ideal-int
+pkg syscall (freebsd-386), const NOTE_PDATAMASK ideal-int
+pkg syscall (freebsd-386), const NOTE_RENAME ideal-int
+pkg syscall (freebsd-386), const NOTE_REVOKE ideal-int
+pkg syscall (freebsd-386), const NOTE_TRACK ideal-int
+pkg syscall (freebsd-386), const NOTE_TRACKERR ideal-int
+pkg syscall (freebsd-386), const NOTE_TRIGGER ideal-int
+pkg syscall (freebsd-386), const NOTE_WRITE ideal-int
+pkg syscall (freebsd-386), const O_ACCMODE ideal-int
+pkg syscall (freebsd-386), const O_DIRECT ideal-int
+pkg syscall (freebsd-386), const O_DIRECTORY ideal-int
+pkg syscall (freebsd-386), const O_EXEC ideal-int
+pkg syscall (freebsd-386), const O_EXLOCK ideal-int
+pkg syscall (freebsd-386), const O_FSYNC ideal-int
+pkg syscall (freebsd-386), const O_NDELAY ideal-int
+pkg syscall (freebsd-386), const O_NOFOLLOW ideal-int
+pkg syscall (freebsd-386), const O_SHLOCK ideal-int
+pkg syscall (freebsd-386), const O_TTY_INIT ideal-int
+pkg syscall (freebsd-386), const PTRACE_CONT ideal-int
+pkg syscall (freebsd-386), const PTRACE_KILL ideal-int
+pkg syscall (freebsd-386), const PTRACE_TRACEME ideal-int
+pkg syscall (freebsd-386), const RLIMIT_AS ideal-int
+pkg syscall (freebsd-386), const RLIMIT_CORE ideal-int
+pkg syscall (freebsd-386), const RLIMIT_CPU ideal-int
+pkg syscall (freebsd-386), const RLIMIT_DATA ideal-int
+pkg syscall (freebsd-386), const RLIMIT_FSIZE ideal-int
+pkg syscall (freebsd-386), const RLIMIT_NOFILE ideal-int
+pkg syscall (freebsd-386), const RLIMIT_STACK ideal-int
+pkg syscall (freebsd-386), const RLIM_INFINITY ideal-int
+pkg syscall (freebsd-386), const RTAX_AUTHOR ideal-int
+pkg syscall (freebsd-386), const RTAX_BRD ideal-int
+pkg syscall (freebsd-386), const RTAX_DST ideal-int
+pkg syscall (freebsd-386), const RTAX_GATEWAY ideal-int
+pkg syscall (freebsd-386), const RTAX_GENMASK ideal-int
+pkg syscall (freebsd-386), const RTAX_IFA ideal-int
+pkg syscall (freebsd-386), const RTAX_IFP ideal-int
+pkg syscall (freebsd-386), const RTAX_MAX ideal-int
+pkg syscall (freebsd-386), const RTAX_NETMASK ideal-int
+pkg syscall (freebsd-386), const RTA_AUTHOR ideal-int
+pkg syscall (freebsd-386), const RTA_BRD ideal-int
+pkg syscall (freebsd-386), const RTA_DST ideal-int
+pkg syscall (freebsd-386), const RTA_GATEWAY ideal-int
+pkg syscall (freebsd-386), const RTA_GENMASK ideal-int
+pkg syscall (freebsd-386), const RTA_IFA ideal-int
+pkg syscall (freebsd-386), const RTA_IFP ideal-int
+pkg syscall (freebsd-386), const RTA_NETMASK ideal-int
+pkg syscall (freebsd-386), const RTF_BLACKHOLE ideal-int
+pkg syscall (freebsd-386), const RTF_BROADCAST ideal-int
+pkg syscall (freebsd-386), const RTF_DONE ideal-int
+pkg syscall (freebsd-386), const RTF_DYNAMIC ideal-int
+pkg syscall (freebsd-386), const RTF_FMASK ideal-int
+pkg syscall (freebsd-386), const RTF_GATEWAY ideal-int
+pkg syscall (freebsd-386), const RTF_HOST ideal-int
+pkg syscall (freebsd-386), const RTF_LLDATA ideal-int
+pkg syscall (freebsd-386), const RTF_LLINFO ideal-int
+pkg syscall (freebsd-386), const RTF_LOCAL ideal-int
+pkg syscall (freebsd-386), const RTF_MODIFIED ideal-int
+pkg syscall (freebsd-386), const RTF_MULTICAST ideal-int
+pkg syscall (freebsd-386), const RTF_PINNED ideal-int
+pkg syscall (freebsd-386), const RTF_PRCLONING ideal-int
+pkg syscall (freebsd-386), const RTF_PROTO1 ideal-int
+pkg syscall (freebsd-386), const RTF_PROTO2 ideal-int
+pkg syscall (freebsd-386), const RTF_PROTO3 ideal-int
+pkg syscall (freebsd-386), const RTF_REJECT ideal-int
+pkg syscall (freebsd-386), const RTF_RNH_LOCKED ideal-int
+pkg syscall (freebsd-386), const RTF_STATIC ideal-int
+pkg syscall (freebsd-386), const RTF_STICKY ideal-int
+pkg syscall (freebsd-386), const RTF_UP ideal-int
+pkg syscall (freebsd-386), const RTF_XRESOLVE ideal-int
+pkg syscall (freebsd-386), const RTM_ADD ideal-int
+pkg syscall (freebsd-386), const RTM_CHANGE ideal-int
+pkg syscall (freebsd-386), const RTM_DELADDR ideal-int
+pkg syscall (freebsd-386), const RTM_DELETE ideal-int
+pkg syscall (freebsd-386), const RTM_DELMADDR ideal-int
+pkg syscall (freebsd-386), const RTM_GET ideal-int
+pkg syscall (freebsd-386), const RTM_IEEE80211 ideal-int
+pkg syscall (freebsd-386), const RTM_IFANNOUNCE ideal-int
+pkg syscall (freebsd-386), const RTM_IFINFO ideal-int
+pkg syscall (freebsd-386), const RTM_LOCK ideal-int
+pkg syscall (freebsd-386), const RTM_LOSING ideal-int
+pkg syscall (freebsd-386), const RTM_MISS ideal-int
+pkg syscall (freebsd-386), const RTM_NEWADDR ideal-int
+pkg syscall (freebsd-386), const RTM_NEWMADDR ideal-int
+pkg syscall (freebsd-386), const RTM_OLDADD ideal-int
+pkg syscall (freebsd-386), const RTM_OLDDEL ideal-int
+pkg syscall (freebsd-386), const RTM_REDIRECT ideal-int
+pkg syscall (freebsd-386), const RTM_RESOLVE ideal-int
+pkg syscall (freebsd-386), const RTM_RTTUNIT ideal-int
+pkg syscall (freebsd-386), const RTM_VERSION ideal-int
+pkg syscall (freebsd-386), const RTV_EXPIRE ideal-int
+pkg syscall (freebsd-386), const RTV_HOPCOUNT ideal-int
+pkg syscall (freebsd-386), const RTV_MTU ideal-int
+pkg syscall (freebsd-386), const RTV_RPIPE ideal-int
+pkg syscall (freebsd-386), const RTV_RTT ideal-int
+pkg syscall (freebsd-386), const RTV_RTTVAR ideal-int
+pkg syscall (freebsd-386), const RTV_SPIPE ideal-int
+pkg syscall (freebsd-386), const RTV_SSTHRESH ideal-int
+pkg syscall (freebsd-386), const RTV_WEIGHT ideal-int
+pkg syscall (freebsd-386), const RUSAGE_CHILDREN ideal-int
+pkg syscall (freebsd-386), const RUSAGE_SELF ideal-int
+pkg syscall (freebsd-386), const RUSAGE_THREAD ideal-int
+pkg syscall (freebsd-386), const SCM_BINTIME ideal-int
+pkg syscall (freebsd-386), const SCM_CREDS ideal-int
+pkg syscall (freebsd-386), const SCM_RIGHTS ideal-int
+pkg syscall (freebsd-386), const SCM_TIMESTAMP ideal-int
+pkg syscall (freebsd-386), const SIGCHLD Signal
+pkg syscall (freebsd-386), const SIGCONT Signal
+pkg syscall (freebsd-386), const SIGEMT Signal
+pkg syscall (freebsd-386), const SIGINFO Signal
+pkg syscall (freebsd-386), const SIGIO Signal
+pkg syscall (freebsd-386), const SIGIOT Signal
+pkg syscall (freebsd-386), const SIGLWP Signal
+pkg syscall (freebsd-386), const SIGPROF Signal
+pkg syscall (freebsd-386), const SIGSTOP Signal
+pkg syscall (freebsd-386), const SIGSYS Signal
+pkg syscall (freebsd-386), const SIGTHR Signal
+pkg syscall (freebsd-386), const SIGTSTP Signal
+pkg syscall (freebsd-386), const SIGTTIN Signal
+pkg syscall (freebsd-386), const SIGTTOU Signal
+pkg syscall (freebsd-386), const SIGURG Signal
+pkg syscall (freebsd-386), const SIGUSR1 Signal
+pkg syscall (freebsd-386), const SIGUSR2 Signal
+pkg syscall (freebsd-386), const SIGVTALRM Signal
+pkg syscall (freebsd-386), const SIGWINCH Signal
+pkg syscall (freebsd-386), const SIGXCPU Signal
+pkg syscall (freebsd-386), const SIGXFSZ Signal
+pkg syscall (freebsd-386), const SIOCADDMULTI ideal-int
+pkg syscall (freebsd-386), const SIOCADDRT ideal-int
+pkg syscall (freebsd-386), const SIOCAIFADDR ideal-int
+pkg syscall (freebsd-386), const SIOCAIFGROUP ideal-int
+pkg syscall (freebsd-386), const SIOCALIFADDR ideal-int
+pkg syscall (freebsd-386), const SIOCATMARK ideal-int
+pkg syscall (freebsd-386), const SIOCDELMULTI ideal-int
+pkg syscall (freebsd-386), const SIOCDELRT ideal-int
+pkg syscall (freebsd-386), const SIOCDIFADDR ideal-int
+pkg syscall (freebsd-386), const SIOCDIFGROUP ideal-int
+pkg syscall (freebsd-386), const SIOCDIFPHYADDR ideal-int
+pkg syscall (freebsd-386), const SIOCDLIFADDR ideal-int
+pkg syscall (freebsd-386), const SIOCGDRVSPEC ideal-int
+pkg syscall (freebsd-386), const SIOCGETSGCNT ideal-int
+pkg syscall (freebsd-386), const SIOCGETVIFCNT ideal-int
+pkg syscall (freebsd-386), const SIOCGHIWAT ideal-int
+pkg syscall (freebsd-386), const SIOCGIFADDR ideal-int
+pkg syscall (freebsd-386), const SIOCGIFBRDADDR ideal-int
+pkg syscall (freebsd-386), const SIOCGIFCAP ideal-int
+pkg syscall (freebsd-386), const SIOCGIFCONF ideal-int
+pkg syscall (freebsd-386), const SIOCGIFDESCR ideal-int
+pkg syscall (freebsd-386), const SIOCGIFDSTADDR ideal-int
+pkg syscall (freebsd-386), const SIOCGIFFLAGS ideal-int
+pkg syscall (freebsd-386), const SIOCGIFGENERIC ideal-int
+pkg syscall (freebsd-386), const SIOCGIFGMEMB ideal-int
+pkg syscall (freebsd-386), const SIOCGIFGROUP ideal-int
+pkg syscall (freebsd-386), const SIOCGIFINDEX ideal-int
+pkg syscall (freebsd-386), const SIOCGIFMAC ideal-int
+pkg syscall (freebsd-386), const SIOCGIFMEDIA ideal-int
+pkg syscall (freebsd-386), const SIOCGIFMETRIC ideal-int
+pkg syscall (freebsd-386), const SIOCGIFMTU ideal-int
+pkg syscall (freebsd-386), const SIOCGIFNETMASK ideal-int
+pkg syscall (freebsd-386), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (freebsd-386), const SIOCGIFPHYS ideal-int
+pkg syscall (freebsd-386), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (freebsd-386), const SIOCGIFSTATUS ideal-int
+pkg syscall (freebsd-386), const SIOCGLIFADDR ideal-int
+pkg syscall (freebsd-386), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (freebsd-386), const SIOCGLOWAT ideal-int
+pkg syscall (freebsd-386), const SIOCGPGRP ideal-int
+pkg syscall (freebsd-386), const SIOCGPRIVATE_0 ideal-int
+pkg syscall (freebsd-386), const SIOCGPRIVATE_1 ideal-int
+pkg syscall (freebsd-386), const SIOCIFCREATE ideal-int
+pkg syscall (freebsd-386), const SIOCIFCREATE2 ideal-int
+pkg syscall (freebsd-386), const SIOCIFDESTROY ideal-int
+pkg syscall (freebsd-386), const SIOCIFGCLONERS ideal-int
+pkg syscall (freebsd-386), const SIOCSDRVSPEC ideal-int
+pkg syscall (freebsd-386), const SIOCSHIWAT ideal-int
+pkg syscall (freebsd-386), const SIOCSIFADDR ideal-int
+pkg syscall (freebsd-386), const SIOCSIFBRDADDR ideal-int
+pkg syscall (freebsd-386), const SIOCSIFCAP ideal-int
+pkg syscall (freebsd-386), const SIOCSIFDESCR ideal-int
+pkg syscall (freebsd-386), const SIOCSIFDSTADDR ideal-int
+pkg syscall (freebsd-386), const SIOCSIFFLAGS ideal-int
+pkg syscall (freebsd-386), const SIOCSIFGENERIC ideal-int
+pkg syscall (freebsd-386), const SIOCSIFLLADDR ideal-int
+pkg syscall (freebsd-386), const SIOCSIFMAC ideal-int
+pkg syscall (freebsd-386), const SIOCSIFMEDIA ideal-int
+pkg syscall (freebsd-386), const SIOCSIFMETRIC ideal-int
+pkg syscall (freebsd-386), const SIOCSIFMTU ideal-int
+pkg syscall (freebsd-386), const SIOCSIFNAME ideal-int
+pkg syscall (freebsd-386), const SIOCSIFNETMASK ideal-int
+pkg syscall (freebsd-386), const SIOCSIFPHYADDR ideal-int
+pkg syscall (freebsd-386), const SIOCSIFPHYS ideal-int
+pkg syscall (freebsd-386), const SIOCSIFRVNET ideal-int
+pkg syscall (freebsd-386), const SIOCSIFVNET ideal-int
+pkg syscall (freebsd-386), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (freebsd-386), const SIOCSLOWAT ideal-int
+pkg syscall (freebsd-386), const SIOCSPGRP ideal-int
+pkg syscall (freebsd-386), const SOCK_MAXADDRLEN ideal-int
+pkg syscall (freebsd-386), const SOCK_RDM ideal-int
+pkg syscall (freebsd-386), const SO_ACCEPTCONN ideal-int
+pkg syscall (freebsd-386), const SO_ACCEPTFILTER ideal-int
+pkg syscall (freebsd-386), const SO_BINTIME ideal-int
+pkg syscall (freebsd-386), const SO_DEBUG ideal-int
+pkg syscall (freebsd-386), const SO_ERROR ideal-int
+pkg syscall (freebsd-386), const SO_LABEL ideal-int
+pkg syscall (freebsd-386), const SO_LISTENINCQLEN ideal-int
+pkg syscall (freebsd-386), const SO_LISTENQLEN ideal-int
+pkg syscall (freebsd-386), const SO_LISTENQLIMIT ideal-int
+pkg syscall (freebsd-386), const SO_NOSIGPIPE ideal-int
+pkg syscall (freebsd-386), const SO_NO_DDP ideal-int
+pkg syscall (freebsd-386), const SO_NO_OFFLOAD ideal-int
+pkg syscall (freebsd-386), const SO_OOBINLINE ideal-int
+pkg syscall (freebsd-386), const SO_PEERLABEL ideal-int
+pkg syscall (freebsd-386), const SO_RCVLOWAT ideal-int
+pkg syscall (freebsd-386), const SO_RCVTIMEO ideal-int
+pkg syscall (freebsd-386), const SO_REUSEPORT ideal-int
+pkg syscall (freebsd-386), const SO_SETFIB ideal-int
+pkg syscall (freebsd-386), const SO_SNDLOWAT ideal-int
+pkg syscall (freebsd-386), const SO_SNDTIMEO ideal-int
+pkg syscall (freebsd-386), const SO_TIMESTAMP ideal-int
+pkg syscall (freebsd-386), const SO_TYPE ideal-int
+pkg syscall (freebsd-386), const SO_USELOOPBACK ideal-int
+pkg syscall (freebsd-386), const SYS_ABORT2 ideal-int
+pkg syscall (freebsd-386), const SYS_ACCEPT ideal-int
+pkg syscall (freebsd-386), const SYS_ACCESS ideal-int
+pkg syscall (freebsd-386), const SYS_ACCT ideal-int
+pkg syscall (freebsd-386), const SYS_ADJTIME ideal-int
+pkg syscall (freebsd-386), const SYS_AUDIT ideal-int
+pkg syscall (freebsd-386), const SYS_AUDITCTL ideal-int
+pkg syscall (freebsd-386), const SYS_AUDITON ideal-int
+pkg syscall (freebsd-386), const SYS_BIND ideal-int
+pkg syscall (freebsd-386), const SYS_CAP_ENTER ideal-int
+pkg syscall (freebsd-386), const SYS_CAP_GETMODE ideal-int
+pkg syscall (freebsd-386), const SYS_CAP_GETRIGHTS ideal-int
+pkg syscall (freebsd-386), const SYS_CAP_NEW ideal-int
+pkg syscall (freebsd-386), const SYS_CHDIR ideal-int
+pkg syscall (freebsd-386), const SYS_CHFLAGS ideal-int
+pkg syscall (freebsd-386), const SYS_CHMOD ideal-int
+pkg syscall (freebsd-386), const SYS_CHOWN ideal-int
+pkg syscall (freebsd-386), const SYS_CHROOT ideal-int
+pkg syscall (freebsd-386), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (freebsd-386), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (freebsd-386), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (freebsd-386), const SYS_CLOSE ideal-int
+pkg syscall (freebsd-386), const SYS_CLOSEFROM ideal-int
+pkg syscall (freebsd-386), const SYS_CONNECT ideal-int
+pkg syscall (freebsd-386), const SYS_CPUSET ideal-int
+pkg syscall (freebsd-386), const SYS_CPUSET_GETAFFINITY ideal-int
+pkg syscall (freebsd-386), const SYS_CPUSET_GETID ideal-int
+pkg syscall (freebsd-386), const SYS_CPUSET_SETAFFINITY ideal-int
+pkg syscall (freebsd-386), const SYS_CPUSET_SETID ideal-int
+pkg syscall (freebsd-386), const SYS_DUP ideal-int
+pkg syscall (freebsd-386), const SYS_DUP2 ideal-int
+pkg syscall (freebsd-386), const SYS_EACCESS ideal-int
+pkg syscall (freebsd-386), const SYS_EXECVE ideal-int
+pkg syscall (freebsd-386), const SYS_EXIT ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTRCTL ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (freebsd-386), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (freebsd-386), const SYS_FACCESSAT ideal-int
+pkg syscall (freebsd-386), const SYS_FCHDIR ideal-int
+pkg syscall (freebsd-386), const SYS_FCHFLAGS ideal-int
+pkg syscall (freebsd-386), const SYS_FCHMOD ideal-int
+pkg syscall (freebsd-386), const SYS_FCHMODAT ideal-int
+pkg syscall (freebsd-386), const SYS_FCHOWN ideal-int
+pkg syscall (freebsd-386), const SYS_FCHOWNAT ideal-int
+pkg syscall (freebsd-386), const SYS_FCNTL ideal-int
+pkg syscall (freebsd-386), const SYS_FEXECVE ideal-int
+pkg syscall (freebsd-386), const SYS_FFCLOCK_GETCOUNTER ideal-int
+pkg syscall (freebsd-386), const SYS_FFCLOCK_GETESTIMATE ideal-int
+pkg syscall (freebsd-386), const SYS_FFCLOCK_SETESTIMATE ideal-int
+pkg syscall (freebsd-386), const SYS_FHOPEN ideal-int
+pkg syscall (freebsd-386), const SYS_FHSTAT ideal-int
+pkg syscall (freebsd-386), const SYS_FHSTATFS ideal-int
+pkg syscall (freebsd-386), const SYS_FLOCK ideal-int
+pkg syscall (freebsd-386), const SYS_FORK ideal-int
+pkg syscall (freebsd-386), const SYS_FPATHCONF ideal-int
+pkg syscall (freebsd-386), const SYS_FREEBSD6_FTRUNCATE ideal-int
+pkg syscall (freebsd-386), const SYS_FREEBSD6_LSEEK ideal-int
+pkg syscall (freebsd-386), const SYS_FREEBSD6_MMAP ideal-int
+pkg syscall (freebsd-386), const SYS_FREEBSD6_PREAD ideal-int
+pkg syscall (freebsd-386), const SYS_FREEBSD6_PWRITE ideal-int
+pkg syscall (freebsd-386), const SYS_FREEBSD6_TRUNCATE ideal-int
+pkg syscall (freebsd-386), const SYS_FSTAT ideal-int
+pkg syscall (freebsd-386), const SYS_FSTATAT ideal-int
+pkg syscall (freebsd-386), const SYS_FSTATFS ideal-int
+pkg syscall (freebsd-386), const SYS_FSYNC ideal-int
+pkg syscall (freebsd-386), const SYS_FTRUNCATE ideal-int
+pkg syscall (freebsd-386), const SYS_FUTIMES ideal-int
+pkg syscall (freebsd-386), const SYS_FUTIMESAT ideal-int
+pkg syscall (freebsd-386), const SYS_GETAUDIT ideal-int
+pkg syscall (freebsd-386), const SYS_GETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-386), const SYS_GETAUID ideal-int
+pkg syscall (freebsd-386), const SYS_GETCONTEXT ideal-int
+pkg syscall (freebsd-386), const SYS_GETDENTS ideal-int
+pkg syscall (freebsd-386), const SYS_GETDIRENTRIES ideal-int
+pkg syscall (freebsd-386), const SYS_GETDTABLESIZE ideal-int
+pkg syscall (freebsd-386), const SYS_GETEGID ideal-int
+pkg syscall (freebsd-386), const SYS_GETEUID ideal-int
+pkg syscall (freebsd-386), const SYS_GETFH ideal-int
+pkg syscall (freebsd-386), const SYS_GETFSSTAT ideal-int
+pkg syscall (freebsd-386), const SYS_GETGID ideal-int
+pkg syscall (freebsd-386), const SYS_GETGROUPS ideal-int
+pkg syscall (freebsd-386), const SYS_GETITIMER ideal-int
+pkg syscall (freebsd-386), const SYS_GETLOGIN ideal-int
+pkg syscall (freebsd-386), const SYS_GETLOGINCLASS ideal-int
+pkg syscall (freebsd-386), const SYS_GETPEERNAME ideal-int
+pkg syscall (freebsd-386), const SYS_GETPGID ideal-int
+pkg syscall (freebsd-386), const SYS_GETPGRP ideal-int
+pkg syscall (freebsd-386), const SYS_GETPID ideal-int
+pkg syscall (freebsd-386), const SYS_GETPPID ideal-int
+pkg syscall (freebsd-386), const SYS_GETPRIORITY ideal-int
+pkg syscall (freebsd-386), const SYS_GETRESGID ideal-int
+pkg syscall (freebsd-386), const SYS_GETRESUID ideal-int
+pkg syscall (freebsd-386), const SYS_GETRLIMIT ideal-int
+pkg syscall (freebsd-386), const SYS_GETRUSAGE ideal-int
+pkg syscall (freebsd-386), const SYS_GETSID ideal-int
+pkg syscall (freebsd-386), const SYS_GETSOCKNAME ideal-int
+pkg syscall (freebsd-386), const SYS_GETSOCKOPT ideal-int
+pkg syscall (freebsd-386), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (freebsd-386), const SYS_GETUID ideal-int
+pkg syscall (freebsd-386), const SYS_IOCTL ideal-int
+pkg syscall (freebsd-386), const SYS_ISSETUGID ideal-int
+pkg syscall (freebsd-386), const SYS_JAIL ideal-int
+pkg syscall (freebsd-386), const SYS_JAIL_ATTACH ideal-int
+pkg syscall (freebsd-386), const SYS_JAIL_GET ideal-int
+pkg syscall (freebsd-386), const SYS_JAIL_REMOVE ideal-int
+pkg syscall (freebsd-386), const SYS_JAIL_SET ideal-int
+pkg syscall (freebsd-386), const SYS_KENV ideal-int
+pkg syscall (freebsd-386), const SYS_KEVENT ideal-int
+pkg syscall (freebsd-386), const SYS_KILL ideal-int
+pkg syscall (freebsd-386), const SYS_KLDFIND ideal-int
+pkg syscall (freebsd-386), const SYS_KLDFIRSTMOD ideal-int
+pkg syscall (freebsd-386), const SYS_KLDLOAD ideal-int
+pkg syscall (freebsd-386), const SYS_KLDNEXT ideal-int
+pkg syscall (freebsd-386), const SYS_KLDSTAT ideal-int
+pkg syscall (freebsd-386), const SYS_KLDSYM ideal-int
+pkg syscall (freebsd-386), const SYS_KLDUNLOAD ideal-int
+pkg syscall (freebsd-386), const SYS_KLDUNLOADF ideal-int
+pkg syscall (freebsd-386), const SYS_KQUEUE ideal-int
+pkg syscall (freebsd-386), const SYS_KTIMER_CREATE ideal-int
+pkg syscall (freebsd-386), const SYS_KTIMER_DELETE ideal-int
+pkg syscall (freebsd-386), const SYS_KTIMER_GETOVERRUN ideal-int
+pkg syscall (freebsd-386), const SYS_KTIMER_GETTIME ideal-int
+pkg syscall (freebsd-386), const SYS_KTIMER_SETTIME ideal-int
+pkg syscall (freebsd-386), const SYS_KTRACE ideal-int
+pkg syscall (freebsd-386), const SYS_LCHFLAGS ideal-int
+pkg syscall (freebsd-386), const SYS_LCHMOD ideal-int
+pkg syscall (freebsd-386), const SYS_LCHOWN ideal-int
+pkg syscall (freebsd-386), const SYS_LGETFH ideal-int
+pkg syscall (freebsd-386), const SYS_LINK ideal-int
+pkg syscall (freebsd-386), const SYS_LINKAT ideal-int
+pkg syscall (freebsd-386), const SYS_LISTEN ideal-int
+pkg syscall (freebsd-386), const SYS_LPATHCONF ideal-int
+pkg syscall (freebsd-386), const SYS_LSEEK ideal-int
+pkg syscall (freebsd-386), const SYS_LSTAT ideal-int
+pkg syscall (freebsd-386), const SYS_LUTIMES ideal-int
+pkg syscall (freebsd-386), const SYS_MAC_SYSCALL ideal-int
+pkg syscall (freebsd-386), const SYS_MADVISE ideal-int
+pkg syscall (freebsd-386), const SYS_MINCORE ideal-int
+pkg syscall (freebsd-386), const SYS_MINHERIT ideal-int
+pkg syscall (freebsd-386), const SYS_MKDIR ideal-int
+pkg syscall (freebsd-386), const SYS_MKDIRAT ideal-int
+pkg syscall (freebsd-386), const SYS_MKFIFO ideal-int
+pkg syscall (freebsd-386), const SYS_MKFIFOAT ideal-int
+pkg syscall (freebsd-386), const SYS_MKNOD ideal-int
+pkg syscall (freebsd-386), const SYS_MKNODAT ideal-int
+pkg syscall (freebsd-386), const SYS_MLOCK ideal-int
+pkg syscall (freebsd-386), const SYS_MLOCKALL ideal-int
+pkg syscall (freebsd-386), const SYS_MMAP ideal-int
+pkg syscall (freebsd-386), const SYS_MODFIND ideal-int
+pkg syscall (freebsd-386), const SYS_MODFNEXT ideal-int
+pkg syscall (freebsd-386), const SYS_MODNEXT ideal-int
+pkg syscall (freebsd-386), const SYS_MODSTAT ideal-int
+pkg syscall (freebsd-386), const SYS_MOUNT ideal-int
+pkg syscall (freebsd-386), const SYS_MPROTECT ideal-int
+pkg syscall (freebsd-386), const SYS_MSYNC ideal-int
+pkg syscall (freebsd-386), const SYS_MUNLOCK ideal-int
+pkg syscall (freebsd-386), const SYS_MUNLOCKALL ideal-int
+pkg syscall (freebsd-386), const SYS_MUNMAP ideal-int
+pkg syscall (freebsd-386), const SYS_NANOSLEEP ideal-int
+pkg syscall (freebsd-386), const SYS_NFSTAT ideal-int
+pkg syscall (freebsd-386), const SYS_NLSTAT ideal-int
+pkg syscall (freebsd-386), const SYS_NMOUNT ideal-int
+pkg syscall (freebsd-386), const SYS_NSTAT ideal-int
+pkg syscall (freebsd-386), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (freebsd-386), const SYS_NTP_GETTIME ideal-int
+pkg syscall (freebsd-386), const SYS_OBREAK ideal-int
+pkg syscall (freebsd-386), const SYS_OPEN ideal-int
+pkg syscall (freebsd-386), const SYS_OPENAT ideal-int
+pkg syscall (freebsd-386), const SYS_OPENBSD_POLL ideal-int
+pkg syscall (freebsd-386), const SYS_OVADVISE ideal-int
+pkg syscall (freebsd-386), const SYS_PATHCONF ideal-int
+pkg syscall (freebsd-386), const SYS_PDFORK ideal-int
+pkg syscall (freebsd-386), const SYS_PDGETPID ideal-int
+pkg syscall (freebsd-386), const SYS_PDKILL ideal-int
+pkg syscall (freebsd-386), const SYS_PIPE ideal-int
+pkg syscall (freebsd-386), const SYS_POLL ideal-int
+pkg syscall (freebsd-386), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (freebsd-386), const SYS_POSIX_FALLOCATE ideal-int
+pkg syscall (freebsd-386), const SYS_POSIX_OPENPT ideal-int
+pkg syscall (freebsd-386), const SYS_PREAD ideal-int
+pkg syscall (freebsd-386), const SYS_PREADV ideal-int
+pkg syscall (freebsd-386), const SYS_PROFIL ideal-int
+pkg syscall (freebsd-386), const SYS_PSELECT ideal-int
+pkg syscall (freebsd-386), const SYS_PTRACE ideal-int
+pkg syscall (freebsd-386), const SYS_PWRITE ideal-int
+pkg syscall (freebsd-386), const SYS_PWRITEV ideal-int
+pkg syscall (freebsd-386), const SYS_QUOTACTL ideal-int
+pkg syscall (freebsd-386), const SYS_RCTL_ADD_RULE ideal-int
+pkg syscall (freebsd-386), const SYS_RCTL_GET_LIMITS ideal-int
+pkg syscall (freebsd-386), const SYS_RCTL_GET_RACCT ideal-int
+pkg syscall (freebsd-386), const SYS_RCTL_GET_RULES ideal-int
+pkg syscall (freebsd-386), const SYS_RCTL_REMOVE_RULE ideal-int
+pkg syscall (freebsd-386), const SYS_READ ideal-int
+pkg syscall (freebsd-386), const SYS_READLINK ideal-int
+pkg syscall (freebsd-386), const SYS_READLINKAT ideal-int
+pkg syscall (freebsd-386), const SYS_READV ideal-int
+pkg syscall (freebsd-386), const SYS_REBOOT ideal-int
+pkg syscall (freebsd-386), const SYS_RECVFROM ideal-int
+pkg syscall (freebsd-386), const SYS_RECVMSG ideal-int
+pkg syscall (freebsd-386), const SYS_RENAME ideal-int
+pkg syscall (freebsd-386), const SYS_RENAMEAT ideal-int
+pkg syscall (freebsd-386), const SYS_REVOKE ideal-int
+pkg syscall (freebsd-386), const SYS_RFORK ideal-int
+pkg syscall (freebsd-386), const SYS_RMDIR ideal-int
+pkg syscall (freebsd-386), const SYS_RTPRIO ideal-int
+pkg syscall (freebsd-386), const SYS_RTPRIO_THREAD ideal-int
+pkg syscall (freebsd-386), const SYS_SBRK ideal-int
+pkg syscall (freebsd-386), const SYS_SCHED_GETPARAM ideal-int
+pkg syscall (freebsd-386), const SYS_SCHED_GETSCHEDULER ideal-int
+pkg syscall (freebsd-386), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
+pkg syscall (freebsd-386), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
+pkg syscall (freebsd-386), const SYS_SCHED_RR_GET_INTERVAL ideal-int
+pkg syscall (freebsd-386), const SYS_SCHED_SETPARAM ideal-int
+pkg syscall (freebsd-386), const SYS_SCHED_SETSCHEDULER ideal-int
+pkg syscall (freebsd-386), const SYS_SCHED_YIELD ideal-int
+pkg syscall (freebsd-386), const SYS_SCTP_GENERIC_RECVMSG ideal-int
+pkg syscall (freebsd-386), const SYS_SCTP_GENERIC_SENDMSG ideal-int
+pkg syscall (freebsd-386), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int
+pkg syscall (freebsd-386), const SYS_SCTP_PEELOFF ideal-int
+pkg syscall (freebsd-386), const SYS_SELECT ideal-int
+pkg syscall (freebsd-386), const SYS_SENDFILE ideal-int
+pkg syscall (freebsd-386), const SYS_SENDMSG ideal-int
+pkg syscall (freebsd-386), const SYS_SENDTO ideal-int
+pkg syscall (freebsd-386), const SYS_SETAUDIT ideal-int
+pkg syscall (freebsd-386), const SYS_SETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-386), const SYS_SETAUID ideal-int
+pkg syscall (freebsd-386), const SYS_SETCONTEXT ideal-int
+pkg syscall (freebsd-386), const SYS_SETEGID ideal-int
+pkg syscall (freebsd-386), const SYS_SETEUID ideal-int
+pkg syscall (freebsd-386), const SYS_SETFIB ideal-int
+pkg syscall (freebsd-386), const SYS_SETGID ideal-int
+pkg syscall (freebsd-386), const SYS_SETGROUPS ideal-int
+pkg syscall (freebsd-386), const SYS_SETITIMER ideal-int
+pkg syscall (freebsd-386), const SYS_SETLOGIN ideal-int
+pkg syscall (freebsd-386), const SYS_SETLOGINCLASS ideal-int
+pkg syscall (freebsd-386), const SYS_SETPGID ideal-int
+pkg syscall (freebsd-386), const SYS_SETPRIORITY ideal-int
+pkg syscall (freebsd-386), const SYS_SETREGID ideal-int
+pkg syscall (freebsd-386), const SYS_SETRESGID ideal-int
+pkg syscall (freebsd-386), const SYS_SETRESUID ideal-int
+pkg syscall (freebsd-386), const SYS_SETREUID ideal-int
+pkg syscall (freebsd-386), const SYS_SETRLIMIT ideal-int
+pkg syscall (freebsd-386), const SYS_SETSID ideal-int
+pkg syscall (freebsd-386), const SYS_SETSOCKOPT ideal-int
+pkg syscall (freebsd-386), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (freebsd-386), const SYS_SETUID ideal-int
+pkg syscall (freebsd-386), const SYS_SHM_OPEN ideal-int
+pkg syscall (freebsd-386), const SYS_SHM_UNLINK ideal-int
+pkg syscall (freebsd-386), const SYS_SHUTDOWN ideal-int
+pkg syscall (freebsd-386), const SYS_SIGACTION ideal-int
+pkg syscall (freebsd-386), const SYS_SIGALTSTACK ideal-int
+pkg syscall (freebsd-386), const SYS_SIGPENDING ideal-int
+pkg syscall (freebsd-386), const SYS_SIGPROCMASK ideal-int
+pkg syscall (freebsd-386), const SYS_SIGQUEUE ideal-int
+pkg syscall (freebsd-386), const SYS_SIGRETURN ideal-int
+pkg syscall (freebsd-386), const SYS_SIGSUSPEND ideal-int
+pkg syscall (freebsd-386), const SYS_SIGTIMEDWAIT ideal-int
+pkg syscall (freebsd-386), const SYS_SIGWAIT ideal-int
+pkg syscall (freebsd-386), const SYS_SIGWAITINFO ideal-int
+pkg syscall (freebsd-386), const SYS_SOCKET ideal-int
+pkg syscall (freebsd-386), const SYS_SOCKETPAIR ideal-int
+pkg syscall (freebsd-386), const SYS_SSTK ideal-int
+pkg syscall (freebsd-386), const SYS_STAT ideal-int
+pkg syscall (freebsd-386), const SYS_STATFS ideal-int
+pkg syscall (freebsd-386), const SYS_SWAPCONTEXT ideal-int
+pkg syscall (freebsd-386), const SYS_SWAPOFF ideal-int
+pkg syscall (freebsd-386), const SYS_SWAPON ideal-int
+pkg syscall (freebsd-386), const SYS_SYMLINK ideal-int
+pkg syscall (freebsd-386), const SYS_SYMLINKAT ideal-int
+pkg syscall (freebsd-386), const SYS_SYNC ideal-int
+pkg syscall (freebsd-386), const SYS_SYSARCH ideal-int
+pkg syscall (freebsd-386), const SYS_THR_CREATE ideal-int
+pkg syscall (freebsd-386), const SYS_THR_EXIT ideal-int
+pkg syscall (freebsd-386), const SYS_THR_KILL ideal-int
+pkg syscall (freebsd-386), const SYS_THR_KILL2 ideal-int
+pkg syscall (freebsd-386), const SYS_THR_NEW ideal-int
+pkg syscall (freebsd-386), const SYS_THR_SELF ideal-int
+pkg syscall (freebsd-386), const SYS_THR_SET_NAME ideal-int
+pkg syscall (freebsd-386), const SYS_THR_SUSPEND ideal-int
+pkg syscall (freebsd-386), const SYS_THR_WAKE ideal-int
+pkg syscall (freebsd-386), const SYS_TRUNCATE ideal-int
+pkg syscall (freebsd-386), const SYS_UMASK ideal-int
+pkg syscall (freebsd-386), const SYS_UNDELETE ideal-int
+pkg syscall (freebsd-386), const SYS_UNLINK ideal-int
+pkg syscall (freebsd-386), const SYS_UNLINKAT ideal-int
+pkg syscall (freebsd-386), const SYS_UNMOUNT ideal-int
+pkg syscall (freebsd-386), const SYS_UTIMES ideal-int
+pkg syscall (freebsd-386), const SYS_UTRACE ideal-int
+pkg syscall (freebsd-386), const SYS_UUIDGEN ideal-int
+pkg syscall (freebsd-386), const SYS_VFORK ideal-int
+pkg syscall (freebsd-386), const SYS_WAIT4 ideal-int
+pkg syscall (freebsd-386), const SYS_WRITE ideal-int
+pkg syscall (freebsd-386), const SYS_WRITEV ideal-int
+pkg syscall (freebsd-386), const SYS_YIELD ideal-int
+pkg syscall (freebsd-386), const SYS__UMTX_LOCK ideal-int
+pkg syscall (freebsd-386), const SYS__UMTX_OP ideal-int
+pkg syscall (freebsd-386), const SYS__UMTX_UNLOCK ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_ACLCHECK_FD ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_ACLCHECK_FILE ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_ACLCHECK_LINK ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_DELETE_FD ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_DELETE_FILE ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_DELETE_LINK ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_GET_FD ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_GET_FILE ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_GET_LINK ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_SET_FD ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_SET_FILE ideal-int
+pkg syscall (freebsd-386), const SYS___ACL_SET_LINK ideal-int
+pkg syscall (freebsd-386), const SYS___GETCWD ideal-int
+pkg syscall (freebsd-386), const SYS___MAC_EXECVE ideal-int
+pkg syscall (freebsd-386), const SYS___MAC_GET_FD ideal-int
+pkg syscall (freebsd-386), const SYS___MAC_GET_FILE ideal-int
+pkg syscall (freebsd-386), const SYS___MAC_GET_LINK ideal-int
+pkg syscall (freebsd-386), const SYS___MAC_GET_PID ideal-int
+pkg syscall (freebsd-386), const SYS___MAC_GET_PROC ideal-int
+pkg syscall (freebsd-386), const SYS___MAC_SET_FD ideal-int
+pkg syscall (freebsd-386), const SYS___MAC_SET_FILE ideal-int
+pkg syscall (freebsd-386), const SYS___MAC_SET_LINK ideal-int
+pkg syscall (freebsd-386), const SYS___MAC_SET_PROC ideal-int
+pkg syscall (freebsd-386), const SYS___SETUGID ideal-int
+pkg syscall (freebsd-386), const SYS___SYSCTL ideal-int
+pkg syscall (freebsd-386), const SizeofBpfHdr ideal-int
+pkg syscall (freebsd-386), const SizeofBpfInsn ideal-int
+pkg syscall (freebsd-386), const SizeofBpfProgram ideal-int
+pkg syscall (freebsd-386), const SizeofBpfStat ideal-int
+pkg syscall (freebsd-386), const SizeofBpfVersion ideal-int
+pkg syscall (freebsd-386), const SizeofBpfZbuf ideal-int
+pkg syscall (freebsd-386), const SizeofBpfZbufHeader ideal-int
+pkg syscall (freebsd-386), const SizeofCmsghdr ideal-int
+pkg syscall (freebsd-386), const SizeofIPMreq ideal-int
+pkg syscall (freebsd-386), const SizeofIPMreqn ideal-int
+pkg syscall (freebsd-386), const SizeofIPv6Mreq ideal-int
+pkg syscall (freebsd-386), const SizeofIfData ideal-int
+pkg syscall (freebsd-386), const SizeofIfMsghdr ideal-int
+pkg syscall (freebsd-386), const SizeofIfaMsghdr ideal-int
+pkg syscall (freebsd-386), const SizeofIfmaMsghdr ideal-int
+pkg syscall (freebsd-386), const SizeofInet6Pktinfo ideal-int
+pkg syscall (freebsd-386), const SizeofLinger ideal-int
+pkg syscall (freebsd-386), const SizeofMsghdr ideal-int
+pkg syscall (freebsd-386), const SizeofRtMetrics ideal-int
+pkg syscall (freebsd-386), const SizeofRtMsghdr ideal-int
+pkg syscall (freebsd-386), const SizeofSockaddrAny ideal-int
+pkg syscall (freebsd-386), const SizeofSockaddrDatalink ideal-int
+pkg syscall (freebsd-386), const SizeofSockaddrInet4 ideal-int
+pkg syscall (freebsd-386), const SizeofSockaddrInet6 ideal-int
+pkg syscall (freebsd-386), const SizeofSockaddrUnix ideal-int
+pkg syscall (freebsd-386), const TCP_CA_NAME_MAX ideal-int
+pkg syscall (freebsd-386), const TCP_CONGESTION ideal-int
+pkg syscall (freebsd-386), const TCP_INFO ideal-int
+pkg syscall (freebsd-386), const TCP_MAXBURST ideal-int
+pkg syscall (freebsd-386), const TCP_MAXHLEN ideal-int
+pkg syscall (freebsd-386), const TCP_MAXOLEN ideal-int
+pkg syscall (freebsd-386), const TCP_MAXSEG ideal-int
+pkg syscall (freebsd-386), const TCP_MAXWIN ideal-int
+pkg syscall (freebsd-386), const TCP_MAX_SACK ideal-int
+pkg syscall (freebsd-386), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (freebsd-386), const TCP_MD5SIG ideal-int
+pkg syscall (freebsd-386), const TCP_MINMSS ideal-int
+pkg syscall (freebsd-386), const TCP_MSS ideal-int
+pkg syscall (freebsd-386), const TCP_NOOPT ideal-int
+pkg syscall (freebsd-386), const TCP_NOPUSH ideal-int
+pkg syscall (freebsd-386), const TIOCCBRK ideal-int
+pkg syscall (freebsd-386), const TIOCCDTR ideal-int
+pkg syscall (freebsd-386), const TIOCCONS ideal-int
+pkg syscall (freebsd-386), const TIOCDRAIN ideal-int
+pkg syscall (freebsd-386), const TIOCEXCL ideal-int
+pkg syscall (freebsd-386), const TIOCEXT ideal-int
+pkg syscall (freebsd-386), const TIOCFLUSH ideal-int
+pkg syscall (freebsd-386), const TIOCGDRAINWAIT ideal-int
+pkg syscall (freebsd-386), const TIOCGETA ideal-int
+pkg syscall (freebsd-386), const TIOCGETD ideal-int
+pkg syscall (freebsd-386), const TIOCGPGRP ideal-int
+pkg syscall (freebsd-386), const TIOCGPTN ideal-int
+pkg syscall (freebsd-386), const TIOCGSID ideal-int
+pkg syscall (freebsd-386), const TIOCGWINSZ ideal-int
+pkg syscall (freebsd-386), const TIOCMBIC ideal-int
+pkg syscall (freebsd-386), const TIOCMBIS ideal-int
+pkg syscall (freebsd-386), const TIOCMGDTRWAIT ideal-int
+pkg syscall (freebsd-386), const TIOCMGET ideal-int
+pkg syscall (freebsd-386), const TIOCMSDTRWAIT ideal-int
+pkg syscall (freebsd-386), const TIOCMSET ideal-int
+pkg syscall (freebsd-386), const TIOCM_CAR ideal-int
+pkg syscall (freebsd-386), const TIOCM_CD ideal-int
+pkg syscall (freebsd-386), const TIOCM_CTS ideal-int
+pkg syscall (freebsd-386), const TIOCM_DCD ideal-int
+pkg syscall (freebsd-386), const TIOCM_DSR ideal-int
+pkg syscall (freebsd-386), const TIOCM_DTR ideal-int
+pkg syscall (freebsd-386), const TIOCM_LE ideal-int
+pkg syscall (freebsd-386), const TIOCM_RI ideal-int
+pkg syscall (freebsd-386), const TIOCM_RNG ideal-int
+pkg syscall (freebsd-386), const TIOCM_RTS ideal-int
+pkg syscall (freebsd-386), const TIOCM_SR ideal-int
+pkg syscall (freebsd-386), const TIOCM_ST ideal-int
+pkg syscall (freebsd-386), const TIOCNOTTY ideal-int
+pkg syscall (freebsd-386), const TIOCNXCL ideal-int
+pkg syscall (freebsd-386), const TIOCOUTQ ideal-int
+pkg syscall (freebsd-386), const TIOCPKT ideal-int
+pkg syscall (freebsd-386), const TIOCPKT_DATA ideal-int
+pkg syscall (freebsd-386), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (freebsd-386), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (freebsd-386), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (freebsd-386), const TIOCPKT_IOCTL ideal-int
+pkg syscall (freebsd-386), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (freebsd-386), const TIOCPKT_START ideal-int
+pkg syscall (freebsd-386), const TIOCPKT_STOP ideal-int
+pkg syscall (freebsd-386), const TIOCPTMASTER ideal-int
+pkg syscall (freebsd-386), const TIOCSBRK ideal-int
+pkg syscall (freebsd-386), const TIOCSCTTY ideal-int
+pkg syscall (freebsd-386), const TIOCSDRAINWAIT ideal-int
+pkg syscall (freebsd-386), const TIOCSDTR ideal-int
+pkg syscall (freebsd-386), const TIOCSETA ideal-int
+pkg syscall (freebsd-386), const TIOCSETAF ideal-int
+pkg syscall (freebsd-386), const TIOCSETAW ideal-int
+pkg syscall (freebsd-386), const TIOCSETD ideal-int
+pkg syscall (freebsd-386), const TIOCSIG ideal-int
+pkg syscall (freebsd-386), const TIOCSPGRP ideal-int
+pkg syscall (freebsd-386), const TIOCSTART ideal-int
+pkg syscall (freebsd-386), const TIOCSTAT ideal-int
+pkg syscall (freebsd-386), const TIOCSTI ideal-int
+pkg syscall (freebsd-386), const TIOCSTOP ideal-int
+pkg syscall (freebsd-386), const TIOCSWINSZ ideal-int
+pkg syscall (freebsd-386), const TIOCTIMESTAMP ideal-int
+pkg syscall (freebsd-386), const TIOCUCNTL ideal-int
+pkg syscall (freebsd-386), const WCONTINUED ideal-int
+pkg syscall (freebsd-386), const WCOREFLAG ideal-int
+pkg syscall (freebsd-386), const WLINUXCLONE ideal-int
+pkg syscall (freebsd-386), const WNOHANG ideal-int
+pkg syscall (freebsd-386), const WNOWAIT ideal-int
+pkg syscall (freebsd-386), const WSTOPPED ideal-int
+pkg syscall (freebsd-386), const WUNTRACED ideal-int
+pkg syscall (freebsd-386), func Accept(int) (int, Sockaddr, error)
+pkg syscall (freebsd-386), func Access(string, uint32) error
+pkg syscall (freebsd-386), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (freebsd-386), func Bind(int, Sockaddr) error
+pkg syscall (freebsd-386), func BpfBuflen(int) (int, error)
+pkg syscall (freebsd-386), func BpfDatalink(int) (int, error)
+pkg syscall (freebsd-386), func BpfHeadercmpl(int) (int, error)
+pkg syscall (freebsd-386), func BpfInterface(int, string) (string, error)
+pkg syscall (freebsd-386), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (freebsd-386), func BpfStats(int) (*BpfStat, error)
+pkg syscall (freebsd-386), func BpfStmt(int, int) *BpfInsn
+pkg syscall (freebsd-386), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (freebsd-386), func CheckBpfVersion(int) error
+pkg syscall (freebsd-386), func Chflags(string, int) error
+pkg syscall (freebsd-386), func Chroot(string) error
+pkg syscall (freebsd-386), func Close(int) error
+pkg syscall (freebsd-386), func CloseOnExec(int)
+pkg syscall (freebsd-386), func CmsgLen(int) int
+pkg syscall (freebsd-386), func CmsgSpace(int) int
+pkg syscall (freebsd-386), func Connect(int, Sockaddr) error
+pkg syscall (freebsd-386), func Dup(int) (int, error)
+pkg syscall (freebsd-386), func Dup2(int, int) error
+pkg syscall (freebsd-386), func Fchdir(int) error
+pkg syscall (freebsd-386), func Fchflags(string, int) error
+pkg syscall (freebsd-386), func Fchmod(int, uint32) error
+pkg syscall (freebsd-386), func Fchown(int, int, int) error
+pkg syscall (freebsd-386), func Flock(int, int) error
+pkg syscall (freebsd-386), func FlushBpf(int) error
+pkg syscall (freebsd-386), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (freebsd-386), func Fpathconf(int, int) (int, error)
+pkg syscall (freebsd-386), func Fstat(int, *Stat_t) error
+pkg syscall (freebsd-386), func Fstatfs(int, *Statfs_t) error
+pkg syscall (freebsd-386), func Fsync(int) error
+pkg syscall (freebsd-386), func Ftruncate(int, int64) error
+pkg syscall (freebsd-386), func Futimes(int, []Timeval) error
+pkg syscall (freebsd-386), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (freebsd-386), func Getdtablesize() int
+pkg syscall (freebsd-386), func Getfsstat([]Statfs_t, int) (int, error)
+pkg syscall (freebsd-386), func Getpeername(int) (Sockaddr, error)
+pkg syscall (freebsd-386), func Getpgid(int) (int, error)
+pkg syscall (freebsd-386), func Getpgrp() int
+pkg syscall (freebsd-386), func Getpriority(int, int) (int, error)
+pkg syscall (freebsd-386), func Getrlimit(int, *Rlimit) error
+pkg syscall (freebsd-386), func Getrusage(int, *Rusage) error
+pkg syscall (freebsd-386), func Getsid(int) (int, error)
+pkg syscall (freebsd-386), func Getsockname(int) (Sockaddr, error)
+pkg syscall (freebsd-386), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (freebsd-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (freebsd-386), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (freebsd-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (freebsd-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (freebsd-386), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (freebsd-386), func Issetugid() bool
+pkg syscall (freebsd-386), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (freebsd-386), func Kill(int, Signal) error
+pkg syscall (freebsd-386), func Kqueue() (int, error)
+pkg syscall (freebsd-386), func Listen(int, int) error
+pkg syscall (freebsd-386), func Lstat(string, *Stat_t) error
+pkg syscall (freebsd-386), func Mkfifo(string, uint32) error
+pkg syscall (freebsd-386), func Mknod(string, uint32, int) error
+pkg syscall (freebsd-386), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (freebsd-386), func Munmap([]uint8) error
+pkg syscall (freebsd-386), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (freebsd-386), func NsecToTimespec(int64) Timespec
+pkg syscall (freebsd-386), func Open(string, int, uint32) (int, error)
+pkg syscall (freebsd-386), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (freebsd-386), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (freebsd-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (freebsd-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (freebsd-386), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (freebsd-386), func Pathconf(string, int) (int, error)
+pkg syscall (freebsd-386), func Pipe([]int) error
+pkg syscall (freebsd-386), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-386), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-386), func Read(int, []uint8) (int, error)
+pkg syscall (freebsd-386), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (freebsd-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (freebsd-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (freebsd-386), func Revoke(string) error
+pkg syscall (freebsd-386), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (freebsd-386), func Seek(int, int64, int) (int64, error)
+pkg syscall (freebsd-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (freebsd-386), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (freebsd-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (freebsd-386), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (freebsd-386), func SetBpf(int, []BpfInsn) error
+pkg syscall (freebsd-386), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (freebsd-386), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (freebsd-386), func SetBpfHeadercmpl(int, int) error
+pkg syscall (freebsd-386), func SetBpfImmediate(int, int) error
+pkg syscall (freebsd-386), func SetBpfInterface(int, string) error
+pkg syscall (freebsd-386), func SetBpfPromisc(int, int) error
+pkg syscall (freebsd-386), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (freebsd-386), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (freebsd-386), func SetNonblock(int, bool) error
+pkg syscall (freebsd-386), func Setegid(int) error
+pkg syscall (freebsd-386), func Seteuid(int) error
+pkg syscall (freebsd-386), func Setgid(int) error
+pkg syscall (freebsd-386), func Setgroups([]int) error
+pkg syscall (freebsd-386), func Setlogin(string) error
+pkg syscall (freebsd-386), func Setpgid(int, int) error
+pkg syscall (freebsd-386), func Setpriority(int, int, int) error
+pkg syscall (freebsd-386), func Setregid(int, int) error
+pkg syscall (freebsd-386), func Setreuid(int, int) error
+pkg syscall (freebsd-386), func Setrlimit(int, *Rlimit) error
+pkg syscall (freebsd-386), func Setsid() (int, error)
+pkg syscall (freebsd-386), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (freebsd-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (freebsd-386), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (freebsd-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (freebsd-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (freebsd-386), func SetsockoptInt(int, int, int, int) error
+pkg syscall (freebsd-386), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (freebsd-386), func SetsockoptString(int, int, int, string) error
+pkg syscall (freebsd-386), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (freebsd-386), func Settimeofday(*Timeval) error
+pkg syscall (freebsd-386), func Setuid(int) error
+pkg syscall (freebsd-386), func Shutdown(int, int) error
+pkg syscall (freebsd-386), func Socket(int, int, int) (int, error)
+pkg syscall (freebsd-386), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (freebsd-386), func Stat(string, *Stat_t) error
+pkg syscall (freebsd-386), func Statfs(string, *Statfs_t) error
+pkg syscall (freebsd-386), func StringSlicePtr([]string) []*uint8
+pkg syscall (freebsd-386), func Sync() error
+pkg syscall (freebsd-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-386), func Sysctl(string) (string, error)
+pkg syscall (freebsd-386), func SysctlUint32(string) (uint32, error)
+pkg syscall (freebsd-386), func TimespecToNsec(Timespec) int64
+pkg syscall (freebsd-386), func TimevalToNsec(Timeval) int64
+pkg syscall (freebsd-386), func Truncate(string, int64) error
+pkg syscall (freebsd-386), func Umask(int) int
+pkg syscall (freebsd-386), func Undelete(string) error
+pkg syscall (freebsd-386), func UnixRights(...int) []uint8
+pkg syscall (freebsd-386), func Unmount(string, int) error
+pkg syscall (freebsd-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (freebsd-386), func Write(int, []uint8) (int, error)
+pkg syscall (freebsd-386), method (*Cmsghdr) SetLen(int)
+pkg syscall (freebsd-386), method (*Iovec) SetLen(int)
+pkg syscall (freebsd-386), method (*Msghdr) SetControllen(int)
+pkg syscall (freebsd-386), type BpfHdr struct
+pkg syscall (freebsd-386), type BpfHdr struct, Caplen uint32
+pkg syscall (freebsd-386), type BpfHdr struct, Datalen uint32
+pkg syscall (freebsd-386), type BpfHdr struct, Hdrlen uint16
+pkg syscall (freebsd-386), type BpfHdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-386), type BpfHdr struct, Tstamp Timeval
+pkg syscall (freebsd-386), type BpfInsn struct
+pkg syscall (freebsd-386), type BpfInsn struct, Code uint16
+pkg syscall (freebsd-386), type BpfInsn struct, Jf uint8
+pkg syscall (freebsd-386), type BpfInsn struct, Jt uint8
+pkg syscall (freebsd-386), type BpfInsn struct, K uint32
+pkg syscall (freebsd-386), type BpfProgram struct
+pkg syscall (freebsd-386), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (freebsd-386), type BpfProgram struct, Len uint32
+pkg syscall (freebsd-386), type BpfStat struct
+pkg syscall (freebsd-386), type BpfStat struct, Drop uint32
+pkg syscall (freebsd-386), type BpfStat struct, Recv uint32
+pkg syscall (freebsd-386), type BpfVersion struct
+pkg syscall (freebsd-386), type BpfVersion struct, Major uint16
+pkg syscall (freebsd-386), type BpfVersion struct, Minor uint16
+pkg syscall (freebsd-386), type BpfZbuf struct
+pkg syscall (freebsd-386), type BpfZbuf struct, Bufa *uint8
+pkg syscall (freebsd-386), type BpfZbuf struct, Bufb *uint8
+pkg syscall (freebsd-386), type BpfZbuf struct, Buflen uint32
+pkg syscall (freebsd-386), type BpfZbufHeader struct
+pkg syscall (freebsd-386), type BpfZbufHeader struct, Kernel_gen uint32
+pkg syscall (freebsd-386), type BpfZbufHeader struct, Kernel_len uint32
+pkg syscall (freebsd-386), type BpfZbufHeader struct, User_gen uint32
+pkg syscall (freebsd-386), type BpfZbufHeader struct, X_bzh_pad [5]uint32
+pkg syscall (freebsd-386), type Cmsghdr struct
+pkg syscall (freebsd-386), type Cmsghdr struct, Len uint32
+pkg syscall (freebsd-386), type Cmsghdr struct, Level int32
+pkg syscall (freebsd-386), type Cmsghdr struct, Type int32
+pkg syscall (freebsd-386), type Credential struct
+pkg syscall (freebsd-386), type Credential struct, Gid uint32
+pkg syscall (freebsd-386), type Credential struct, Groups []uint32
+pkg syscall (freebsd-386), type Credential struct, Uid uint32
+pkg syscall (freebsd-386), type Dirent struct
+pkg syscall (freebsd-386), type Dirent struct, Fileno uint32
+pkg syscall (freebsd-386), type Dirent struct, Name [256]int8
+pkg syscall (freebsd-386), type Dirent struct, Namlen uint8
+pkg syscall (freebsd-386), type Dirent struct, Reclen uint16
+pkg syscall (freebsd-386), type Dirent struct, Type uint8
+pkg syscall (freebsd-386), type FdSet struct
+pkg syscall (freebsd-386), type FdSet struct, X__fds_bits [32]uint32
+pkg syscall (freebsd-386), type Flock_t struct
+pkg syscall (freebsd-386), type Flock_t struct, Len int64
+pkg syscall (freebsd-386), type Flock_t struct, Pid int32
+pkg syscall (freebsd-386), type Flock_t struct, Start int64
+pkg syscall (freebsd-386), type Flock_t struct, Sysid int32
+pkg syscall (freebsd-386), type Flock_t struct, Type int16
+pkg syscall (freebsd-386), type Flock_t struct, Whence int16
+pkg syscall (freebsd-386), type Fsid struct
+pkg syscall (freebsd-386), type Fsid struct, Val [2]int32
+pkg syscall (freebsd-386), type IPMreqn struct
+pkg syscall (freebsd-386), type IPMreqn struct, Address [4]uint8
+pkg syscall (freebsd-386), type IPMreqn struct, Ifindex int32
+pkg syscall (freebsd-386), type IPMreqn struct, Multiaddr [4]uint8
+pkg syscall (freebsd-386), type IfData struct
+pkg syscall (freebsd-386), type IfData struct, Addrlen uint8
+pkg syscall (freebsd-386), type IfData struct, Baudrate uint32
+pkg syscall (freebsd-386), type IfData struct, Collisions uint32
+pkg syscall (freebsd-386), type IfData struct, Datalen uint8
+pkg syscall (freebsd-386), type IfData struct, Epoch int32
+pkg syscall (freebsd-386), type IfData struct, Hdrlen uint8
+pkg syscall (freebsd-386), type IfData struct, Hwassist uint32
+pkg syscall (freebsd-386), type IfData struct, Ibytes uint32
+pkg syscall (freebsd-386), type IfData struct, Ierrors uint32
+pkg syscall (freebsd-386), type IfData struct, Imcasts uint32
+pkg syscall (freebsd-386), type IfData struct, Ipackets uint32
+pkg syscall (freebsd-386), type IfData struct, Iqdrops uint32
+pkg syscall (freebsd-386), type IfData struct, Lastchange Timeval
+pkg syscall (freebsd-386), type IfData struct, Link_state uint8
+pkg syscall (freebsd-386), type IfData struct, Metric uint32
+pkg syscall (freebsd-386), type IfData struct, Mtu uint32
+pkg syscall (freebsd-386), type IfData struct, Noproto uint32
+pkg syscall (freebsd-386), type IfData struct, Obytes uint32
+pkg syscall (freebsd-386), type IfData struct, Oerrors uint32
+pkg syscall (freebsd-386), type IfData struct, Omcasts uint32
+pkg syscall (freebsd-386), type IfData struct, Opackets uint32
+pkg syscall (freebsd-386), type IfData struct, Physical uint8
+pkg syscall (freebsd-386), type IfData struct, Spare_char1 uint8
+pkg syscall (freebsd-386), type IfData struct, Spare_char2 uint8
+pkg syscall (freebsd-386), type IfData struct, Type uint8
+pkg syscall (freebsd-386), type IfMsghdr struct
+pkg syscall (freebsd-386), type IfMsghdr struct, Addrs int32
+pkg syscall (freebsd-386), type IfMsghdr struct, Data IfData
+pkg syscall (freebsd-386), type IfMsghdr struct, Flags int32
+pkg syscall (freebsd-386), type IfMsghdr struct, Index uint16
+pkg syscall (freebsd-386), type IfMsghdr struct, Msglen uint16
+pkg syscall (freebsd-386), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-386), type IfMsghdr struct, Type uint8
+pkg syscall (freebsd-386), type IfMsghdr struct, Version uint8
+pkg syscall (freebsd-386), type IfaMsghdr struct
+pkg syscall (freebsd-386), type IfaMsghdr struct, Addrs int32
+pkg syscall (freebsd-386), type IfaMsghdr struct, Flags int32
+pkg syscall (freebsd-386), type IfaMsghdr struct, Index uint16
+pkg syscall (freebsd-386), type IfaMsghdr struct, Metric int32
+pkg syscall (freebsd-386), type IfaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-386), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-386), type IfaMsghdr struct, Type uint8
+pkg syscall (freebsd-386), type IfaMsghdr struct, Version uint8
+pkg syscall (freebsd-386), type IfmaMsghdr struct
+pkg syscall (freebsd-386), type IfmaMsghdr struct, Addrs int32
+pkg syscall (freebsd-386), type IfmaMsghdr struct, Flags int32
+pkg syscall (freebsd-386), type IfmaMsghdr struct, Index uint16
+pkg syscall (freebsd-386), type IfmaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-386), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-386), type IfmaMsghdr struct, Type uint8
+pkg syscall (freebsd-386), type IfmaMsghdr struct, Version uint8
+pkg syscall (freebsd-386), type Inet6Pktinfo struct
+pkg syscall (freebsd-386), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (freebsd-386), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (freebsd-386), type InterfaceAddrMessage struct
+pkg syscall (freebsd-386), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (freebsd-386), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (freebsd-386), type InterfaceMessage struct
+pkg syscall (freebsd-386), type InterfaceMessage struct, Data []uint8
+pkg syscall (freebsd-386), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (freebsd-386), type InterfaceMulticastAddrMessage struct
+pkg syscall (freebsd-386), type InterfaceMulticastAddrMessage struct, Data []uint8
+pkg syscall (freebsd-386), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr
+pkg syscall (freebsd-386), type Iovec struct
+pkg syscall (freebsd-386), type Iovec struct, Base *uint8
+pkg syscall (freebsd-386), type Iovec struct, Len uint32
+pkg syscall (freebsd-386), type Kevent_t struct
+pkg syscall (freebsd-386), type Kevent_t struct, Data int32
+pkg syscall (freebsd-386), type Kevent_t struct, Fflags uint32
+pkg syscall (freebsd-386), type Kevent_t struct, Filter int16
+pkg syscall (freebsd-386), type Kevent_t struct, Flags uint16
+pkg syscall (freebsd-386), type Kevent_t struct, Ident uint32
+pkg syscall (freebsd-386), type Kevent_t struct, Udata *uint8
+pkg syscall (freebsd-386), type Msghdr struct
+pkg syscall (freebsd-386), type Msghdr struct, Control *uint8
+pkg syscall (freebsd-386), type Msghdr struct, Controllen uint32
+pkg syscall (freebsd-386), type Msghdr struct, Flags int32
+pkg syscall (freebsd-386), type Msghdr struct, Iov *Iovec
+pkg syscall (freebsd-386), type Msghdr struct, Iovlen int32
+pkg syscall (freebsd-386), type Msghdr struct, Name *uint8
+pkg syscall (freebsd-386), type Msghdr struct, Namelen uint32
+pkg syscall (freebsd-386), type RawSockaddr struct, Data [14]int8
+pkg syscall (freebsd-386), type RawSockaddr struct, Family uint8
+pkg syscall (freebsd-386), type RawSockaddr struct, Len uint8
+pkg syscall (freebsd-386), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (freebsd-386), type RawSockaddrDatalink struct
+pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-386), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (freebsd-386), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (freebsd-386), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (freebsd-386), type RawSockaddrInet6 struct
+pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Addr [16]uint8
+pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Flowinfo uint32
+pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Port uint16
+pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Scope_id uint32
+pkg syscall (freebsd-386), type RawSockaddrUnix struct
+pkg syscall (freebsd-386), type RawSockaddrUnix struct, Family uint8
+pkg syscall (freebsd-386), type RawSockaddrUnix struct, Len uint8
+pkg syscall (freebsd-386), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (freebsd-386), type Rlimit struct
+pkg syscall (freebsd-386), type Rlimit struct, Cur int64
+pkg syscall (freebsd-386), type Rlimit struct, Max int64
+pkg syscall (freebsd-386), type RouteMessage struct
+pkg syscall (freebsd-386), type RouteMessage struct, Data []uint8
+pkg syscall (freebsd-386), type RouteMessage struct, Header RtMsghdr
+pkg syscall (freebsd-386), type RoutingMessage interface, unexported methods
+pkg syscall (freebsd-386), type RtMetrics struct
+pkg syscall (freebsd-386), type RtMetrics struct, Expire uint32
+pkg syscall (freebsd-386), type RtMetrics struct, Filler [3]uint32
+pkg syscall (freebsd-386), type RtMetrics struct, Hopcount uint32
+pkg syscall (freebsd-386), type RtMetrics struct, Locks uint32
+pkg syscall (freebsd-386), type RtMetrics struct, Mtu uint32
+pkg syscall (freebsd-386), type RtMetrics struct, Pksent uint32
+pkg syscall (freebsd-386), type RtMetrics struct, Recvpipe uint32
+pkg syscall (freebsd-386), type RtMetrics struct, Rtt uint32
+pkg syscall (freebsd-386), type RtMetrics struct, Rttvar uint32
+pkg syscall (freebsd-386), type RtMetrics struct, Sendpipe uint32
+pkg syscall (freebsd-386), type RtMetrics struct, Ssthresh uint32
+pkg syscall (freebsd-386), type RtMetrics struct, Weight uint32
+pkg syscall (freebsd-386), type RtMsghdr struct
+pkg syscall (freebsd-386), type RtMsghdr struct, Addrs int32
+pkg syscall (freebsd-386), type RtMsghdr struct, Errno int32
+pkg syscall (freebsd-386), type RtMsghdr struct, Flags int32
+pkg syscall (freebsd-386), type RtMsghdr struct, Fmask int32
+pkg syscall (freebsd-386), type RtMsghdr struct, Index uint16
+pkg syscall (freebsd-386), type RtMsghdr struct, Inits uint32
+pkg syscall (freebsd-386), type RtMsghdr struct, Msglen uint16
+pkg syscall (freebsd-386), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-386), type RtMsghdr struct, Pid int32
+pkg syscall (freebsd-386), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (freebsd-386), type RtMsghdr struct, Seq int32
+pkg syscall (freebsd-386), type RtMsghdr struct, Type uint8
+pkg syscall (freebsd-386), type RtMsghdr struct, Version uint8
+pkg syscall (freebsd-386), type Rusage struct, Idrss int32
+pkg syscall (freebsd-386), type Rusage struct, Inblock int32
+pkg syscall (freebsd-386), type Rusage struct, Isrss int32
+pkg syscall (freebsd-386), type Rusage struct, Ixrss int32
+pkg syscall (freebsd-386), type Rusage struct, Majflt int32
+pkg syscall (freebsd-386), type Rusage struct, Maxrss int32
+pkg syscall (freebsd-386), type Rusage struct, Minflt int32
+pkg syscall (freebsd-386), type Rusage struct, Msgrcv int32
+pkg syscall (freebsd-386), type Rusage struct, Msgsnd int32
+pkg syscall (freebsd-386), type Rusage struct, Nivcsw int32
+pkg syscall (freebsd-386), type Rusage struct, Nsignals int32
+pkg syscall (freebsd-386), type Rusage struct, Nswap int32
+pkg syscall (freebsd-386), type Rusage struct, Nvcsw int32
+pkg syscall (freebsd-386), type Rusage struct, Oublock int32
+pkg syscall (freebsd-386), type Rusage struct, Stime Timeval
+pkg syscall (freebsd-386), type Rusage struct, Utime Timeval
+pkg syscall (freebsd-386), type SockaddrDatalink struct
+pkg syscall (freebsd-386), type SockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-386), type SockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-386), type SockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-386), type SockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-386), type SockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-386), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-386), type SockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-386), type SockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-386), type SocketControlMessage struct
+pkg syscall (freebsd-386), type SocketControlMessage struct, Data []uint8
+pkg syscall (freebsd-386), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (freebsd-386), type Stat_t struct
+pkg syscall (freebsd-386), type Stat_t struct, Atimespec Timespec
+pkg syscall (freebsd-386), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (freebsd-386), type Stat_t struct, Blksize uint32
+pkg syscall (freebsd-386), type Stat_t struct, Blocks int64
+pkg syscall (freebsd-386), type Stat_t struct, Ctimespec Timespec
+pkg syscall (freebsd-386), type Stat_t struct, Dev uint32
+pkg syscall (freebsd-386), type Stat_t struct, Flags uint32
+pkg syscall (freebsd-386), type Stat_t struct, Gen uint32
+pkg syscall (freebsd-386), type Stat_t struct, Gid uint32
+pkg syscall (freebsd-386), type Stat_t struct, Ino uint32
+pkg syscall (freebsd-386), type Stat_t struct, Lspare int32
+pkg syscall (freebsd-386), type Stat_t struct, Mode uint16
+pkg syscall (freebsd-386), type Stat_t struct, Mtimespec Timespec
+pkg syscall (freebsd-386), type Stat_t struct, Nlink uint16
+pkg syscall (freebsd-386), type Stat_t struct, Pad_cgo_0 [8]uint8
+pkg syscall (freebsd-386), type Stat_t struct, Rdev uint32
+pkg syscall (freebsd-386), type Stat_t struct, Size int64
+pkg syscall (freebsd-386), type Stat_t struct, Uid uint32
+pkg syscall (freebsd-386), type Statfs_t struct
+pkg syscall (freebsd-386), type Statfs_t struct, Asyncreads uint64
+pkg syscall (freebsd-386), type Statfs_t struct, Asyncwrites uint64
+pkg syscall (freebsd-386), type Statfs_t struct, Bavail int64
+pkg syscall (freebsd-386), type Statfs_t struct, Bfree uint64
+pkg syscall (freebsd-386), type Statfs_t struct, Blocks uint64
+pkg syscall (freebsd-386), type Statfs_t struct, Bsize uint64
+pkg syscall (freebsd-386), type Statfs_t struct, Charspare [80]int8
+pkg syscall (freebsd-386), type Statfs_t struct, Ffree int64
+pkg syscall (freebsd-386), type Statfs_t struct, Files uint64
+pkg syscall (freebsd-386), type Statfs_t struct, Flags uint64
+pkg syscall (freebsd-386), type Statfs_t struct, Fsid Fsid
+pkg syscall (freebsd-386), type Statfs_t struct, Fstypename [16]int8
+pkg syscall (freebsd-386), type Statfs_t struct, Iosize uint64
+pkg syscall (freebsd-386), type Statfs_t struct, Mntfromname [88]int8
+pkg syscall (freebsd-386), type Statfs_t struct, Mntonname [88]int8
+pkg syscall (freebsd-386), type Statfs_t struct, Namemax uint32
+pkg syscall (freebsd-386), type Statfs_t struct, Owner uint32
+pkg syscall (freebsd-386), type Statfs_t struct, Spare [10]uint64
+pkg syscall (freebsd-386), type Statfs_t struct, Syncreads uint64
+pkg syscall (freebsd-386), type Statfs_t struct, Syncwrites uint64
+pkg syscall (freebsd-386), type Statfs_t struct, Type uint32
+pkg syscall (freebsd-386), type Statfs_t struct, Version uint32
+pkg syscall (freebsd-386), type SysProcAttr struct, Chroot string
+pkg syscall (freebsd-386), type SysProcAttr struct, Credential *Credential
+pkg syscall (freebsd-386), type SysProcAttr struct, Noctty bool
+pkg syscall (freebsd-386), type SysProcAttr struct, Ptrace bool
+pkg syscall (freebsd-386), type SysProcAttr struct, Setctty bool
+pkg syscall (freebsd-386), type SysProcAttr struct, Setpgid bool
+pkg syscall (freebsd-386), type SysProcAttr struct, Setsid bool
+pkg syscall (freebsd-386), type Timespec struct, Nsec int32
+pkg syscall (freebsd-386), type Timespec struct, Sec int32
+pkg syscall (freebsd-386), type Timeval struct, Sec int32
+pkg syscall (freebsd-386), type Timeval struct, Usec int32
+pkg syscall (freebsd-386), type WaitStatus uint32
+pkg syscall (freebsd-386), var Stderr int
+pkg syscall (freebsd-386), var Stdin int
+pkg syscall (freebsd-386), var Stdout int
+pkg syscall (freebsd-amd64), const AF_APPLETALK ideal-int
+pkg syscall (freebsd-amd64), const AF_ARP ideal-int
+pkg syscall (freebsd-amd64), const AF_ATM ideal-int
+pkg syscall (freebsd-amd64), const AF_BLUETOOTH ideal-int
+pkg syscall (freebsd-amd64), const AF_CCITT ideal-int
+pkg syscall (freebsd-amd64), const AF_CHAOS ideal-int
+pkg syscall (freebsd-amd64), const AF_CNT ideal-int
+pkg syscall (freebsd-amd64), const AF_COIP ideal-int
+pkg syscall (freebsd-amd64), const AF_DATAKIT ideal-int
+pkg syscall (freebsd-amd64), const AF_DECnet ideal-int
+pkg syscall (freebsd-amd64), const AF_DLI ideal-int
+pkg syscall (freebsd-amd64), const AF_E164 ideal-int
+pkg syscall (freebsd-amd64), const AF_ECMA ideal-int
+pkg syscall (freebsd-amd64), const AF_HYLINK ideal-int
+pkg syscall (freebsd-amd64), const AF_IEEE80211 ideal-int
+pkg syscall (freebsd-amd64), const AF_IMPLINK ideal-int
+pkg syscall (freebsd-amd64), const AF_IPX ideal-int
+pkg syscall (freebsd-amd64), const AF_ISDN ideal-int
+pkg syscall (freebsd-amd64), const AF_ISO ideal-int
+pkg syscall (freebsd-amd64), const AF_LAT ideal-int
+pkg syscall (freebsd-amd64), const AF_LINK ideal-int
+pkg syscall (freebsd-amd64), const AF_LOCAL ideal-int
+pkg syscall (freebsd-amd64), const AF_MAX ideal-int
+pkg syscall (freebsd-amd64), const AF_NATM ideal-int
+pkg syscall (freebsd-amd64), const AF_NETBIOS ideal-int
+pkg syscall (freebsd-amd64), const AF_NETGRAPH ideal-int
+pkg syscall (freebsd-amd64), const AF_OSI ideal-int
+pkg syscall (freebsd-amd64), const AF_PUP ideal-int
+pkg syscall (freebsd-amd64), const AF_ROUTE ideal-int
+pkg syscall (freebsd-amd64), const AF_SCLUSTER ideal-int
+pkg syscall (freebsd-amd64), const AF_SIP ideal-int
+pkg syscall (freebsd-amd64), const AF_SLOW ideal-int
+pkg syscall (freebsd-amd64), const AF_SNA ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR00 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR01 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR02 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR03 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR04 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR05 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR06 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR07 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR08 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR09 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR10 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR11 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR12 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR13 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR14 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR15 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR16 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR17 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR18 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR19 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR20 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR21 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR22 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR23 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR24 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR25 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR26 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR27 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR28 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR29 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR30 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR31 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR32 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR33 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR34 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR35 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR36 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR37 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR38 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR39 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR40 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR41 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR42 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR43 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR44 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR45 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR46 ideal-int
+pkg syscall (freebsd-amd64), const AF_VENDOR47 ideal-int
+pkg syscall (freebsd-amd64), const BIOCFEEDBACK ideal-int
+pkg syscall (freebsd-amd64), const BIOCFLUSH ideal-int
+pkg syscall (freebsd-amd64), const BIOCGBLEN ideal-int
+pkg syscall (freebsd-amd64), const BIOCGDIRECTION ideal-int
+pkg syscall (freebsd-amd64), const BIOCGDLT ideal-int
+pkg syscall (freebsd-amd64), const BIOCGDLTLIST ideal-int
+pkg syscall (freebsd-amd64), const BIOCGETBUFMODE ideal-int
+pkg syscall (freebsd-amd64), const BIOCGETIF ideal-int
+pkg syscall (freebsd-amd64), const BIOCGETZMAX ideal-int
+pkg syscall (freebsd-amd64), const BIOCGHDRCMPLT ideal-int
+pkg syscall (freebsd-amd64), const BIOCGRSIG ideal-int
+pkg syscall (freebsd-amd64), const BIOCGRTIMEOUT ideal-int
+pkg syscall (freebsd-amd64), const BIOCGSEESENT ideal-int
+pkg syscall (freebsd-amd64), const BIOCGSTATS ideal-int
+pkg syscall (freebsd-amd64), const BIOCIMMEDIATE ideal-int
+pkg syscall (freebsd-amd64), const BIOCLOCK ideal-int
+pkg syscall (freebsd-amd64), const BIOCPROMISC ideal-int
+pkg syscall (freebsd-amd64), const BIOCROTZBUF ideal-int
+pkg syscall (freebsd-amd64), const BIOCSBLEN ideal-int
+pkg syscall (freebsd-amd64), const BIOCSDIRECTION ideal-int
+pkg syscall (freebsd-amd64), const BIOCSDLT ideal-int
+pkg syscall (freebsd-amd64), const BIOCSETBUFMODE ideal-int
+pkg syscall (freebsd-amd64), const BIOCSETF ideal-int
+pkg syscall (freebsd-amd64), const BIOCSETFNR ideal-int
+pkg syscall (freebsd-amd64), const BIOCSETIF ideal-int
+pkg syscall (freebsd-amd64), const BIOCSETWF ideal-int
+pkg syscall (freebsd-amd64), const BIOCSETZBUF ideal-int
+pkg syscall (freebsd-amd64), const BIOCSHDRCMPLT ideal-int
+pkg syscall (freebsd-amd64), const BIOCSRSIG ideal-int
+pkg syscall (freebsd-amd64), const BIOCSRTIMEOUT ideal-int
+pkg syscall (freebsd-amd64), const BIOCSSEESENT ideal-int
+pkg syscall (freebsd-amd64), const BIOCVERSION ideal-int
+pkg syscall (freebsd-amd64), const BPF_A ideal-int
+pkg syscall (freebsd-amd64), const BPF_ABS ideal-int
+pkg syscall (freebsd-amd64), const BPF_ADD ideal-int
+pkg syscall (freebsd-amd64), const BPF_ALIGNMENT ideal-int
+pkg syscall (freebsd-amd64), const BPF_ALU ideal-int
+pkg syscall (freebsd-amd64), const BPF_AND ideal-int
+pkg syscall (freebsd-amd64), const BPF_B ideal-int
+pkg syscall (freebsd-amd64), const BPF_BUFMODE_BUFFER ideal-int
+pkg syscall (freebsd-amd64), const BPF_BUFMODE_ZBUF ideal-int
+pkg syscall (freebsd-amd64), const BPF_DIV ideal-int
+pkg syscall (freebsd-amd64), const BPF_H ideal-int
+pkg syscall (freebsd-amd64), const BPF_IMM ideal-int
+pkg syscall (freebsd-amd64), const BPF_IND ideal-int
+pkg syscall (freebsd-amd64), const BPF_JA ideal-int
+pkg syscall (freebsd-amd64), const BPF_JEQ ideal-int
+pkg syscall (freebsd-amd64), const BPF_JGE ideal-int
+pkg syscall (freebsd-amd64), const BPF_JGT ideal-int
+pkg syscall (freebsd-amd64), const BPF_JMP ideal-int
+pkg syscall (freebsd-amd64), const BPF_JSET ideal-int
+pkg syscall (freebsd-amd64), const BPF_K ideal-int
+pkg syscall (freebsd-amd64), const BPF_LD ideal-int
+pkg syscall (freebsd-amd64), const BPF_LDX ideal-int
+pkg syscall (freebsd-amd64), const BPF_LEN ideal-int
+pkg syscall (freebsd-amd64), const BPF_LSH ideal-int
+pkg syscall (freebsd-amd64), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (freebsd-amd64), const BPF_MAXBUFSIZE ideal-int
+pkg syscall (freebsd-amd64), const BPF_MAXINSNS ideal-int
+pkg syscall (freebsd-amd64), const BPF_MEM ideal-int
+pkg syscall (freebsd-amd64), const BPF_MEMWORDS ideal-int
+pkg syscall (freebsd-amd64), const BPF_MINBUFSIZE ideal-int
+pkg syscall (freebsd-amd64), const BPF_MINOR_VERSION ideal-int
+pkg syscall (freebsd-amd64), const BPF_MISC ideal-int
+pkg syscall (freebsd-amd64), const BPF_MSH ideal-int
+pkg syscall (freebsd-amd64), const BPF_MUL ideal-int
+pkg syscall (freebsd-amd64), const BPF_NEG ideal-int
+pkg syscall (freebsd-amd64), const BPF_OR ideal-int
+pkg syscall (freebsd-amd64), const BPF_RELEASE ideal-int
+pkg syscall (freebsd-amd64), const BPF_RET ideal-int
+pkg syscall (freebsd-amd64), const BPF_RSH ideal-int
+pkg syscall (freebsd-amd64), const BPF_ST ideal-int
+pkg syscall (freebsd-amd64), const BPF_STX ideal-int
+pkg syscall (freebsd-amd64), const BPF_SUB ideal-int
+pkg syscall (freebsd-amd64), const BPF_TAX ideal-int
+pkg syscall (freebsd-amd64), const BPF_TXA ideal-int
+pkg syscall (freebsd-amd64), const BPF_W ideal-int
+pkg syscall (freebsd-amd64), const BPF_X ideal-int
+pkg syscall (freebsd-amd64), const CTL_MAXNAME ideal-int
+pkg syscall (freebsd-amd64), const CTL_NET ideal-int
+pkg syscall (freebsd-amd64), const DLT_A429 ideal-int
+pkg syscall (freebsd-amd64), const DLT_A653_ICM ideal-int
+pkg syscall (freebsd-amd64), const DLT_AIRONET_HEADER ideal-int
+pkg syscall (freebsd-amd64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
+pkg syscall (freebsd-amd64), const DLT_ARCNET ideal-int
+pkg syscall (freebsd-amd64), const DLT_ARCNET_LINUX ideal-int
+pkg syscall (freebsd-amd64), const DLT_ATM_CLIP ideal-int
+pkg syscall (freebsd-amd64), const DLT_ATM_RFC1483 ideal-int
+pkg syscall (freebsd-amd64), const DLT_AURORA ideal-int
+pkg syscall (freebsd-amd64), const DLT_AX25 ideal-int
+pkg syscall (freebsd-amd64), const DLT_AX25_KISS ideal-int
+pkg syscall (freebsd-amd64), const DLT_BACNET_MS_TP ideal-int
+pkg syscall (freebsd-amd64), const DLT_BLUETOOTH_HCI_H4 ideal-int
+pkg syscall (freebsd-amd64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
+pkg syscall (freebsd-amd64), const DLT_CAN20B ideal-int
+pkg syscall (freebsd-amd64), const DLT_CHAOS ideal-int
+pkg syscall (freebsd-amd64), const DLT_CHDLC ideal-int
+pkg syscall (freebsd-amd64), const DLT_CISCO_IOS ideal-int
+pkg syscall (freebsd-amd64), const DLT_C_HDLC ideal-int
+pkg syscall (freebsd-amd64), const DLT_C_HDLC_WITH_DIR ideal-int
+pkg syscall (freebsd-amd64), const DLT_DOCSIS ideal-int
+pkg syscall (freebsd-amd64), const DLT_ECONET ideal-int
+pkg syscall (freebsd-amd64), const DLT_EN10MB ideal-int
+pkg syscall (freebsd-amd64), const DLT_EN3MB ideal-int
+pkg syscall (freebsd-amd64), const DLT_ENC ideal-int
+pkg syscall (freebsd-amd64), const DLT_ERF ideal-int
+pkg syscall (freebsd-amd64), const DLT_ERF_ETH ideal-int
+pkg syscall (freebsd-amd64), const DLT_ERF_POS ideal-int
+pkg syscall (freebsd-amd64), const DLT_FDDI ideal-int
+pkg syscall (freebsd-amd64), const DLT_FLEXRAY ideal-int
+pkg syscall (freebsd-amd64), const DLT_FRELAY ideal-int
+pkg syscall (freebsd-amd64), const DLT_FRELAY_WITH_DIR ideal-int
+pkg syscall (freebsd-amd64), const DLT_GCOM_SERIAL ideal-int
+pkg syscall (freebsd-amd64), const DLT_GCOM_T1E1 ideal-int
+pkg syscall (freebsd-amd64), const DLT_GPF_F ideal-int
+pkg syscall (freebsd-amd64), const DLT_GPF_T ideal-int
+pkg syscall (freebsd-amd64), const DLT_GPRS_LLC ideal-int
+pkg syscall (freebsd-amd64), const DLT_HHDLC ideal-int
+pkg syscall (freebsd-amd64), const DLT_IBM_SN ideal-int
+pkg syscall (freebsd-amd64), const DLT_IBM_SP ideal-int
+pkg syscall (freebsd-amd64), const DLT_IEEE802 ideal-int
+pkg syscall (freebsd-amd64), const DLT_IEEE802_11 ideal-int
+pkg syscall (freebsd-amd64), const DLT_IEEE802_11_RADIO ideal-int
+pkg syscall (freebsd-amd64), const DLT_IEEE802_11_RADIO_AVS ideal-int
+pkg syscall (freebsd-amd64), const DLT_IEEE802_15_4 ideal-int
+pkg syscall (freebsd-amd64), const DLT_IEEE802_15_4_LINUX ideal-int
+pkg syscall (freebsd-amd64), const DLT_IEEE802_15_4_NONASK_PHY ideal-int
+pkg syscall (freebsd-amd64), const DLT_IEEE802_16_MAC_CPS ideal-int
+pkg syscall (freebsd-amd64), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int
+pkg syscall (freebsd-amd64), const DLT_IPFILTER ideal-int
+pkg syscall (freebsd-amd64), const DLT_IPMB ideal-int
+pkg syscall (freebsd-amd64), const DLT_IPMB_LINUX ideal-int
+pkg syscall (freebsd-amd64), const DLT_IP_OVER_FC ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_ATM1 ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_ATM2 ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_CHDLC ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_ES ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_ETHER ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_FRELAY ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_GGSN ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_ISM ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_MFR ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_MLFR ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_MLPPP ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_MONITOR ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_PIC_PEER ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_PPP ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_PPPOE ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_PPPOE_ATM ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_SERVICES ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_ST ideal-int
+pkg syscall (freebsd-amd64), const DLT_JUNIPER_VP ideal-int
+pkg syscall (freebsd-amd64), const DLT_LAPB_WITH_DIR ideal-int
+pkg syscall (freebsd-amd64), const DLT_LAPD ideal-int
+pkg syscall (freebsd-amd64), const DLT_LIN ideal-int
+pkg syscall (freebsd-amd64), const DLT_LINUX_IRDA ideal-int
+pkg syscall (freebsd-amd64), const DLT_LINUX_LAPD ideal-int
+pkg syscall (freebsd-amd64), const DLT_LINUX_PPP_WITHDIRECTION ideal-int
+pkg syscall (freebsd-amd64), const DLT_LINUX_SLL ideal-int
+pkg syscall (freebsd-amd64), const DLT_LOOP ideal-int
+pkg syscall (freebsd-amd64), const DLT_LTALK ideal-int
+pkg syscall (freebsd-amd64), const DLT_MFR ideal-int
+pkg syscall (freebsd-amd64), const DLT_MOST ideal-int
+pkg syscall (freebsd-amd64), const DLT_MTP2 ideal-int
+pkg syscall (freebsd-amd64), const DLT_MTP2_WITH_PHDR ideal-int
+pkg syscall (freebsd-amd64), const DLT_MTP3 ideal-int
+pkg syscall (freebsd-amd64), const DLT_NULL ideal-int
+pkg syscall (freebsd-amd64), const DLT_PCI_EXP ideal-int
+pkg syscall (freebsd-amd64), const DLT_PFLOG ideal-int
+pkg syscall (freebsd-amd64), const DLT_PFSYNC ideal-int
+pkg syscall (freebsd-amd64), const DLT_PPI ideal-int
+pkg syscall (freebsd-amd64), const DLT_PPP ideal-int
+pkg syscall (freebsd-amd64), const DLT_PPP_BSDOS ideal-int
+pkg syscall (freebsd-amd64), const DLT_PPP_ETHER ideal-int
+pkg syscall (freebsd-amd64), const DLT_PPP_PPPD ideal-int
+pkg syscall (freebsd-amd64), const DLT_PPP_SERIAL ideal-int
+pkg syscall (freebsd-amd64), const DLT_PPP_WITH_DIR ideal-int
+pkg syscall (freebsd-amd64), const DLT_PPP_WITH_DIRECTION ideal-int
+pkg syscall (freebsd-amd64), const DLT_PRISM_HEADER ideal-int
+pkg syscall (freebsd-amd64), const DLT_PRONET ideal-int
+pkg syscall (freebsd-amd64), const DLT_RAIF1 ideal-int
+pkg syscall (freebsd-amd64), const DLT_RAW ideal-int
+pkg syscall (freebsd-amd64), const DLT_RIO ideal-int
+pkg syscall (freebsd-amd64), const DLT_SCCP ideal-int
+pkg syscall (freebsd-amd64), const DLT_SITA ideal-int
+pkg syscall (freebsd-amd64), const DLT_SLIP ideal-int
+pkg syscall (freebsd-amd64), const DLT_SLIP_BSDOS ideal-int
+pkg syscall (freebsd-amd64), const DLT_SUNATM ideal-int
+pkg syscall (freebsd-amd64), const DLT_SYMANTEC_FIREWALL ideal-int
+pkg syscall (freebsd-amd64), const DLT_TZSP ideal-int
+pkg syscall (freebsd-amd64), const DLT_USB ideal-int
+pkg syscall (freebsd-amd64), const DLT_USB_LINUX ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER0 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER1 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER10 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER11 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER12 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER13 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER14 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER15 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER2 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER3 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER4 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER5 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER6 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER7 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER8 ideal-int
+pkg syscall (freebsd-amd64), const DLT_USER9 ideal-int
+pkg syscall (freebsd-amd64), const DLT_X2E_SERIAL ideal-int
+pkg syscall (freebsd-amd64), const DLT_X2E_XORAYA ideal-int
+pkg syscall (freebsd-amd64), const DT_BLK ideal-int
+pkg syscall (freebsd-amd64), const DT_CHR ideal-int
+pkg syscall (freebsd-amd64), const DT_DIR ideal-int
+pkg syscall (freebsd-amd64), const DT_FIFO ideal-int
+pkg syscall (freebsd-amd64), const DT_LNK ideal-int
+pkg syscall (freebsd-amd64), const DT_REG ideal-int
+pkg syscall (freebsd-amd64), const DT_SOCK ideal-int
+pkg syscall (freebsd-amd64), const DT_UNKNOWN ideal-int
+pkg syscall (freebsd-amd64), const DT_WHT ideal-int
+pkg syscall (freebsd-amd64), const EAUTH Errno
+pkg syscall (freebsd-amd64), const EBADMSG Errno
+pkg syscall (freebsd-amd64), const EBADRPC Errno
+pkg syscall (freebsd-amd64), const ECHO ideal-int
+pkg syscall (freebsd-amd64), const ECHOCTL ideal-int
+pkg syscall (freebsd-amd64), const ECHOE ideal-int
+pkg syscall (freebsd-amd64), const ECHOK ideal-int
+pkg syscall (freebsd-amd64), const ECHOKE ideal-int
+pkg syscall (freebsd-amd64), const ECHONL ideal-int
+pkg syscall (freebsd-amd64), const ECHOPRT ideal-int
+pkg syscall (freebsd-amd64), const EDOOFUS Errno
+pkg syscall (freebsd-amd64), const EFTYPE Errno
+pkg syscall (freebsd-amd64), const ELAST Errno
+pkg syscall (freebsd-amd64), const EMULTIHOP Errno
+pkg syscall (freebsd-amd64), const ENEEDAUTH Errno
+pkg syscall (freebsd-amd64), const ENOATTR Errno
+pkg syscall (freebsd-amd64), const ENOLINK Errno
+pkg syscall (freebsd-amd64), const ENOTCAPABLE Errno
+pkg syscall (freebsd-amd64), const EPROCLIM Errno
+pkg syscall (freebsd-amd64), const EPROCUNAVAIL Errno
+pkg syscall (freebsd-amd64), const EPROGMISMATCH Errno
+pkg syscall (freebsd-amd64), const EPROGUNAVAIL Errno
+pkg syscall (freebsd-amd64), const EPROTO Errno
+pkg syscall (freebsd-amd64), const ERPCMISMATCH Errno
+pkg syscall (freebsd-amd64), const EVFILT_AIO ideal-int
+pkg syscall (freebsd-amd64), const EVFILT_FS ideal-int
+pkg syscall (freebsd-amd64), const EVFILT_LIO ideal-int
+pkg syscall (freebsd-amd64), const EVFILT_PROC ideal-int
+pkg syscall (freebsd-amd64), const EVFILT_READ ideal-int
+pkg syscall (freebsd-amd64), const EVFILT_SIGNAL ideal-int
+pkg syscall (freebsd-amd64), const EVFILT_SYSCOUNT ideal-int
+pkg syscall (freebsd-amd64), const EVFILT_TIMER ideal-int
+pkg syscall (freebsd-amd64), const EVFILT_USER ideal-int
+pkg syscall (freebsd-amd64), const EVFILT_VNODE ideal-int
+pkg syscall (freebsd-amd64), const EVFILT_WRITE ideal-int
+pkg syscall (freebsd-amd64), const EV_ADD ideal-int
+pkg syscall (freebsd-amd64), const EV_CLEAR ideal-int
+pkg syscall (freebsd-amd64), const EV_DELETE ideal-int
+pkg syscall (freebsd-amd64), const EV_DISABLE ideal-int
+pkg syscall (freebsd-amd64), const EV_DISPATCH ideal-int
+pkg syscall (freebsd-amd64), const EV_ENABLE ideal-int
+pkg syscall (freebsd-amd64), const EV_EOF ideal-int
+pkg syscall (freebsd-amd64), const EV_ERROR ideal-int
+pkg syscall (freebsd-amd64), const EV_FLAG1 ideal-int
+pkg syscall (freebsd-amd64), const EV_ONESHOT ideal-int
+pkg syscall (freebsd-amd64), const EV_RECEIPT ideal-int
+pkg syscall (freebsd-amd64), const EV_SYSFLAGS ideal-int
+pkg syscall (freebsd-amd64), const EXTA ideal-int
+pkg syscall (freebsd-amd64), const EXTB ideal-int
+pkg syscall (freebsd-amd64), const EXTPROC ideal-int
+pkg syscall (freebsd-amd64), const FD_CLOEXEC ideal-int
+pkg syscall (freebsd-amd64), const FD_SETSIZE ideal-int
+pkg syscall (freebsd-amd64), const F_CANCEL ideal-int
+pkg syscall (freebsd-amd64), const F_DUP2FD ideal-int
+pkg syscall (freebsd-amd64), const F_DUPFD ideal-int
+pkg syscall (freebsd-amd64), const F_GETFD ideal-int
+pkg syscall (freebsd-amd64), const F_GETFL ideal-int
+pkg syscall (freebsd-amd64), const F_GETLK ideal-int
+pkg syscall (freebsd-amd64), const F_GETOWN ideal-int
+pkg syscall (freebsd-amd64), const F_OGETLK ideal-int
+pkg syscall (freebsd-amd64), const F_OK ideal-int
+pkg syscall (freebsd-amd64), const F_OSETLK ideal-int
+pkg syscall (freebsd-amd64), const F_OSETLKW ideal-int
+pkg syscall (freebsd-amd64), const F_RDAHEAD ideal-int
+pkg syscall (freebsd-amd64), const F_RDLCK ideal-int
+pkg syscall (freebsd-amd64), const F_READAHEAD ideal-int
+pkg syscall (freebsd-amd64), const F_SETFD ideal-int
+pkg syscall (freebsd-amd64), const F_SETFL ideal-int
+pkg syscall (freebsd-amd64), const F_SETLK ideal-int
+pkg syscall (freebsd-amd64), const F_SETLKW ideal-int
+pkg syscall (freebsd-amd64), const F_SETLK_REMOTE ideal-int
+pkg syscall (freebsd-amd64), const F_SETOWN ideal-int
+pkg syscall (freebsd-amd64), const F_UNLCK ideal-int
+pkg syscall (freebsd-amd64), const F_UNLCKSYS ideal-int
+pkg syscall (freebsd-amd64), const F_WRLCK ideal-int
+pkg syscall (freebsd-amd64), const IFF_ALLMULTI ideal-int
+pkg syscall (freebsd-amd64), const IFF_ALTPHYS ideal-int
+pkg syscall (freebsd-amd64), const IFF_CANTCHANGE ideal-int
+pkg syscall (freebsd-amd64), const IFF_DEBUG ideal-int
+pkg syscall (freebsd-amd64), const IFF_DRV_OACTIVE ideal-int
+pkg syscall (freebsd-amd64), const IFF_DRV_RUNNING ideal-int
+pkg syscall (freebsd-amd64), const IFF_DYING ideal-int
+pkg syscall (freebsd-amd64), const IFF_LINK0 ideal-int
+pkg syscall (freebsd-amd64), const IFF_LINK1 ideal-int
+pkg syscall (freebsd-amd64), const IFF_LINK2 ideal-int
+pkg syscall (freebsd-amd64), const IFF_MONITOR ideal-int
+pkg syscall (freebsd-amd64), const IFF_NOARP ideal-int
+pkg syscall (freebsd-amd64), const IFF_OACTIVE ideal-int
+pkg syscall (freebsd-amd64), const IFF_POINTOPOINT ideal-int
+pkg syscall (freebsd-amd64), const IFF_PPROMISC ideal-int
+pkg syscall (freebsd-amd64), const IFF_PROMISC ideal-int
+pkg syscall (freebsd-amd64), const IFF_RENAMING ideal-int
+pkg syscall (freebsd-amd64), const IFF_RUNNING ideal-int
+pkg syscall (freebsd-amd64), const IFF_SIMPLEX ideal-int
+pkg syscall (freebsd-amd64), const IFF_SMART ideal-int
+pkg syscall (freebsd-amd64), const IFF_STATICARP ideal-int
+pkg syscall (freebsd-amd64), const IFNAMSIZ ideal-int
+pkg syscall (freebsd-amd64), const IFT_1822 ideal-int
+pkg syscall (freebsd-amd64), const IFT_A12MPPSWITCH ideal-int
+pkg syscall (freebsd-amd64), const IFT_AAL2 ideal-int
+pkg syscall (freebsd-amd64), const IFT_AAL5 ideal-int
+pkg syscall (freebsd-amd64), const IFT_ADSL ideal-int
+pkg syscall (freebsd-amd64), const IFT_AFLANE8023 ideal-int
+pkg syscall (freebsd-amd64), const IFT_AFLANE8025 ideal-int
+pkg syscall (freebsd-amd64), const IFT_ARAP ideal-int
+pkg syscall (freebsd-amd64), const IFT_ARCNET ideal-int
+pkg syscall (freebsd-amd64), const IFT_ARCNETPLUS ideal-int
+pkg syscall (freebsd-amd64), const IFT_ASYNC ideal-int
+pkg syscall (freebsd-amd64), const IFT_ATM ideal-int
+pkg syscall (freebsd-amd64), const IFT_ATMDXI ideal-int
+pkg syscall (freebsd-amd64), const IFT_ATMFUNI ideal-int
+pkg syscall (freebsd-amd64), const IFT_ATMIMA ideal-int
+pkg syscall (freebsd-amd64), const IFT_ATMLOGICAL ideal-int
+pkg syscall (freebsd-amd64), const IFT_ATMRADIO ideal-int
+pkg syscall (freebsd-amd64), const IFT_ATMSUBINTERFACE ideal-int
+pkg syscall (freebsd-amd64), const IFT_ATMVCIENDPT ideal-int
+pkg syscall (freebsd-amd64), const IFT_ATMVIRTUAL ideal-int
+pkg syscall (freebsd-amd64), const IFT_BGPPOLICYACCOUNTING ideal-int
+pkg syscall (freebsd-amd64), const IFT_BRIDGE ideal-int
+pkg syscall (freebsd-amd64), const IFT_BSC ideal-int
+pkg syscall (freebsd-amd64), const IFT_CARP ideal-int
+pkg syscall (freebsd-amd64), const IFT_CCTEMUL ideal-int
+pkg syscall (freebsd-amd64), const IFT_CEPT ideal-int
+pkg syscall (freebsd-amd64), const IFT_CES ideal-int
+pkg syscall (freebsd-amd64), const IFT_CHANNEL ideal-int
+pkg syscall (freebsd-amd64), const IFT_CNR ideal-int
+pkg syscall (freebsd-amd64), const IFT_COFFEE ideal-int
+pkg syscall (freebsd-amd64), const IFT_COMPOSITELINK ideal-int
+pkg syscall (freebsd-amd64), const IFT_DCN ideal-int
+pkg syscall (freebsd-amd64), const IFT_DIGITALPOWERLINE ideal-int
+pkg syscall (freebsd-amd64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-amd64), const IFT_DLSW ideal-int
+pkg syscall (freebsd-amd64), const IFT_DOCSCABLEDOWNSTREAM ideal-int
+pkg syscall (freebsd-amd64), const IFT_DOCSCABLEMACLAYER ideal-int
+pkg syscall (freebsd-amd64), const IFT_DOCSCABLEUPSTREAM ideal-int
+pkg syscall (freebsd-amd64), const IFT_DS0 ideal-int
+pkg syscall (freebsd-amd64), const IFT_DS0BUNDLE ideal-int
+pkg syscall (freebsd-amd64), const IFT_DS1FDL ideal-int
+pkg syscall (freebsd-amd64), const IFT_DS3 ideal-int
+pkg syscall (freebsd-amd64), const IFT_DTM ideal-int
+pkg syscall (freebsd-amd64), const IFT_DVBASILN ideal-int
+pkg syscall (freebsd-amd64), const IFT_DVBASIOUT ideal-int
+pkg syscall (freebsd-amd64), const IFT_DVBRCCDOWNSTREAM ideal-int
+pkg syscall (freebsd-amd64), const IFT_DVBRCCMACLAYER ideal-int
+pkg syscall (freebsd-amd64), const IFT_DVBRCCUPSTREAM ideal-int
+pkg syscall (freebsd-amd64), const IFT_ENC ideal-int
+pkg syscall (freebsd-amd64), const IFT_EON ideal-int
+pkg syscall (freebsd-amd64), const IFT_EPLRS ideal-int
+pkg syscall (freebsd-amd64), const IFT_ESCON ideal-int
+pkg syscall (freebsd-amd64), const IFT_ETHER ideal-int
+pkg syscall (freebsd-amd64), const IFT_FAITH ideal-int
+pkg syscall (freebsd-amd64), const IFT_FAST ideal-int
+pkg syscall (freebsd-amd64), const IFT_FASTETHER ideal-int
+pkg syscall (freebsd-amd64), const IFT_FASTETHERFX ideal-int
+pkg syscall (freebsd-amd64), const IFT_FDDI ideal-int
+pkg syscall (freebsd-amd64), const IFT_FIBRECHANNEL ideal-int
+pkg syscall (freebsd-amd64), const IFT_FRAMERELAYINTERCONNECT ideal-int
+pkg syscall (freebsd-amd64), const IFT_FRAMERELAYMPI ideal-int
+pkg syscall (freebsd-amd64), const IFT_FRDLCIENDPT ideal-int
+pkg syscall (freebsd-amd64), const IFT_FRELAY ideal-int
+pkg syscall (freebsd-amd64), const IFT_FRELAYDCE ideal-int
+pkg syscall (freebsd-amd64), const IFT_FRF16MFRBUNDLE ideal-int
+pkg syscall (freebsd-amd64), const IFT_FRFORWARD ideal-int
+pkg syscall (freebsd-amd64), const IFT_G703AT2MB ideal-int
+pkg syscall (freebsd-amd64), const IFT_G703AT64K ideal-int
+pkg syscall (freebsd-amd64), const IFT_GIF ideal-int
+pkg syscall (freebsd-amd64), const IFT_GIGABITETHERNET ideal-int
+pkg syscall (freebsd-amd64), const IFT_GR303IDT ideal-int
+pkg syscall (freebsd-amd64), const IFT_GR303RDT ideal-int
+pkg syscall (freebsd-amd64), const IFT_H323GATEKEEPER ideal-int
+pkg syscall (freebsd-amd64), const IFT_H323PROXY ideal-int
+pkg syscall (freebsd-amd64), const IFT_HDH1822 ideal-int
+pkg syscall (freebsd-amd64), const IFT_HDLC ideal-int
+pkg syscall (freebsd-amd64), const IFT_HDSL2 ideal-int
+pkg syscall (freebsd-amd64), const IFT_HIPERLAN2 ideal-int
+pkg syscall (freebsd-amd64), const IFT_HIPPI ideal-int
+pkg syscall (freebsd-amd64), const IFT_HIPPIINTERFACE ideal-int
+pkg syscall (freebsd-amd64), const IFT_HOSTPAD ideal-int
+pkg syscall (freebsd-amd64), const IFT_HSSI ideal-int
+pkg syscall (freebsd-amd64), const IFT_HY ideal-int
+pkg syscall (freebsd-amd64), const IFT_IBM370PARCHAN ideal-int
+pkg syscall (freebsd-amd64), const IFT_IDSL ideal-int
+pkg syscall (freebsd-amd64), const IFT_IEEE1394 ideal-int
+pkg syscall (freebsd-amd64), const IFT_IEEE80211 ideal-int
+pkg syscall (freebsd-amd64), const IFT_IEEE80212 ideal-int
+pkg syscall (freebsd-amd64), const IFT_IEEE8023ADLAG ideal-int
+pkg syscall (freebsd-amd64), const IFT_IFGSN ideal-int
+pkg syscall (freebsd-amd64), const IFT_IMT ideal-int
+pkg syscall (freebsd-amd64), const IFT_INTERLEAVE ideal-int
+pkg syscall (freebsd-amd64), const IFT_IP ideal-int
+pkg syscall (freebsd-amd64), const IFT_IPFORWARD ideal-int
+pkg syscall (freebsd-amd64), const IFT_IPOVERATM ideal-int
+pkg syscall (freebsd-amd64), const IFT_IPOVERCDLC ideal-int
+pkg syscall (freebsd-amd64), const IFT_IPOVERCLAW ideal-int
+pkg syscall (freebsd-amd64), const IFT_IPSWITCH ideal-int
+pkg syscall (freebsd-amd64), const IFT_IPXIP ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISDN ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISDNBASIC ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISDNPRIMARY ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISDNS ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISDNU ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISO88022LLC ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISO88023 ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISO88024 ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISO88025 ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISO88025CRFPINT ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISO88025DTR ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISO88025FIBER ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISO88026 ideal-int
+pkg syscall (freebsd-amd64), const IFT_ISUP ideal-int
+pkg syscall (freebsd-amd64), const IFT_L2VLAN ideal-int
+pkg syscall (freebsd-amd64), const IFT_L3IPVLAN ideal-int
+pkg syscall (freebsd-amd64), const IFT_L3IPXVLAN ideal-int
+pkg syscall (freebsd-amd64), const IFT_LAPB ideal-int
+pkg syscall (freebsd-amd64), const IFT_LAPD ideal-int
+pkg syscall (freebsd-amd64), const IFT_LAPF ideal-int
+pkg syscall (freebsd-amd64), const IFT_LOCALTALK ideal-int
+pkg syscall (freebsd-amd64), const IFT_LOOP ideal-int
+pkg syscall (freebsd-amd64), const IFT_MEDIAMAILOVERIP ideal-int
+pkg syscall (freebsd-amd64), const IFT_MFSIGLINK ideal-int
+pkg syscall (freebsd-amd64), const IFT_MIOX25 ideal-int
+pkg syscall (freebsd-amd64), const IFT_MODEM ideal-int
+pkg syscall (freebsd-amd64), const IFT_MPC ideal-int
+pkg syscall (freebsd-amd64), const IFT_MPLS ideal-int
+pkg syscall (freebsd-amd64), const IFT_MPLSTUNNEL ideal-int
+pkg syscall (freebsd-amd64), const IFT_MSDSL ideal-int
+pkg syscall (freebsd-amd64), const IFT_MVL ideal-int
+pkg syscall (freebsd-amd64), const IFT_MYRINET ideal-int
+pkg syscall (freebsd-amd64), const IFT_NFAS ideal-int
+pkg syscall (freebsd-amd64), const IFT_NSIP ideal-int
+pkg syscall (freebsd-amd64), const IFT_OPTICALCHANNEL ideal-int
+pkg syscall (freebsd-amd64), const IFT_OPTICALTRANSPORT ideal-int
+pkg syscall (freebsd-amd64), const IFT_OTHER ideal-int
+pkg syscall (freebsd-amd64), const IFT_P10 ideal-int
+pkg syscall (freebsd-amd64), const IFT_P80 ideal-int
+pkg syscall (freebsd-amd64), const IFT_PARA ideal-int
+pkg syscall (freebsd-amd64), const IFT_PFLOG ideal-int
+pkg syscall (freebsd-amd64), const IFT_PFSYNC ideal-int
+pkg syscall (freebsd-amd64), const IFT_PLC ideal-int
+pkg syscall (freebsd-amd64), const IFT_POS ideal-int
+pkg syscall (freebsd-amd64), const IFT_PPP ideal-int
+pkg syscall (freebsd-amd64), const IFT_PPPMULTILINKBUNDLE ideal-int
+pkg syscall (freebsd-amd64), const IFT_PROPBWAP2MP ideal-int
+pkg syscall (freebsd-amd64), const IFT_PROPCNLS ideal-int
+pkg syscall (freebsd-amd64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int
+pkg syscall (freebsd-amd64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int
+pkg syscall (freebsd-amd64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int
+pkg syscall (freebsd-amd64), const IFT_PROPMUX ideal-int
+pkg syscall (freebsd-amd64), const IFT_PROPVIRTUAL ideal-int
+pkg syscall (freebsd-amd64), const IFT_PROPWIRELESSP2P ideal-int
+pkg syscall (freebsd-amd64), const IFT_PTPSERIAL ideal-int
+pkg syscall (freebsd-amd64), const IFT_PVC ideal-int
+pkg syscall (freebsd-amd64), const IFT_QLLC ideal-int
+pkg syscall (freebsd-amd64), const IFT_RADIOMAC ideal-int
+pkg syscall (freebsd-amd64), const IFT_RADSL ideal-int
+pkg syscall (freebsd-amd64), const IFT_REACHDSL ideal-int
+pkg syscall (freebsd-amd64), const IFT_RFC1483 ideal-int
+pkg syscall (freebsd-amd64), const IFT_RS232 ideal-int
+pkg syscall (freebsd-amd64), const IFT_RSRB ideal-int
+pkg syscall (freebsd-amd64), const IFT_SDLC ideal-int
+pkg syscall (freebsd-amd64), const IFT_SDSL ideal-int
+pkg syscall (freebsd-amd64), const IFT_SHDSL ideal-int
+pkg syscall (freebsd-amd64), const IFT_SIP ideal-int
+pkg syscall (freebsd-amd64), const IFT_SLIP ideal-int
+pkg syscall (freebsd-amd64), const IFT_SMDSDXI ideal-int
+pkg syscall (freebsd-amd64), const IFT_SMDSICIP ideal-int
+pkg syscall (freebsd-amd64), const IFT_SONET ideal-int
+pkg syscall (freebsd-amd64), const IFT_SONETOVERHEADCHANNEL ideal-int
+pkg syscall (freebsd-amd64), const IFT_SONETPATH ideal-int
+pkg syscall (freebsd-amd64), const IFT_SONETVT ideal-int
+pkg syscall (freebsd-amd64), const IFT_SRP ideal-int
+pkg syscall (freebsd-amd64), const IFT_SS7SIGLINK ideal-int
+pkg syscall (freebsd-amd64), const IFT_STACKTOSTACK ideal-int
+pkg syscall (freebsd-amd64), const IFT_STARLAN ideal-int
+pkg syscall (freebsd-amd64), const IFT_STF ideal-int
+pkg syscall (freebsd-amd64), const IFT_T1 ideal-int
+pkg syscall (freebsd-amd64), const IFT_TDLC ideal-int
+pkg syscall (freebsd-amd64), const IFT_TERMPAD ideal-int
+pkg syscall (freebsd-amd64), const IFT_TR008 ideal-int
+pkg syscall (freebsd-amd64), const IFT_TRANSPHDLC ideal-int
+pkg syscall (freebsd-amd64), const IFT_TUNNEL ideal-int
+pkg syscall (freebsd-amd64), const IFT_ULTRA ideal-int
+pkg syscall (freebsd-amd64), const IFT_USB ideal-int
+pkg syscall (freebsd-amd64), const IFT_V11 ideal-int
+pkg syscall (freebsd-amd64), const IFT_V35 ideal-int
+pkg syscall (freebsd-amd64), const IFT_V36 ideal-int
+pkg syscall (freebsd-amd64), const IFT_V37 ideal-int
+pkg syscall (freebsd-amd64), const IFT_VDSL ideal-int
+pkg syscall (freebsd-amd64), const IFT_VIRTUALIPADDRESS ideal-int
+pkg syscall (freebsd-amd64), const IFT_VOICEEM ideal-int
+pkg syscall (freebsd-amd64), const IFT_VOICEENCAP ideal-int
+pkg syscall (freebsd-amd64), const IFT_VOICEFXO ideal-int
+pkg syscall (freebsd-amd64), const IFT_VOICEFXS ideal-int
+pkg syscall (freebsd-amd64), const IFT_VOICEOVERATM ideal-int
+pkg syscall (freebsd-amd64), const IFT_VOICEOVERFRAMERELAY ideal-int
+pkg syscall (freebsd-amd64), const IFT_VOICEOVERIP ideal-int
+pkg syscall (freebsd-amd64), const IFT_X213 ideal-int
+pkg syscall (freebsd-amd64), const IFT_X25 ideal-int
+pkg syscall (freebsd-amd64), const IFT_X25DDN ideal-int
+pkg syscall (freebsd-amd64), const IFT_X25HUNTGROUP ideal-int
+pkg syscall (freebsd-amd64), const IFT_X25MLP ideal-int
+pkg syscall (freebsd-amd64), const IFT_X25PLE ideal-int
+pkg syscall (freebsd-amd64), const IFT_XETHER ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSA_HOST ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSA_MAX ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSA_NET ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSB_HOST ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSB_MAX ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSB_NET ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSC_HOST ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSC_NET ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSD_HOST ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSD_NET ideal-int
+pkg syscall (freebsd-amd64), const IN_CLASSD_NSHIFT ideal-int
+pkg syscall (freebsd-amd64), const IN_LOOPBACKNET ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_3PC ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_ADFS ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_AH ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_AHIP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_APES ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_ARGUS ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_AX25 ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_BHA ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_BLT ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_BRSATMON ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_CARP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_CFTP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_CHAOS ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_CMTP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_CPHB ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_CPNX ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_DDP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_DGP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_DIVERT ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_DONE ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_EGP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_EMCON ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_ENCAP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_EON ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_ESP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_ETHERIP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_GGP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_GMTP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_GRE ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_HELLO ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_HMP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_ICMP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IDP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IDPR ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IDRP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IGMP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IGP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IGRP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IL ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_INLSP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_INP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IPCOMP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IPCV ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IPEIP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IPIP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IPPC ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IPV4 ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_IRTP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_KRYPTOLAN ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_LARP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_LEAF1 ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_LEAF2 ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_MAX ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_MAXID ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_MEAS ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_MHRP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_MICP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_MOBILE ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_MTP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_MUX ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_ND ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_NHRP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_NONE ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_NSP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_NVPII ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_OLD_DIVERT ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_OSPFIGP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_PFSYNC ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_PGM ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_PIGP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_PIM ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_PRM ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_PUP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_PVP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_RAW ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_RCCMON ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_RDP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_ROUTING ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_RSVP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_RVD ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_SATEXPAK ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_SATMON ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_SCCSP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_SCTP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_SDRP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_SEP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_SKIP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_SPACER ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_SRPC ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_ST ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_SVMTP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_SWIPE ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_TCF ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_TLSP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_TP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_TPXX ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_TRUNK1 ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_TRUNK2 ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_TTP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_VINES ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_VISA ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_VMTP ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_WBEXPAK ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_WBMON ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_WSN ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_XNET ideal-int
+pkg syscall (freebsd-amd64), const IPPROTO_XTP ideal-int
+pkg syscall (freebsd-amd64), const IPV6_AUTOFLOWLABEL ideal-int
+pkg syscall (freebsd-amd64), const IPV6_BINDANY ideal-int
+pkg syscall (freebsd-amd64), const IPV6_BINDV6ONLY ideal-int
+pkg syscall (freebsd-amd64), const IPV6_CHECKSUM ideal-int
+pkg syscall (freebsd-amd64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
+pkg syscall (freebsd-amd64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-amd64), const IPV6_DEFHLIM ideal-int
+pkg syscall (freebsd-amd64), const IPV6_DONTFRAG ideal-int
+pkg syscall (freebsd-amd64), const IPV6_DSTOPTS ideal-int
+pkg syscall (freebsd-amd64), const IPV6_FAITH ideal-int
+pkg syscall (freebsd-amd64), const IPV6_FLOWINFO_MASK ideal-int
+pkg syscall (freebsd-amd64), const IPV6_FLOWLABEL_MASK ideal-int
+pkg syscall (freebsd-amd64), const IPV6_FRAGTTL ideal-int
+pkg syscall (freebsd-amd64), const IPV6_FW_ADD ideal-int
+pkg syscall (freebsd-amd64), const IPV6_FW_DEL ideal-int
+pkg syscall (freebsd-amd64), const IPV6_FW_FLUSH ideal-int
+pkg syscall (freebsd-amd64), const IPV6_FW_GET ideal-int
+pkg syscall (freebsd-amd64), const IPV6_FW_ZERO ideal-int
+pkg syscall (freebsd-amd64), const IPV6_HLIMDEC ideal-int
+pkg syscall (freebsd-amd64), const IPV6_HOPLIMIT ideal-int
+pkg syscall (freebsd-amd64), const IPV6_HOPOPTS ideal-int
+pkg syscall (freebsd-amd64), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-amd64), const IPV6_MAXHLIM ideal-int
+pkg syscall (freebsd-amd64), const IPV6_MAXOPTHDR ideal-int
+pkg syscall (freebsd-amd64), const IPV6_MAXPACKET ideal-int
+pkg syscall (freebsd-amd64), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-amd64), const IPV6_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-amd64), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-amd64), const IPV6_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-amd64), const IPV6_MMTU ideal-int
+pkg syscall (freebsd-amd64), const IPV6_MSFILTER ideal-int
+pkg syscall (freebsd-amd64), const IPV6_NEXTHOP ideal-int
+pkg syscall (freebsd-amd64), const IPV6_PATHMTU ideal-int
+pkg syscall (freebsd-amd64), const IPV6_PKTINFO ideal-int
+pkg syscall (freebsd-amd64), const IPV6_PORTRANGE ideal-int
+pkg syscall (freebsd-amd64), const IPV6_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-amd64), const IPV6_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-amd64), const IPV6_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-amd64), const IPV6_PREFER_TEMPADDR ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RECVPATHMTU ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RECVRTHDR ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RECVTCLASS ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RTHDR ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (freebsd-amd64), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (freebsd-amd64), const IPV6_SOCKOPT_RESERVED1 ideal-int
+pkg syscall (freebsd-amd64), const IPV6_TCLASS ideal-int
+pkg syscall (freebsd-amd64), const IPV6_USE_MIN_MTU ideal-int
+pkg syscall (freebsd-amd64), const IPV6_VERSION ideal-int
+pkg syscall (freebsd-amd64), const IPV6_VERSION_MASK ideal-int
+pkg syscall (freebsd-amd64), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-amd64), const IP_BINDANY ideal-int
+pkg syscall (freebsd-amd64), const IP_BLOCK_SOURCE ideal-int
+pkg syscall (freebsd-amd64), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (freebsd-amd64), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (freebsd-amd64), const IP_DF ideal-int
+pkg syscall (freebsd-amd64), const IP_DONTFRAG ideal-int
+pkg syscall (freebsd-amd64), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (freebsd-amd64), const IP_DUMMYNET3 ideal-int
+pkg syscall (freebsd-amd64), const IP_DUMMYNET_CONFIGURE ideal-int
+pkg syscall (freebsd-amd64), const IP_DUMMYNET_DEL ideal-int
+pkg syscall (freebsd-amd64), const IP_DUMMYNET_FLUSH ideal-int
+pkg syscall (freebsd-amd64), const IP_DUMMYNET_GET ideal-int
+pkg syscall (freebsd-amd64), const IP_FAITH ideal-int
+pkg syscall (freebsd-amd64), const IP_FW3 ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_ADD ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_DEL ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_FLUSH ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_GET ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_NAT_CFG ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_NAT_DEL ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_NAT_GET_CONFIG ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_NAT_GET_LOG ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_RESETLOG ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_TABLE_ADD ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_TABLE_DEL ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_TABLE_FLUSH ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_TABLE_GETSIZE ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_TABLE_LIST ideal-int
+pkg syscall (freebsd-amd64), const IP_FW_ZERO ideal-int
+pkg syscall (freebsd-amd64), const IP_HDRINCL ideal-int
+pkg syscall (freebsd-amd64), const IP_IPSEC_POLICY ideal-int
+pkg syscall (freebsd-amd64), const IP_MAXPACKET ideal-int
+pkg syscall (freebsd-amd64), const IP_MAX_GROUP_SRC_FILTER ideal-int
+pkg syscall (freebsd-amd64), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-amd64), const IP_MAX_SOCK_MUTE_FILTER ideal-int
+pkg syscall (freebsd-amd64), const IP_MAX_SOCK_SRC_FILTER ideal-int
+pkg syscall (freebsd-amd64), const IP_MAX_SOURCE_FILTER ideal-int
+pkg syscall (freebsd-amd64), const IP_MF ideal-int
+pkg syscall (freebsd-amd64), const IP_MINTTL ideal-int
+pkg syscall (freebsd-amd64), const IP_MIN_MEMBERSHIPS ideal-int
+pkg syscall (freebsd-amd64), const IP_MSFILTER ideal-int
+pkg syscall (freebsd-amd64), const IP_MSS ideal-int
+pkg syscall (freebsd-amd64), const IP_MULTICAST_VIF ideal-int
+pkg syscall (freebsd-amd64), const IP_OFFMASK ideal-int
+pkg syscall (freebsd-amd64), const IP_ONESBCAST ideal-int
+pkg syscall (freebsd-amd64), const IP_OPTIONS ideal-int
+pkg syscall (freebsd-amd64), const IP_PORTRANGE ideal-int
+pkg syscall (freebsd-amd64), const IP_PORTRANGE_DEFAULT ideal-int
+pkg syscall (freebsd-amd64), const IP_PORTRANGE_HIGH ideal-int
+pkg syscall (freebsd-amd64), const IP_PORTRANGE_LOW ideal-int
+pkg syscall (freebsd-amd64), const IP_RECVDSTADDR ideal-int
+pkg syscall (freebsd-amd64), const IP_RECVIF ideal-int
+pkg syscall (freebsd-amd64), const IP_RECVOPTS ideal-int
+pkg syscall (freebsd-amd64), const IP_RECVRETOPTS ideal-int
+pkg syscall (freebsd-amd64), const IP_RECVTTL ideal-int
+pkg syscall (freebsd-amd64), const IP_RETOPTS ideal-int
+pkg syscall (freebsd-amd64), const IP_RF ideal-int
+pkg syscall (freebsd-amd64), const IP_RSVP_OFF ideal-int
+pkg syscall (freebsd-amd64), const IP_RSVP_ON ideal-int
+pkg syscall (freebsd-amd64), const IP_RSVP_VIF_OFF ideal-int
+pkg syscall (freebsd-amd64), const IP_RSVP_VIF_ON ideal-int
+pkg syscall (freebsd-amd64), const IP_SENDSRCADDR ideal-int
+pkg syscall (freebsd-amd64), const IP_UNBLOCK_SOURCE ideal-int
+pkg syscall (freebsd-amd64), const LOCK_EX ideal-int
+pkg syscall (freebsd-amd64), const LOCK_NB ideal-int
+pkg syscall (freebsd-amd64), const LOCK_SH ideal-int
+pkg syscall (freebsd-amd64), const LOCK_UN ideal-int
+pkg syscall (freebsd-amd64), const MSG_COMPAT ideal-int
+pkg syscall (freebsd-amd64), const MSG_CTRUNC ideal-int
+pkg syscall (freebsd-amd64), const MSG_DONTROUTE ideal-int
+pkg syscall (freebsd-amd64), const MSG_DONTWAIT ideal-int
+pkg syscall (freebsd-amd64), const MSG_EOF ideal-int
+pkg syscall (freebsd-amd64), const MSG_EOR ideal-int
+pkg syscall (freebsd-amd64), const MSG_NBIO ideal-int
+pkg syscall (freebsd-amd64), const MSG_NOSIGNAL ideal-int
+pkg syscall (freebsd-amd64), const MSG_NOTIFICATION ideal-int
+pkg syscall (freebsd-amd64), const MSG_OOB ideal-int
+pkg syscall (freebsd-amd64), const MSG_PEEK ideal-int
+pkg syscall (freebsd-amd64), const MSG_TRUNC ideal-int
+pkg syscall (freebsd-amd64), const MSG_WAITALL ideal-int
+pkg syscall (freebsd-amd64), const NET_RT_DUMP ideal-int
+pkg syscall (freebsd-amd64), const NET_RT_FLAGS ideal-int
+pkg syscall (freebsd-amd64), const NET_RT_IFLIST ideal-int
+pkg syscall (freebsd-amd64), const NET_RT_IFMALIST ideal-int
+pkg syscall (freebsd-amd64), const NET_RT_MAXID ideal-int
+pkg syscall (freebsd-amd64), const NOTE_ATTRIB ideal-int
+pkg syscall (freebsd-amd64), const NOTE_CHILD ideal-int
+pkg syscall (freebsd-amd64), const NOTE_DELETE ideal-int
+pkg syscall (freebsd-amd64), const NOTE_EXEC ideal-int
+pkg syscall (freebsd-amd64), const NOTE_EXIT ideal-int
+pkg syscall (freebsd-amd64), const NOTE_EXTEND ideal-int
+pkg syscall (freebsd-amd64), const NOTE_FFAND ideal-int
+pkg syscall (freebsd-amd64), const NOTE_FFCOPY ideal-int
+pkg syscall (freebsd-amd64), const NOTE_FFCTRLMASK ideal-int
+pkg syscall (freebsd-amd64), const NOTE_FFLAGSMASK ideal-int
+pkg syscall (freebsd-amd64), const NOTE_FFNOP ideal-int
+pkg syscall (freebsd-amd64), const NOTE_FFOR ideal-int
+pkg syscall (freebsd-amd64), const NOTE_FORK ideal-int
+pkg syscall (freebsd-amd64), const NOTE_LINK ideal-int
+pkg syscall (freebsd-amd64), const NOTE_LOWAT ideal-int
+pkg syscall (freebsd-amd64), const NOTE_PCTRLMASK ideal-int
+pkg syscall (freebsd-amd64), const NOTE_PDATAMASK ideal-int
+pkg syscall (freebsd-amd64), const NOTE_RENAME ideal-int
+pkg syscall (freebsd-amd64), const NOTE_REVOKE ideal-int
+pkg syscall (freebsd-amd64), const NOTE_TRACK ideal-int
+pkg syscall (freebsd-amd64), const NOTE_TRACKERR ideal-int
+pkg syscall (freebsd-amd64), const NOTE_TRIGGER ideal-int
+pkg syscall (freebsd-amd64), const NOTE_WRITE ideal-int
+pkg syscall (freebsd-amd64), const O_ACCMODE ideal-int
+pkg syscall (freebsd-amd64), const O_DIRECT ideal-int
+pkg syscall (freebsd-amd64), const O_DIRECTORY ideal-int
+pkg syscall (freebsd-amd64), const O_EXEC ideal-int
+pkg syscall (freebsd-amd64), const O_EXLOCK ideal-int
+pkg syscall (freebsd-amd64), const O_FSYNC ideal-int
+pkg syscall (freebsd-amd64), const O_NDELAY ideal-int
+pkg syscall (freebsd-amd64), const O_NOFOLLOW ideal-int
+pkg syscall (freebsd-amd64), const O_SHLOCK ideal-int
+pkg syscall (freebsd-amd64), const O_TTY_INIT ideal-int
+pkg syscall (freebsd-amd64), const PTRACE_CONT ideal-int
+pkg syscall (freebsd-amd64), const PTRACE_KILL ideal-int
+pkg syscall (freebsd-amd64), const PTRACE_TRACEME ideal-int
+pkg syscall (freebsd-amd64), const RLIMIT_AS ideal-int
+pkg syscall (freebsd-amd64), const RLIMIT_CORE ideal-int
+pkg syscall (freebsd-amd64), const RLIMIT_CPU ideal-int
+pkg syscall (freebsd-amd64), const RLIMIT_DATA ideal-int
+pkg syscall (freebsd-amd64), const RLIMIT_FSIZE ideal-int
+pkg syscall (freebsd-amd64), const RLIMIT_NOFILE ideal-int
+pkg syscall (freebsd-amd64), const RLIMIT_STACK ideal-int
+pkg syscall (freebsd-amd64), const RLIM_INFINITY ideal-int
+pkg syscall (freebsd-amd64), const RTAX_AUTHOR ideal-int
+pkg syscall (freebsd-amd64), const RTAX_BRD ideal-int
+pkg syscall (freebsd-amd64), const RTAX_DST ideal-int
+pkg syscall (freebsd-amd64), const RTAX_GATEWAY ideal-int
+pkg syscall (freebsd-amd64), const RTAX_GENMASK ideal-int
+pkg syscall (freebsd-amd64), const RTAX_IFA ideal-int
+pkg syscall (freebsd-amd64), const RTAX_IFP ideal-int
+pkg syscall (freebsd-amd64), const RTAX_MAX ideal-int
+pkg syscall (freebsd-amd64), const RTAX_NETMASK ideal-int
+pkg syscall (freebsd-amd64), const RTA_AUTHOR ideal-int
+pkg syscall (freebsd-amd64), const RTA_BRD ideal-int
+pkg syscall (freebsd-amd64), const RTA_DST ideal-int
+pkg syscall (freebsd-amd64), const RTA_GATEWAY ideal-int
+pkg syscall (freebsd-amd64), const RTA_GENMASK ideal-int
+pkg syscall (freebsd-amd64), const RTA_IFA ideal-int
+pkg syscall (freebsd-amd64), const RTA_IFP ideal-int
+pkg syscall (freebsd-amd64), const RTA_NETMASK ideal-int
+pkg syscall (freebsd-amd64), const RTF_BLACKHOLE ideal-int
+pkg syscall (freebsd-amd64), const RTF_BROADCAST ideal-int
+pkg syscall (freebsd-amd64), const RTF_DONE ideal-int
+pkg syscall (freebsd-amd64), const RTF_DYNAMIC ideal-int
+pkg syscall (freebsd-amd64), const RTF_FMASK ideal-int
+pkg syscall (freebsd-amd64), const RTF_GATEWAY ideal-int
+pkg syscall (freebsd-amd64), const RTF_HOST ideal-int
+pkg syscall (freebsd-amd64), const RTF_LLDATA ideal-int
+pkg syscall (freebsd-amd64), const RTF_LLINFO ideal-int
+pkg syscall (freebsd-amd64), const RTF_LOCAL ideal-int
+pkg syscall (freebsd-amd64), const RTF_MODIFIED ideal-int
+pkg syscall (freebsd-amd64), const RTF_MULTICAST ideal-int
+pkg syscall (freebsd-amd64), const RTF_PINNED ideal-int
+pkg syscall (freebsd-amd64), const RTF_PRCLONING ideal-int
+pkg syscall (freebsd-amd64), const RTF_PROTO1 ideal-int
+pkg syscall (freebsd-amd64), const RTF_PROTO2 ideal-int
+pkg syscall (freebsd-amd64), const RTF_PROTO3 ideal-int
+pkg syscall (freebsd-amd64), const RTF_REJECT ideal-int
+pkg syscall (freebsd-amd64), const RTF_RNH_LOCKED ideal-int
+pkg syscall (freebsd-amd64), const RTF_STATIC ideal-int
+pkg syscall (freebsd-amd64), const RTF_STICKY ideal-int
+pkg syscall (freebsd-amd64), const RTF_UP ideal-int
+pkg syscall (freebsd-amd64), const RTF_XRESOLVE ideal-int
+pkg syscall (freebsd-amd64), const RTM_ADD ideal-int
+pkg syscall (freebsd-amd64), const RTM_CHANGE ideal-int
+pkg syscall (freebsd-amd64), const RTM_DELADDR ideal-int
+pkg syscall (freebsd-amd64), const RTM_DELETE ideal-int
+pkg syscall (freebsd-amd64), const RTM_DELMADDR ideal-int
+pkg syscall (freebsd-amd64), const RTM_GET ideal-int
+pkg syscall (freebsd-amd64), const RTM_IEEE80211 ideal-int
+pkg syscall (freebsd-amd64), const RTM_IFANNOUNCE ideal-int
+pkg syscall (freebsd-amd64), const RTM_IFINFO ideal-int
+pkg syscall (freebsd-amd64), const RTM_LOCK ideal-int
+pkg syscall (freebsd-amd64), const RTM_LOSING ideal-int
+pkg syscall (freebsd-amd64), const RTM_MISS ideal-int
+pkg syscall (freebsd-amd64), const RTM_NEWADDR ideal-int
+pkg syscall (freebsd-amd64), const RTM_NEWMADDR ideal-int
+pkg syscall (freebsd-amd64), const RTM_OLDADD ideal-int
+pkg syscall (freebsd-amd64), const RTM_OLDDEL ideal-int
+pkg syscall (freebsd-amd64), const RTM_REDIRECT ideal-int
+pkg syscall (freebsd-amd64), const RTM_RESOLVE ideal-int
+pkg syscall (freebsd-amd64), const RTM_RTTUNIT ideal-int
+pkg syscall (freebsd-amd64), const RTM_VERSION ideal-int
+pkg syscall (freebsd-amd64), const RTV_EXPIRE ideal-int
+pkg syscall (freebsd-amd64), const RTV_HOPCOUNT ideal-int
+pkg syscall (freebsd-amd64), const RTV_MTU ideal-int
+pkg syscall (freebsd-amd64), const RTV_RPIPE ideal-int
+pkg syscall (freebsd-amd64), const RTV_RTT ideal-int
+pkg syscall (freebsd-amd64), const RTV_RTTVAR ideal-int
+pkg syscall (freebsd-amd64), const RTV_SPIPE ideal-int
+pkg syscall (freebsd-amd64), const RTV_SSTHRESH ideal-int
+pkg syscall (freebsd-amd64), const RTV_WEIGHT ideal-int
+pkg syscall (freebsd-amd64), const RUSAGE_CHILDREN ideal-int
+pkg syscall (freebsd-amd64), const RUSAGE_SELF ideal-int
+pkg syscall (freebsd-amd64), const RUSAGE_THREAD ideal-int
+pkg syscall (freebsd-amd64), const SCM_BINTIME ideal-int
+pkg syscall (freebsd-amd64), const SCM_CREDS ideal-int
+pkg syscall (freebsd-amd64), const SCM_RIGHTS ideal-int
+pkg syscall (freebsd-amd64), const SCM_TIMESTAMP ideal-int
+pkg syscall (freebsd-amd64), const SIGCHLD Signal
+pkg syscall (freebsd-amd64), const SIGCONT Signal
+pkg syscall (freebsd-amd64), const SIGEMT Signal
+pkg syscall (freebsd-amd64), const SIGINFO Signal
+pkg syscall (freebsd-amd64), const SIGIO Signal
+pkg syscall (freebsd-amd64), const SIGIOT Signal
+pkg syscall (freebsd-amd64), const SIGLWP Signal
+pkg syscall (freebsd-amd64), const SIGPROF Signal
+pkg syscall (freebsd-amd64), const SIGSTOP Signal
+pkg syscall (freebsd-amd64), const SIGSYS Signal
+pkg syscall (freebsd-amd64), const SIGTHR Signal
+pkg syscall (freebsd-amd64), const SIGTSTP Signal
+pkg syscall (freebsd-amd64), const SIGTTIN Signal
+pkg syscall (freebsd-amd64), const SIGTTOU Signal
+pkg syscall (freebsd-amd64), const SIGURG Signal
+pkg syscall (freebsd-amd64), const SIGUSR1 Signal
+pkg syscall (freebsd-amd64), const SIGUSR2 Signal
+pkg syscall (freebsd-amd64), const SIGVTALRM Signal
+pkg syscall (freebsd-amd64), const SIGWINCH Signal
+pkg syscall (freebsd-amd64), const SIGXCPU Signal
+pkg syscall (freebsd-amd64), const SIGXFSZ Signal
+pkg syscall (freebsd-amd64), const SIOCADDMULTI ideal-int
+pkg syscall (freebsd-amd64), const SIOCADDRT ideal-int
+pkg syscall (freebsd-amd64), const SIOCAIFADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCAIFGROUP ideal-int
+pkg syscall (freebsd-amd64), const SIOCALIFADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCATMARK ideal-int
+pkg syscall (freebsd-amd64), const SIOCDELMULTI ideal-int
+pkg syscall (freebsd-amd64), const SIOCDELRT ideal-int
+pkg syscall (freebsd-amd64), const SIOCDIFADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCDIFGROUP ideal-int
+pkg syscall (freebsd-amd64), const SIOCDIFPHYADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCDLIFADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCGDRVSPEC ideal-int
+pkg syscall (freebsd-amd64), const SIOCGETSGCNT ideal-int
+pkg syscall (freebsd-amd64), const SIOCGETVIFCNT ideal-int
+pkg syscall (freebsd-amd64), const SIOCGHIWAT ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFBRDADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFCAP ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFCONF ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFDESCR ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFDSTADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFFLAGS ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFGENERIC ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFGMEMB ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFGROUP ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFINDEX ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFMAC ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFMEDIA ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFMETRIC ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFMTU ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFNETMASK ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFPDSTADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFPHYS ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFPSRCADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCGIFSTATUS ideal-int
+pkg syscall (freebsd-amd64), const SIOCGLIFADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCGLIFPHYADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCGLOWAT ideal-int
+pkg syscall (freebsd-amd64), const SIOCGPGRP ideal-int
+pkg syscall (freebsd-amd64), const SIOCGPRIVATE_0 ideal-int
+pkg syscall (freebsd-amd64), const SIOCGPRIVATE_1 ideal-int
+pkg syscall (freebsd-amd64), const SIOCIFCREATE ideal-int
+pkg syscall (freebsd-amd64), const SIOCIFCREATE2 ideal-int
+pkg syscall (freebsd-amd64), const SIOCIFDESTROY ideal-int
+pkg syscall (freebsd-amd64), const SIOCIFGCLONERS ideal-int
+pkg syscall (freebsd-amd64), const SIOCSDRVSPEC ideal-int
+pkg syscall (freebsd-amd64), const SIOCSHIWAT ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFBRDADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFCAP ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFDESCR ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFDSTADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFFLAGS ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFGENERIC ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFLLADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFMAC ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFMEDIA ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFMETRIC ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFMTU ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFNAME ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFNETMASK ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFPHYADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFPHYS ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFRVNET ideal-int
+pkg syscall (freebsd-amd64), const SIOCSIFVNET ideal-int
+pkg syscall (freebsd-amd64), const SIOCSLIFPHYADDR ideal-int
+pkg syscall (freebsd-amd64), const SIOCSLOWAT ideal-int
+pkg syscall (freebsd-amd64), const SIOCSPGRP ideal-int
+pkg syscall (freebsd-amd64), const SOCK_MAXADDRLEN ideal-int
+pkg syscall (freebsd-amd64), const SOCK_RDM ideal-int
+pkg syscall (freebsd-amd64), const SO_ACCEPTCONN ideal-int
+pkg syscall (freebsd-amd64), const SO_ACCEPTFILTER ideal-int
+pkg syscall (freebsd-amd64), const SO_BINTIME ideal-int
+pkg syscall (freebsd-amd64), const SO_DEBUG ideal-int
+pkg syscall (freebsd-amd64), const SO_ERROR ideal-int
+pkg syscall (freebsd-amd64), const SO_LABEL ideal-int
+pkg syscall (freebsd-amd64), const SO_LISTENINCQLEN ideal-int
+pkg syscall (freebsd-amd64), const SO_LISTENQLEN ideal-int
+pkg syscall (freebsd-amd64), const SO_LISTENQLIMIT ideal-int
+pkg syscall (freebsd-amd64), const SO_NOSIGPIPE ideal-int
+pkg syscall (freebsd-amd64), const SO_NO_DDP ideal-int
+pkg syscall (freebsd-amd64), const SO_NO_OFFLOAD ideal-int
+pkg syscall (freebsd-amd64), const SO_OOBINLINE ideal-int
+pkg syscall (freebsd-amd64), const SO_PEERLABEL ideal-int
+pkg syscall (freebsd-amd64), const SO_RCVLOWAT ideal-int
+pkg syscall (freebsd-amd64), const SO_RCVTIMEO ideal-int
+pkg syscall (freebsd-amd64), const SO_REUSEPORT ideal-int
+pkg syscall (freebsd-amd64), const SO_SETFIB ideal-int
+pkg syscall (freebsd-amd64), const SO_SNDLOWAT ideal-int
+pkg syscall (freebsd-amd64), const SO_SNDTIMEO ideal-int
+pkg syscall (freebsd-amd64), const SO_TIMESTAMP ideal-int
+pkg syscall (freebsd-amd64), const SO_TYPE ideal-int
+pkg syscall (freebsd-amd64), const SO_USELOOPBACK ideal-int
+pkg syscall (freebsd-amd64), const SYS_ABORT2 ideal-int
+pkg syscall (freebsd-amd64), const SYS_ACCEPT ideal-int
+pkg syscall (freebsd-amd64), const SYS_ACCESS ideal-int
+pkg syscall (freebsd-amd64), const SYS_ACCT ideal-int
+pkg syscall (freebsd-amd64), const SYS_ADJTIME ideal-int
+pkg syscall (freebsd-amd64), const SYS_AUDIT ideal-int
+pkg syscall (freebsd-amd64), const SYS_AUDITCTL ideal-int
+pkg syscall (freebsd-amd64), const SYS_AUDITON ideal-int
+pkg syscall (freebsd-amd64), const SYS_BIND ideal-int
+pkg syscall (freebsd-amd64), const SYS_CAP_ENTER ideal-int
+pkg syscall (freebsd-amd64), const SYS_CAP_GETMODE ideal-int
+pkg syscall (freebsd-amd64), const SYS_CAP_GETRIGHTS ideal-int
+pkg syscall (freebsd-amd64), const SYS_CAP_NEW ideal-int
+pkg syscall (freebsd-amd64), const SYS_CHDIR ideal-int
+pkg syscall (freebsd-amd64), const SYS_CHFLAGS ideal-int
+pkg syscall (freebsd-amd64), const SYS_CHMOD ideal-int
+pkg syscall (freebsd-amd64), const SYS_CHOWN ideal-int
+pkg syscall (freebsd-amd64), const SYS_CHROOT ideal-int
+pkg syscall (freebsd-amd64), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (freebsd-amd64), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (freebsd-amd64), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (freebsd-amd64), const SYS_CLOSE ideal-int
+pkg syscall (freebsd-amd64), const SYS_CLOSEFROM ideal-int
+pkg syscall (freebsd-amd64), const SYS_CONNECT ideal-int
+pkg syscall (freebsd-amd64), const SYS_CPUSET ideal-int
+pkg syscall (freebsd-amd64), const SYS_CPUSET_GETAFFINITY ideal-int
+pkg syscall (freebsd-amd64), const SYS_CPUSET_GETID ideal-int
+pkg syscall (freebsd-amd64), const SYS_CPUSET_SETAFFINITY ideal-int
+pkg syscall (freebsd-amd64), const SYS_CPUSET_SETID ideal-int
+pkg syscall (freebsd-amd64), const SYS_DUP ideal-int
+pkg syscall (freebsd-amd64), const SYS_DUP2 ideal-int
+pkg syscall (freebsd-amd64), const SYS_EACCESS ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXECVE ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXIT ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTRCTL ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_DELETE_FD ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_DELETE_FILE ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_DELETE_LINK ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_GET_FD ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_GET_FILE ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_GET_LINK ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_LIST_FD ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_LIST_FILE ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_LIST_LINK ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_SET_FD ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_SET_FILE ideal-int
+pkg syscall (freebsd-amd64), const SYS_EXTATTR_SET_LINK ideal-int
+pkg syscall (freebsd-amd64), const SYS_FACCESSAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_FCHDIR ideal-int
+pkg syscall (freebsd-amd64), const SYS_FCHFLAGS ideal-int
+pkg syscall (freebsd-amd64), const SYS_FCHMOD ideal-int
+pkg syscall (freebsd-amd64), const SYS_FCHMODAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_FCHOWN ideal-int
+pkg syscall (freebsd-amd64), const SYS_FCHOWNAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_FCNTL ideal-int
+pkg syscall (freebsd-amd64), const SYS_FEXECVE ideal-int
+pkg syscall (freebsd-amd64), const SYS_FFCLOCK_GETCOUNTER ideal-int
+pkg syscall (freebsd-amd64), const SYS_FFCLOCK_GETESTIMATE ideal-int
+pkg syscall (freebsd-amd64), const SYS_FFCLOCK_SETESTIMATE ideal-int
+pkg syscall (freebsd-amd64), const SYS_FHOPEN ideal-int
+pkg syscall (freebsd-amd64), const SYS_FHSTAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_FHSTATFS ideal-int
+pkg syscall (freebsd-amd64), const SYS_FLOCK ideal-int
+pkg syscall (freebsd-amd64), const SYS_FORK ideal-int
+pkg syscall (freebsd-amd64), const SYS_FPATHCONF ideal-int
+pkg syscall (freebsd-amd64), const SYS_FREEBSD6_FTRUNCATE ideal-int
+pkg syscall (freebsd-amd64), const SYS_FREEBSD6_LSEEK ideal-int
+pkg syscall (freebsd-amd64), const SYS_FREEBSD6_MMAP ideal-int
+pkg syscall (freebsd-amd64), const SYS_FREEBSD6_PREAD ideal-int
+pkg syscall (freebsd-amd64), const SYS_FREEBSD6_PWRITE ideal-int
+pkg syscall (freebsd-amd64), const SYS_FREEBSD6_TRUNCATE ideal-int
+pkg syscall (freebsd-amd64), const SYS_FSTAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_FSTATAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_FSTATFS ideal-int
+pkg syscall (freebsd-amd64), const SYS_FSYNC ideal-int
+pkg syscall (freebsd-amd64), const SYS_FTRUNCATE ideal-int
+pkg syscall (freebsd-amd64), const SYS_FUTIMES ideal-int
+pkg syscall (freebsd-amd64), const SYS_FUTIMESAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETAUDIT ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETAUID ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETCONTEXT ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETDENTS ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETDIRENTRIES ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETDTABLESIZE ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETEGID ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETEUID ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETFH ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETFSSTAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETGID ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETGROUPS ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETITIMER ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETLOGIN ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETLOGINCLASS ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETPEERNAME ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETPGID ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETPGRP ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETPID ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETPPID ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETPRIORITY ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETRESGID ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETRESUID ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETRLIMIT ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETRUSAGE ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETSID ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETSOCKNAME ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETSOCKOPT ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (freebsd-amd64), const SYS_GETUID ideal-int
+pkg syscall (freebsd-amd64), const SYS_IOCTL ideal-int
+pkg syscall (freebsd-amd64), const SYS_ISSETUGID ideal-int
+pkg syscall (freebsd-amd64), const SYS_JAIL ideal-int
+pkg syscall (freebsd-amd64), const SYS_JAIL_ATTACH ideal-int
+pkg syscall (freebsd-amd64), const SYS_JAIL_GET ideal-int
+pkg syscall (freebsd-amd64), const SYS_JAIL_REMOVE ideal-int
+pkg syscall (freebsd-amd64), const SYS_JAIL_SET ideal-int
+pkg syscall (freebsd-amd64), const SYS_KENV ideal-int
+pkg syscall (freebsd-amd64), const SYS_KEVENT ideal-int
+pkg syscall (freebsd-amd64), const SYS_KILL ideal-int
+pkg syscall (freebsd-amd64), const SYS_KLDFIND ideal-int
+pkg syscall (freebsd-amd64), const SYS_KLDFIRSTMOD ideal-int
+pkg syscall (freebsd-amd64), const SYS_KLDLOAD ideal-int
+pkg syscall (freebsd-amd64), const SYS_KLDNEXT ideal-int
+pkg syscall (freebsd-amd64), const SYS_KLDSTAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_KLDSYM ideal-int
+pkg syscall (freebsd-amd64), const SYS_KLDUNLOAD ideal-int
+pkg syscall (freebsd-amd64), const SYS_KLDUNLOADF ideal-int
+pkg syscall (freebsd-amd64), const SYS_KQUEUE ideal-int
+pkg syscall (freebsd-amd64), const SYS_KTIMER_CREATE ideal-int
+pkg syscall (freebsd-amd64), const SYS_KTIMER_DELETE ideal-int
+pkg syscall (freebsd-amd64), const SYS_KTIMER_GETOVERRUN ideal-int
+pkg syscall (freebsd-amd64), const SYS_KTIMER_GETTIME ideal-int
+pkg syscall (freebsd-amd64), const SYS_KTIMER_SETTIME ideal-int
+pkg syscall (freebsd-amd64), const SYS_KTRACE ideal-int
+pkg syscall (freebsd-amd64), const SYS_LCHFLAGS ideal-int
+pkg syscall (freebsd-amd64), const SYS_LCHMOD ideal-int
+pkg syscall (freebsd-amd64), const SYS_LCHOWN ideal-int
+pkg syscall (freebsd-amd64), const SYS_LGETFH ideal-int
+pkg syscall (freebsd-amd64), const SYS_LINK ideal-int
+pkg syscall (freebsd-amd64), const SYS_LINKAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_LISTEN ideal-int
+pkg syscall (freebsd-amd64), const SYS_LPATHCONF ideal-int
+pkg syscall (freebsd-amd64), const SYS_LSEEK ideal-int
+pkg syscall (freebsd-amd64), const SYS_LSTAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_LUTIMES ideal-int
+pkg syscall (freebsd-amd64), const SYS_MAC_SYSCALL ideal-int
+pkg syscall (freebsd-amd64), const SYS_MADVISE ideal-int
+pkg syscall (freebsd-amd64), const SYS_MINCORE ideal-int
+pkg syscall (freebsd-amd64), const SYS_MINHERIT ideal-int
+pkg syscall (freebsd-amd64), const SYS_MKDIR ideal-int
+pkg syscall (freebsd-amd64), const SYS_MKDIRAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_MKFIFO ideal-int
+pkg syscall (freebsd-amd64), const SYS_MKFIFOAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_MKNOD ideal-int
+pkg syscall (freebsd-amd64), const SYS_MKNODAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_MLOCK ideal-int
+pkg syscall (freebsd-amd64), const SYS_MLOCKALL ideal-int
+pkg syscall (freebsd-amd64), const SYS_MMAP ideal-int
+pkg syscall (freebsd-amd64), const SYS_MODFIND ideal-int
+pkg syscall (freebsd-amd64), const SYS_MODFNEXT ideal-int
+pkg syscall (freebsd-amd64), const SYS_MODNEXT ideal-int
+pkg syscall (freebsd-amd64), const SYS_MODSTAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_MOUNT ideal-int
+pkg syscall (freebsd-amd64), const SYS_MPROTECT ideal-int
+pkg syscall (freebsd-amd64), const SYS_MSYNC ideal-int
+pkg syscall (freebsd-amd64), const SYS_MUNLOCK ideal-int
+pkg syscall (freebsd-amd64), const SYS_MUNLOCKALL ideal-int
+pkg syscall (freebsd-amd64), const SYS_MUNMAP ideal-int
+pkg syscall (freebsd-amd64), const SYS_NANOSLEEP ideal-int
+pkg syscall (freebsd-amd64), const SYS_NFSTAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_NLSTAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_NMOUNT ideal-int
+pkg syscall (freebsd-amd64), const SYS_NSTAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_NTP_ADJTIME ideal-int
+pkg syscall (freebsd-amd64), const SYS_NTP_GETTIME ideal-int
+pkg syscall (freebsd-amd64), const SYS_OBREAK ideal-int
+pkg syscall (freebsd-amd64), const SYS_OPEN ideal-int
+pkg syscall (freebsd-amd64), const SYS_OPENAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_OPENBSD_POLL ideal-int
+pkg syscall (freebsd-amd64), const SYS_OVADVISE ideal-int
+pkg syscall (freebsd-amd64), const SYS_PATHCONF ideal-int
+pkg syscall (freebsd-amd64), const SYS_PDFORK ideal-int
+pkg syscall (freebsd-amd64), const SYS_PDGETPID ideal-int
+pkg syscall (freebsd-amd64), const SYS_PDKILL ideal-int
+pkg syscall (freebsd-amd64), const SYS_PIPE ideal-int
+pkg syscall (freebsd-amd64), const SYS_POLL ideal-int
+pkg syscall (freebsd-amd64), const SYS_POSIX_FADVISE ideal-int
+pkg syscall (freebsd-amd64), const SYS_POSIX_FALLOCATE ideal-int
+pkg syscall (freebsd-amd64), const SYS_POSIX_OPENPT ideal-int
+pkg syscall (freebsd-amd64), const SYS_PREAD ideal-int
+pkg syscall (freebsd-amd64), const SYS_PREADV ideal-int
+pkg syscall (freebsd-amd64), const SYS_PROFIL ideal-int
+pkg syscall (freebsd-amd64), const SYS_PSELECT ideal-int
+pkg syscall (freebsd-amd64), const SYS_PTRACE ideal-int
+pkg syscall (freebsd-amd64), const SYS_PWRITE ideal-int
+pkg syscall (freebsd-amd64), const SYS_PWRITEV ideal-int
+pkg syscall (freebsd-amd64), const SYS_QUOTACTL ideal-int
+pkg syscall (freebsd-amd64), const SYS_RCTL_ADD_RULE ideal-int
+pkg syscall (freebsd-amd64), const SYS_RCTL_GET_LIMITS ideal-int
+pkg syscall (freebsd-amd64), const SYS_RCTL_GET_RACCT ideal-int
+pkg syscall (freebsd-amd64), const SYS_RCTL_GET_RULES ideal-int
+pkg syscall (freebsd-amd64), const SYS_RCTL_REMOVE_RULE ideal-int
+pkg syscall (freebsd-amd64), const SYS_READ ideal-int
+pkg syscall (freebsd-amd64), const SYS_READLINK ideal-int
+pkg syscall (freebsd-amd64), const SYS_READLINKAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_READV ideal-int
+pkg syscall (freebsd-amd64), const SYS_REBOOT ideal-int
+pkg syscall (freebsd-amd64), const SYS_RECVFROM ideal-int
+pkg syscall (freebsd-amd64), const SYS_RECVMSG ideal-int
+pkg syscall (freebsd-amd64), const SYS_RENAME ideal-int
+pkg syscall (freebsd-amd64), const SYS_RENAMEAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_REVOKE ideal-int
+pkg syscall (freebsd-amd64), const SYS_RFORK ideal-int
+pkg syscall (freebsd-amd64), const SYS_RMDIR ideal-int
+pkg syscall (freebsd-amd64), const SYS_RTPRIO ideal-int
+pkg syscall (freebsd-amd64), const SYS_RTPRIO_THREAD ideal-int
+pkg syscall (freebsd-amd64), const SYS_SBRK ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCHED_GETPARAM ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCHED_GETSCHEDULER ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCHED_RR_GET_INTERVAL ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCHED_SETPARAM ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCHED_SETSCHEDULER ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCHED_YIELD ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCTP_GENERIC_RECVMSG ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCTP_GENERIC_SENDMSG ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int
+pkg syscall (freebsd-amd64), const SYS_SCTP_PEELOFF ideal-int
+pkg syscall (freebsd-amd64), const SYS_SELECT ideal-int
+pkg syscall (freebsd-amd64), const SYS_SENDFILE ideal-int
+pkg syscall (freebsd-amd64), const SYS_SENDMSG ideal-int
+pkg syscall (freebsd-amd64), const SYS_SENDTO ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETAUDIT ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETAUDIT_ADDR ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETAUID ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETCONTEXT ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETEGID ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETEUID ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETFIB ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETGID ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETGROUPS ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETITIMER ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETLOGIN ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETLOGINCLASS ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETPGID ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETPRIORITY ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETREGID ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETRESGID ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETRESUID ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETREUID ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETRLIMIT ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETSID ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETSOCKOPT ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (freebsd-amd64), const SYS_SETUID ideal-int
+pkg syscall (freebsd-amd64), const SYS_SHM_OPEN ideal-int
+pkg syscall (freebsd-amd64), const SYS_SHM_UNLINK ideal-int
+pkg syscall (freebsd-amd64), const SYS_SHUTDOWN ideal-int
+pkg syscall (freebsd-amd64), const SYS_SIGACTION ideal-int
+pkg syscall (freebsd-amd64), const SYS_SIGALTSTACK ideal-int
+pkg syscall (freebsd-amd64), const SYS_SIGPENDING ideal-int
+pkg syscall (freebsd-amd64), const SYS_SIGPROCMASK ideal-int
+pkg syscall (freebsd-amd64), const SYS_SIGQUEUE ideal-int
+pkg syscall (freebsd-amd64), const SYS_SIGRETURN ideal-int
+pkg syscall (freebsd-amd64), const SYS_SIGSUSPEND ideal-int
+pkg syscall (freebsd-amd64), const SYS_SIGTIMEDWAIT ideal-int
+pkg syscall (freebsd-amd64), const SYS_SIGWAIT ideal-int
+pkg syscall (freebsd-amd64), const SYS_SIGWAITINFO ideal-int
+pkg syscall (freebsd-amd64), const SYS_SOCKET ideal-int
+pkg syscall (freebsd-amd64), const SYS_SOCKETPAIR ideal-int
+pkg syscall (freebsd-amd64), const SYS_SSTK ideal-int
+pkg syscall (freebsd-amd64), const SYS_STAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_STATFS ideal-int
+pkg syscall (freebsd-amd64), const SYS_SWAPCONTEXT ideal-int
+pkg syscall (freebsd-amd64), const SYS_SWAPOFF ideal-int
+pkg syscall (freebsd-amd64), const SYS_SWAPON ideal-int
+pkg syscall (freebsd-amd64), const SYS_SYMLINK ideal-int
+pkg syscall (freebsd-amd64), const SYS_SYMLINKAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_SYNC ideal-int
+pkg syscall (freebsd-amd64), const SYS_SYSARCH ideal-int
+pkg syscall (freebsd-amd64), const SYS_THR_CREATE ideal-int
+pkg syscall (freebsd-amd64), const SYS_THR_EXIT ideal-int
+pkg syscall (freebsd-amd64), const SYS_THR_KILL ideal-int
+pkg syscall (freebsd-amd64), const SYS_THR_KILL2 ideal-int
+pkg syscall (freebsd-amd64), const SYS_THR_NEW ideal-int
+pkg syscall (freebsd-amd64), const SYS_THR_SELF ideal-int
+pkg syscall (freebsd-amd64), const SYS_THR_SET_NAME ideal-int
+pkg syscall (freebsd-amd64), const SYS_THR_SUSPEND ideal-int
+pkg syscall (freebsd-amd64), const SYS_THR_WAKE ideal-int
+pkg syscall (freebsd-amd64), const SYS_TRUNCATE ideal-int
+pkg syscall (freebsd-amd64), const SYS_UMASK ideal-int
+pkg syscall (freebsd-amd64), const SYS_UNDELETE ideal-int
+pkg syscall (freebsd-amd64), const SYS_UNLINK ideal-int
+pkg syscall (freebsd-amd64), const SYS_UNLINKAT ideal-int
+pkg syscall (freebsd-amd64), const SYS_UNMOUNT ideal-int
+pkg syscall (freebsd-amd64), const SYS_UTIMES ideal-int
+pkg syscall (freebsd-amd64), const SYS_UTRACE ideal-int
+pkg syscall (freebsd-amd64), const SYS_UUIDGEN ideal-int
+pkg syscall (freebsd-amd64), const SYS_VFORK ideal-int
+pkg syscall (freebsd-amd64), const SYS_WAIT4 ideal-int
+pkg syscall (freebsd-amd64), const SYS_WRITE ideal-int
+pkg syscall (freebsd-amd64), const SYS_WRITEV ideal-int
+pkg syscall (freebsd-amd64), const SYS_YIELD ideal-int
+pkg syscall (freebsd-amd64), const SYS__UMTX_LOCK ideal-int
+pkg syscall (freebsd-amd64), const SYS__UMTX_OP ideal-int
+pkg syscall (freebsd-amd64), const SYS__UMTX_UNLOCK ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_ACLCHECK_FD ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_ACLCHECK_FILE ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_ACLCHECK_LINK ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_DELETE_FD ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_DELETE_FILE ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_DELETE_LINK ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_GET_FD ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_GET_FILE ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_GET_LINK ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_SET_FD ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_SET_FILE ideal-int
+pkg syscall (freebsd-amd64), const SYS___ACL_SET_LINK ideal-int
+pkg syscall (freebsd-amd64), const SYS___GETCWD ideal-int
+pkg syscall (freebsd-amd64), const SYS___MAC_EXECVE ideal-int
+pkg syscall (freebsd-amd64), const SYS___MAC_GET_FD ideal-int
+pkg syscall (freebsd-amd64), const SYS___MAC_GET_FILE ideal-int
+pkg syscall (freebsd-amd64), const SYS___MAC_GET_LINK ideal-int
+pkg syscall (freebsd-amd64), const SYS___MAC_GET_PID ideal-int
+pkg syscall (freebsd-amd64), const SYS___MAC_GET_PROC ideal-int
+pkg syscall (freebsd-amd64), const SYS___MAC_SET_FD ideal-int
+pkg syscall (freebsd-amd64), const SYS___MAC_SET_FILE ideal-int
+pkg syscall (freebsd-amd64), const SYS___MAC_SET_LINK ideal-int
+pkg syscall (freebsd-amd64), const SYS___MAC_SET_PROC ideal-int
+pkg syscall (freebsd-amd64), const SYS___SETUGID ideal-int
+pkg syscall (freebsd-amd64), const SYS___SYSCTL ideal-int
+pkg syscall (freebsd-amd64), const SizeofBpfHdr ideal-int
+pkg syscall (freebsd-amd64), const SizeofBpfInsn ideal-int
+pkg syscall (freebsd-amd64), const SizeofBpfProgram ideal-int
+pkg syscall (freebsd-amd64), const SizeofBpfStat ideal-int
+pkg syscall (freebsd-amd64), const SizeofBpfVersion ideal-int
+pkg syscall (freebsd-amd64), const SizeofBpfZbuf ideal-int
+pkg syscall (freebsd-amd64), const SizeofBpfZbufHeader ideal-int
+pkg syscall (freebsd-amd64), const SizeofCmsghdr ideal-int
+pkg syscall (freebsd-amd64), const SizeofIPMreq ideal-int
+pkg syscall (freebsd-amd64), const SizeofIPMreqn ideal-int
+pkg syscall (freebsd-amd64), const SizeofIPv6Mreq ideal-int
+pkg syscall (freebsd-amd64), const SizeofIfData ideal-int
+pkg syscall (freebsd-amd64), const SizeofIfMsghdr ideal-int
+pkg syscall (freebsd-amd64), const SizeofIfaMsghdr ideal-int
+pkg syscall (freebsd-amd64), const SizeofIfmaMsghdr ideal-int
+pkg syscall (freebsd-amd64), const SizeofInet6Pktinfo ideal-int
+pkg syscall (freebsd-amd64), const SizeofLinger ideal-int
+pkg syscall (freebsd-amd64), const SizeofMsghdr ideal-int
+pkg syscall (freebsd-amd64), const SizeofRtMetrics ideal-int
+pkg syscall (freebsd-amd64), const SizeofRtMsghdr ideal-int
+pkg syscall (freebsd-amd64), const SizeofSockaddrAny ideal-int
+pkg syscall (freebsd-amd64), const SizeofSockaddrDatalink ideal-int
+pkg syscall (freebsd-amd64), const SizeofSockaddrInet4 ideal-int
+pkg syscall (freebsd-amd64), const SizeofSockaddrInet6 ideal-int
+pkg syscall (freebsd-amd64), const SizeofSockaddrUnix ideal-int
+pkg syscall (freebsd-amd64), const TCP_CA_NAME_MAX ideal-int
+pkg syscall (freebsd-amd64), const TCP_CONGESTION ideal-int
+pkg syscall (freebsd-amd64), const TCP_INFO ideal-int
+pkg syscall (freebsd-amd64), const TCP_MAXBURST ideal-int
+pkg syscall (freebsd-amd64), const TCP_MAXHLEN ideal-int
+pkg syscall (freebsd-amd64), const TCP_MAXOLEN ideal-int
+pkg syscall (freebsd-amd64), const TCP_MAXSEG ideal-int
+pkg syscall (freebsd-amd64), const TCP_MAXWIN ideal-int
+pkg syscall (freebsd-amd64), const TCP_MAX_SACK ideal-int
+pkg syscall (freebsd-amd64), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (freebsd-amd64), const TCP_MD5SIG ideal-int
+pkg syscall (freebsd-amd64), const TCP_MINMSS ideal-int
+pkg syscall (freebsd-amd64), const TCP_MSS ideal-int
+pkg syscall (freebsd-amd64), const TCP_NOOPT ideal-int
+pkg syscall (freebsd-amd64), const TCP_NOPUSH ideal-int
+pkg syscall (freebsd-amd64), const TIOCCBRK ideal-int
+pkg syscall (freebsd-amd64), const TIOCCDTR ideal-int
+pkg syscall (freebsd-amd64), const TIOCCONS ideal-int
+pkg syscall (freebsd-amd64), const TIOCDRAIN ideal-int
+pkg syscall (freebsd-amd64), const TIOCEXCL ideal-int
+pkg syscall (freebsd-amd64), const TIOCEXT ideal-int
+pkg syscall (freebsd-amd64), const TIOCFLUSH ideal-int
+pkg syscall (freebsd-amd64), const TIOCGDRAINWAIT ideal-int
+pkg syscall (freebsd-amd64), const TIOCGETA ideal-int
+pkg syscall (freebsd-amd64), const TIOCGETD ideal-int
+pkg syscall (freebsd-amd64), const TIOCGPGRP ideal-int
+pkg syscall (freebsd-amd64), const TIOCGPTN ideal-int
+pkg syscall (freebsd-amd64), const TIOCGSID ideal-int
+pkg syscall (freebsd-amd64), const TIOCGWINSZ ideal-int
+pkg syscall (freebsd-amd64), const TIOCMBIC ideal-int
+pkg syscall (freebsd-amd64), const TIOCMBIS ideal-int
+pkg syscall (freebsd-amd64), const TIOCMGDTRWAIT ideal-int
+pkg syscall (freebsd-amd64), const TIOCMGET ideal-int
+pkg syscall (freebsd-amd64), const TIOCMSDTRWAIT ideal-int
+pkg syscall (freebsd-amd64), const TIOCMSET ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_CAR ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_CD ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_CTS ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_DCD ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_DSR ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_DTR ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_LE ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_RI ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_RNG ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_RTS ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_SR ideal-int
+pkg syscall (freebsd-amd64), const TIOCM_ST ideal-int
+pkg syscall (freebsd-amd64), const TIOCNOTTY ideal-int
+pkg syscall (freebsd-amd64), const TIOCNXCL ideal-int
+pkg syscall (freebsd-amd64), const TIOCOUTQ ideal-int
+pkg syscall (freebsd-amd64), const TIOCPKT ideal-int
+pkg syscall (freebsd-amd64), const TIOCPKT_DATA ideal-int
+pkg syscall (freebsd-amd64), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (freebsd-amd64), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (freebsd-amd64), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (freebsd-amd64), const TIOCPKT_IOCTL ideal-int
+pkg syscall (freebsd-amd64), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (freebsd-amd64), const TIOCPKT_START ideal-int
+pkg syscall (freebsd-amd64), const TIOCPKT_STOP ideal-int
+pkg syscall (freebsd-amd64), const TIOCPTMASTER ideal-int
+pkg syscall (freebsd-amd64), const TIOCSBRK ideal-int
+pkg syscall (freebsd-amd64), const TIOCSCTTY ideal-int
+pkg syscall (freebsd-amd64), const TIOCSDRAINWAIT ideal-int
+pkg syscall (freebsd-amd64), const TIOCSDTR ideal-int
+pkg syscall (freebsd-amd64), const TIOCSETA ideal-int
+pkg syscall (freebsd-amd64), const TIOCSETAF ideal-int
+pkg syscall (freebsd-amd64), const TIOCSETAW ideal-int
+pkg syscall (freebsd-amd64), const TIOCSETD ideal-int
+pkg syscall (freebsd-amd64), const TIOCSIG ideal-int
+pkg syscall (freebsd-amd64), const TIOCSPGRP ideal-int
+pkg syscall (freebsd-amd64), const TIOCSTART ideal-int
+pkg syscall (freebsd-amd64), const TIOCSTAT ideal-int
+pkg syscall (freebsd-amd64), const TIOCSTI ideal-int
+pkg syscall (freebsd-amd64), const TIOCSTOP ideal-int
+pkg syscall (freebsd-amd64), const TIOCSWINSZ ideal-int
+pkg syscall (freebsd-amd64), const TIOCTIMESTAMP ideal-int
+pkg syscall (freebsd-amd64), const TIOCUCNTL ideal-int
+pkg syscall (freebsd-amd64), const WCONTINUED ideal-int
+pkg syscall (freebsd-amd64), const WCOREFLAG ideal-int
+pkg syscall (freebsd-amd64), const WLINUXCLONE ideal-int
+pkg syscall (freebsd-amd64), const WNOHANG ideal-int
+pkg syscall (freebsd-amd64), const WNOWAIT ideal-int
+pkg syscall (freebsd-amd64), const WSTOPPED ideal-int
+pkg syscall (freebsd-amd64), const WUNTRACED ideal-int
+pkg syscall (freebsd-amd64), func Accept(int) (int, Sockaddr, error)
+pkg syscall (freebsd-amd64), func Access(string, uint32) error
+pkg syscall (freebsd-amd64), func Adjtime(*Timeval, *Timeval) error
+pkg syscall (freebsd-amd64), func Bind(int, Sockaddr) error
+pkg syscall (freebsd-amd64), func BpfBuflen(int) (int, error)
+pkg syscall (freebsd-amd64), func BpfDatalink(int) (int, error)
+pkg syscall (freebsd-amd64), func BpfHeadercmpl(int) (int, error)
+pkg syscall (freebsd-amd64), func BpfInterface(int, string) (string, error)
+pkg syscall (freebsd-amd64), func BpfJump(int, int, int, int) *BpfInsn
+pkg syscall (freebsd-amd64), func BpfStats(int) (*BpfStat, error)
+pkg syscall (freebsd-amd64), func BpfStmt(int, int) *BpfInsn
+pkg syscall (freebsd-amd64), func BpfTimeout(int) (*Timeval, error)
+pkg syscall (freebsd-amd64), func CheckBpfVersion(int) error
+pkg syscall (freebsd-amd64), func Chflags(string, int) error
+pkg syscall (freebsd-amd64), func Chroot(string) error
+pkg syscall (freebsd-amd64), func Close(int) error
+pkg syscall (freebsd-amd64), func CloseOnExec(int)
+pkg syscall (freebsd-amd64), func CmsgLen(int) int
+pkg syscall (freebsd-amd64), func CmsgSpace(int) int
+pkg syscall (freebsd-amd64), func Connect(int, Sockaddr) error
+pkg syscall (freebsd-amd64), func Dup(int) (int, error)
+pkg syscall (freebsd-amd64), func Dup2(int, int) error
+pkg syscall (freebsd-amd64), func Fchdir(int) error
+pkg syscall (freebsd-amd64), func Fchflags(string, int) error
+pkg syscall (freebsd-amd64), func Fchmod(int, uint32) error
+pkg syscall (freebsd-amd64), func Fchown(int, int, int) error
+pkg syscall (freebsd-amd64), func Flock(int, int) error
+pkg syscall (freebsd-amd64), func FlushBpf(int) error
+pkg syscall (freebsd-amd64), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (freebsd-amd64), func Fpathconf(int, int) (int, error)
+pkg syscall (freebsd-amd64), func Fstat(int, *Stat_t) error
+pkg syscall (freebsd-amd64), func Fstatfs(int, *Statfs_t) error
+pkg syscall (freebsd-amd64), func Fsync(int) error
+pkg syscall (freebsd-amd64), func Ftruncate(int, int64) error
+pkg syscall (freebsd-amd64), func Futimes(int, []Timeval) error
+pkg syscall (freebsd-amd64), func Getdirentries(int, []uint8, *uintptr) (int, error)
+pkg syscall (freebsd-amd64), func Getdtablesize() int
+pkg syscall (freebsd-amd64), func Getfsstat([]Statfs_t, int) (int, error)
+pkg syscall (freebsd-amd64), func Getpeername(int) (Sockaddr, error)
+pkg syscall (freebsd-amd64), func Getpgid(int) (int, error)
+pkg syscall (freebsd-amd64), func Getpgrp() int
+pkg syscall (freebsd-amd64), func Getpriority(int, int) (int, error)
+pkg syscall (freebsd-amd64), func Getrlimit(int, *Rlimit) error
+pkg syscall (freebsd-amd64), func Getrusage(int, *Rusage) error
+pkg syscall (freebsd-amd64), func Getsid(int) (int, error)
+pkg syscall (freebsd-amd64), func Getsockname(int) (Sockaddr, error)
+pkg syscall (freebsd-amd64), func GetsockoptByte(int, int, int) (uint8, error)
+pkg syscall (freebsd-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (freebsd-amd64), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (freebsd-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (freebsd-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (freebsd-amd64), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (freebsd-amd64), func Issetugid() bool
+pkg syscall (freebsd-amd64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
+pkg syscall (freebsd-amd64), func Kill(int, Signal) error
+pkg syscall (freebsd-amd64), func Kqueue() (int, error)
+pkg syscall (freebsd-amd64), func Listen(int, int) error
+pkg syscall (freebsd-amd64), func Lstat(string, *Stat_t) error
+pkg syscall (freebsd-amd64), func Mkfifo(string, uint32) error
+pkg syscall (freebsd-amd64), func Mknod(string, uint32, int) error
+pkg syscall (freebsd-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (freebsd-amd64), func Munmap([]uint8) error
+pkg syscall (freebsd-amd64), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (freebsd-amd64), func NsecToTimespec(int64) Timespec
+pkg syscall (freebsd-amd64), func Open(string, int, uint32) (int, error)
+pkg syscall (freebsd-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (freebsd-amd64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
+pkg syscall (freebsd-amd64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (freebsd-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (freebsd-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (freebsd-amd64), func Pathconf(string, int) (int, error)
+pkg syscall (freebsd-amd64), func Pipe([]int) error
+pkg syscall (freebsd-amd64), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-amd64), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (freebsd-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-amd64), func Read(int, []uint8) (int, error)
+pkg syscall (freebsd-amd64), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (freebsd-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (freebsd-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (freebsd-amd64), func Revoke(string) error
+pkg syscall (freebsd-amd64), func RouteRIB(int, int) ([]uint8, error)
+pkg syscall (freebsd-amd64), func Seek(int, int64, int) (int64, error)
+pkg syscall (freebsd-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
+pkg syscall (freebsd-amd64), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (freebsd-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (freebsd-amd64), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (freebsd-amd64), func SetBpf(int, []BpfInsn) error
+pkg syscall (freebsd-amd64), func SetBpfBuflen(int, int) (int, error)
+pkg syscall (freebsd-amd64), func SetBpfDatalink(int, int) (int, error)
+pkg syscall (freebsd-amd64), func SetBpfHeadercmpl(int, int) error
+pkg syscall (freebsd-amd64), func SetBpfImmediate(int, int) error
+pkg syscall (freebsd-amd64), func SetBpfInterface(int, string) error
+pkg syscall (freebsd-amd64), func SetBpfPromisc(int, int) error
+pkg syscall (freebsd-amd64), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (freebsd-amd64), func SetKevent(*Kevent_t, int, int, int)
+pkg syscall (freebsd-amd64), func SetNonblock(int, bool) error
+pkg syscall (freebsd-amd64), func Setegid(int) error
+pkg syscall (freebsd-amd64), func Seteuid(int) error
+pkg syscall (freebsd-amd64), func Setgid(int) error
+pkg syscall (freebsd-amd64), func Setgroups([]int) error
+pkg syscall (freebsd-amd64), func Setlogin(string) error
+pkg syscall (freebsd-amd64), func Setpgid(int, int) error
+pkg syscall (freebsd-amd64), func Setpriority(int, int, int) error
+pkg syscall (freebsd-amd64), func Setregid(int, int) error
+pkg syscall (freebsd-amd64), func Setreuid(int, int) error
+pkg syscall (freebsd-amd64), func Setrlimit(int, *Rlimit) error
+pkg syscall (freebsd-amd64), func Setsid() (int, error)
+pkg syscall (freebsd-amd64), func SetsockoptByte(int, int, int, uint8) error
+pkg syscall (freebsd-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (freebsd-amd64), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (freebsd-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (freebsd-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (freebsd-amd64), func SetsockoptInt(int, int, int, int) error
+pkg syscall (freebsd-amd64), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (freebsd-amd64), func SetsockoptString(int, int, int, string) error
+pkg syscall (freebsd-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (freebsd-amd64), func Settimeofday(*Timeval) error
+pkg syscall (freebsd-amd64), func Setuid(int) error
+pkg syscall (freebsd-amd64), func Shutdown(int, int) error
+pkg syscall (freebsd-amd64), func Socket(int, int, int) (int, error)
+pkg syscall (freebsd-amd64), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (freebsd-amd64), func Stat(string, *Stat_t) error
+pkg syscall (freebsd-amd64), func Statfs(string, *Statfs_t) error
+pkg syscall (freebsd-amd64), func StringSlicePtr([]string) []*uint8
+pkg syscall (freebsd-amd64), func Sync() error
+pkg syscall (freebsd-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (freebsd-amd64), func Sysctl(string) (string, error)
+pkg syscall (freebsd-amd64), func SysctlUint32(string) (uint32, error)
+pkg syscall (freebsd-amd64), func TimespecToNsec(Timespec) int64
+pkg syscall (freebsd-amd64), func TimevalToNsec(Timeval) int64
+pkg syscall (freebsd-amd64), func Truncate(string, int64) error
+pkg syscall (freebsd-amd64), func Umask(int) int
+pkg syscall (freebsd-amd64), func Undelete(string) error
+pkg syscall (freebsd-amd64), func UnixRights(...int) []uint8
+pkg syscall (freebsd-amd64), func Unmount(string, int) error
+pkg syscall (freebsd-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (freebsd-amd64), func Write(int, []uint8) (int, error)
+pkg syscall (freebsd-amd64), method (*Cmsghdr) SetLen(int)
+pkg syscall (freebsd-amd64), method (*Iovec) SetLen(int)
+pkg syscall (freebsd-amd64), method (*Msghdr) SetControllen(int)
+pkg syscall (freebsd-amd64), type BpfHdr struct
+pkg syscall (freebsd-amd64), type BpfHdr struct, Caplen uint32
+pkg syscall (freebsd-amd64), type BpfHdr struct, Datalen uint32
+pkg syscall (freebsd-amd64), type BpfHdr struct, Hdrlen uint16
+pkg syscall (freebsd-amd64), type BpfHdr struct, Pad_cgo_0 [6]uint8
+pkg syscall (freebsd-amd64), type BpfHdr struct, Tstamp Timeval
+pkg syscall (freebsd-amd64), type BpfInsn struct
+pkg syscall (freebsd-amd64), type BpfInsn struct, Code uint16
+pkg syscall (freebsd-amd64), type BpfInsn struct, Jf uint8
+pkg syscall (freebsd-amd64), type BpfInsn struct, Jt uint8
+pkg syscall (freebsd-amd64), type BpfInsn struct, K uint32
+pkg syscall (freebsd-amd64), type BpfProgram struct
+pkg syscall (freebsd-amd64), type BpfProgram struct, Insns *BpfInsn
+pkg syscall (freebsd-amd64), type BpfProgram struct, Len uint32
+pkg syscall (freebsd-amd64), type BpfProgram struct, Pad_cgo_0 [4]uint8
+pkg syscall (freebsd-amd64), type BpfStat struct
+pkg syscall (freebsd-amd64), type BpfStat struct, Drop uint32
+pkg syscall (freebsd-amd64), type BpfStat struct, Recv uint32
+pkg syscall (freebsd-amd64), type BpfVersion struct
+pkg syscall (freebsd-amd64), type BpfVersion struct, Major uint16
+pkg syscall (freebsd-amd64), type BpfVersion struct, Minor uint16
+pkg syscall (freebsd-amd64), type BpfZbuf struct
+pkg syscall (freebsd-amd64), type BpfZbuf struct, Bufa *uint8
+pkg syscall (freebsd-amd64), type BpfZbuf struct, Bufb *uint8
+pkg syscall (freebsd-amd64), type BpfZbuf struct, Buflen uint64
+pkg syscall (freebsd-amd64), type BpfZbufHeader struct
+pkg syscall (freebsd-amd64), type BpfZbufHeader struct, Kernel_gen uint32
+pkg syscall (freebsd-amd64), type BpfZbufHeader struct, Kernel_len uint32
+pkg syscall (freebsd-amd64), type BpfZbufHeader struct, User_gen uint32
+pkg syscall (freebsd-amd64), type BpfZbufHeader struct, X_bzh_pad [5]uint32
+pkg syscall (freebsd-amd64), type Cmsghdr struct
+pkg syscall (freebsd-amd64), type Cmsghdr struct, Len uint32
+pkg syscall (freebsd-amd64), type Cmsghdr struct, Level int32
+pkg syscall (freebsd-amd64), type Cmsghdr struct, Type int32
+pkg syscall (freebsd-amd64), type Credential struct
+pkg syscall (freebsd-amd64), type Credential struct, Gid uint32
+pkg syscall (freebsd-amd64), type Credential struct, Groups []uint32
+pkg syscall (freebsd-amd64), type Credential struct, Uid uint32
+pkg syscall (freebsd-amd64), type Dirent struct
+pkg syscall (freebsd-amd64), type Dirent struct, Fileno uint32
+pkg syscall (freebsd-amd64), type Dirent struct, Name [256]int8
+pkg syscall (freebsd-amd64), type Dirent struct, Namlen uint8
+pkg syscall (freebsd-amd64), type Dirent struct, Reclen uint16
+pkg syscall (freebsd-amd64), type Dirent struct, Type uint8
+pkg syscall (freebsd-amd64), type FdSet struct
+pkg syscall (freebsd-amd64), type FdSet struct, X__fds_bits [16]uint64
+pkg syscall (freebsd-amd64), type Flock_t struct
+pkg syscall (freebsd-amd64), type Flock_t struct, Len int64
+pkg syscall (freebsd-amd64), type Flock_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (freebsd-amd64), type Flock_t struct, Pid int32
+pkg syscall (freebsd-amd64), type Flock_t struct, Start int64
+pkg syscall (freebsd-amd64), type Flock_t struct, Sysid int32
+pkg syscall (freebsd-amd64), type Flock_t struct, Type int16
+pkg syscall (freebsd-amd64), type Flock_t struct, Whence int16
+pkg syscall (freebsd-amd64), type Fsid struct
+pkg syscall (freebsd-amd64), type Fsid struct, Val [2]int32
+pkg syscall (freebsd-amd64), type IPMreqn struct
+pkg syscall (freebsd-amd64), type IPMreqn struct, Address [4]uint8
+pkg syscall (freebsd-amd64), type IPMreqn struct, Ifindex int32
+pkg syscall (freebsd-amd64), type IPMreqn struct, Multiaddr [4]uint8
+pkg syscall (freebsd-amd64), type IfData struct
+pkg syscall (freebsd-amd64), type IfData struct, Addrlen uint8
+pkg syscall (freebsd-amd64), type IfData struct, Baudrate uint64
+pkg syscall (freebsd-amd64), type IfData struct, Collisions uint64
+pkg syscall (freebsd-amd64), type IfData struct, Datalen uint8
+pkg syscall (freebsd-amd64), type IfData struct, Epoch int64
+pkg syscall (freebsd-amd64), type IfData struct, Hdrlen uint8
+pkg syscall (freebsd-amd64), type IfData struct, Hwassist uint64
+pkg syscall (freebsd-amd64), type IfData struct, Ibytes uint64
+pkg syscall (freebsd-amd64), type IfData struct, Ierrors uint64
+pkg syscall (freebsd-amd64), type IfData struct, Imcasts uint64
+pkg syscall (freebsd-amd64), type IfData struct, Ipackets uint64
+pkg syscall (freebsd-amd64), type IfData struct, Iqdrops uint64
+pkg syscall (freebsd-amd64), type IfData struct, Lastchange Timeval
+pkg syscall (freebsd-amd64), type IfData struct, Link_state uint8
+pkg syscall (freebsd-amd64), type IfData struct, Metric uint64
+pkg syscall (freebsd-amd64), type IfData struct, Mtu uint64
+pkg syscall (freebsd-amd64), type IfData struct, Noproto uint64
+pkg syscall (freebsd-amd64), type IfData struct, Obytes uint64
+pkg syscall (freebsd-amd64), type IfData struct, Oerrors uint64
+pkg syscall (freebsd-amd64), type IfData struct, Omcasts uint64
+pkg syscall (freebsd-amd64), type IfData struct, Opackets uint64
+pkg syscall (freebsd-amd64), type IfData struct, Physical uint8
+pkg syscall (freebsd-amd64), type IfData struct, Spare_char1 uint8
+pkg syscall (freebsd-amd64), type IfData struct, Spare_char2 uint8
+pkg syscall (freebsd-amd64), type IfData struct, Type uint8
+pkg syscall (freebsd-amd64), type IfMsghdr struct
+pkg syscall (freebsd-amd64), type IfMsghdr struct, Addrs int32
+pkg syscall (freebsd-amd64), type IfMsghdr struct, Data IfData
+pkg syscall (freebsd-amd64), type IfMsghdr struct, Flags int32
+pkg syscall (freebsd-amd64), type IfMsghdr struct, Index uint16
+pkg syscall (freebsd-amd64), type IfMsghdr struct, Msglen uint16
+pkg syscall (freebsd-amd64), type IfMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-amd64), type IfMsghdr struct, Type uint8
+pkg syscall (freebsd-amd64), type IfMsghdr struct, Version uint8
+pkg syscall (freebsd-amd64), type IfaMsghdr struct
+pkg syscall (freebsd-amd64), type IfaMsghdr struct, Addrs int32
+pkg syscall (freebsd-amd64), type IfaMsghdr struct, Flags int32
+pkg syscall (freebsd-amd64), type IfaMsghdr struct, Index uint16
+pkg syscall (freebsd-amd64), type IfaMsghdr struct, Metric int32
+pkg syscall (freebsd-amd64), type IfaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-amd64), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-amd64), type IfaMsghdr struct, Type uint8
+pkg syscall (freebsd-amd64), type IfaMsghdr struct, Version uint8
+pkg syscall (freebsd-amd64), type IfmaMsghdr struct
+pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Addrs int32
+pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Flags int32
+pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Index uint16
+pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Msglen uint16
+pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Type uint8
+pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Version uint8
+pkg syscall (freebsd-amd64), type Inet6Pktinfo struct
+pkg syscall (freebsd-amd64), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (freebsd-amd64), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (freebsd-amd64), type InterfaceAddrMessage struct
+pkg syscall (freebsd-amd64), type InterfaceAddrMessage struct, Data []uint8
+pkg syscall (freebsd-amd64), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (freebsd-amd64), type InterfaceMessage struct
+pkg syscall (freebsd-amd64), type InterfaceMessage struct, Data []uint8
+pkg syscall (freebsd-amd64), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (freebsd-amd64), type InterfaceMulticastAddrMessage struct
+pkg syscall (freebsd-amd64), type InterfaceMulticastAddrMessage struct, Data []uint8
+pkg syscall (freebsd-amd64), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr
+pkg syscall (freebsd-amd64), type Iovec struct
+pkg syscall (freebsd-amd64), type Iovec struct, Base *uint8
+pkg syscall (freebsd-amd64), type Iovec struct, Len uint64
+pkg syscall (freebsd-amd64), type Kevent_t struct
+pkg syscall (freebsd-amd64), type Kevent_t struct, Data int64
+pkg syscall (freebsd-amd64), type Kevent_t struct, Fflags uint32
+pkg syscall (freebsd-amd64), type Kevent_t struct, Filter int16
+pkg syscall (freebsd-amd64), type Kevent_t struct, Flags uint16
+pkg syscall (freebsd-amd64), type Kevent_t struct, Ident uint64
+pkg syscall (freebsd-amd64), type Kevent_t struct, Udata *uint8
+pkg syscall (freebsd-amd64), type Msghdr struct
+pkg syscall (freebsd-amd64), type Msghdr struct, Control *uint8
+pkg syscall (freebsd-amd64), type Msghdr struct, Controllen uint32
+pkg syscall (freebsd-amd64), type Msghdr struct, Flags int32
+pkg syscall (freebsd-amd64), type Msghdr struct, Iov *Iovec
+pkg syscall (freebsd-amd64), type Msghdr struct, Iovlen int32
+pkg syscall (freebsd-amd64), type Msghdr struct, Name *uint8
+pkg syscall (freebsd-amd64), type Msghdr struct, Namelen uint32
+pkg syscall (freebsd-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8
+pkg syscall (freebsd-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8
+pkg syscall (freebsd-amd64), type RawSockaddr struct, Data [14]int8
+pkg syscall (freebsd-amd64), type RawSockaddr struct, Family uint8
+pkg syscall (freebsd-amd64), type RawSockaddr struct, Len uint8
+pkg syscall (freebsd-amd64), type RawSockaddrAny struct, Pad [92]int8
+pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct
+pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-amd64), type RawSockaddrInet4 struct, Family uint8
+pkg syscall (freebsd-amd64), type RawSockaddrInet4 struct, Len uint8
+pkg syscall (freebsd-amd64), type RawSockaddrInet4 struct, Zero [8]int8
+pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct
+pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Addr [16]uint8
+pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Family uint8
+pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Flowinfo uint32
+pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Len uint8
+pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Port uint16
+pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Scope_id uint32
+pkg syscall (freebsd-amd64), type RawSockaddrUnix struct
+pkg syscall (freebsd-amd64), type RawSockaddrUnix struct, Family uint8
+pkg syscall (freebsd-amd64), type RawSockaddrUnix struct, Len uint8
+pkg syscall (freebsd-amd64), type RawSockaddrUnix struct, Path [104]int8
+pkg syscall (freebsd-amd64), type Rlimit struct
+pkg syscall (freebsd-amd64), type Rlimit struct, Cur int64
+pkg syscall (freebsd-amd64), type Rlimit struct, Max int64
+pkg syscall (freebsd-amd64), type RouteMessage struct
+pkg syscall (freebsd-amd64), type RouteMessage struct, Data []uint8
+pkg syscall (freebsd-amd64), type RouteMessage struct, Header RtMsghdr
+pkg syscall (freebsd-amd64), type RoutingMessage interface, unexported methods
+pkg syscall (freebsd-amd64), type RtMetrics struct
+pkg syscall (freebsd-amd64), type RtMetrics struct, Expire uint64
+pkg syscall (freebsd-amd64), type RtMetrics struct, Filler [3]uint64
+pkg syscall (freebsd-amd64), type RtMetrics struct, Hopcount uint64
+pkg syscall (freebsd-amd64), type RtMetrics struct, Locks uint64
+pkg syscall (freebsd-amd64), type RtMetrics struct, Mtu uint64
+pkg syscall (freebsd-amd64), type RtMetrics struct, Pksent uint64
+pkg syscall (freebsd-amd64), type RtMetrics struct, Recvpipe uint64
+pkg syscall (freebsd-amd64), type RtMetrics struct, Rtt uint64
+pkg syscall (freebsd-amd64), type RtMetrics struct, Rttvar uint64
+pkg syscall (freebsd-amd64), type RtMetrics struct, Sendpipe uint64
+pkg syscall (freebsd-amd64), type RtMetrics struct, Ssthresh uint64
+pkg syscall (freebsd-amd64), type RtMetrics struct, Weight uint64
+pkg syscall (freebsd-amd64), type RtMsghdr struct
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Addrs int32
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Errno int32
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Flags int32
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Fmask int32
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Index uint16
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Inits uint64
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Msglen uint16
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Pad_cgo_0 [2]uint8
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Pid int32
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Rmx RtMetrics
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Seq int32
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Type uint8
+pkg syscall (freebsd-amd64), type RtMsghdr struct, Version uint8
+pkg syscall (freebsd-amd64), type Rusage struct, Idrss int64
+pkg syscall (freebsd-amd64), type Rusage struct, Inblock int64
+pkg syscall (freebsd-amd64), type Rusage struct, Isrss int64
+pkg syscall (freebsd-amd64), type Rusage struct, Ixrss int64
+pkg syscall (freebsd-amd64), type Rusage struct, Majflt int64
+pkg syscall (freebsd-amd64), type Rusage struct, Maxrss int64
+pkg syscall (freebsd-amd64), type Rusage struct, Minflt int64
+pkg syscall (freebsd-amd64), type Rusage struct, Msgrcv int64
+pkg syscall (freebsd-amd64), type Rusage struct, Msgsnd int64
+pkg syscall (freebsd-amd64), type Rusage struct, Nivcsw int64
+pkg syscall (freebsd-amd64), type Rusage struct, Nsignals int64
+pkg syscall (freebsd-amd64), type Rusage struct, Nswap int64
+pkg syscall (freebsd-amd64), type Rusage struct, Nvcsw int64
+pkg syscall (freebsd-amd64), type Rusage struct, Oublock int64
+pkg syscall (freebsd-amd64), type Rusage struct, Stime Timeval
+pkg syscall (freebsd-amd64), type Rusage struct, Utime Timeval
+pkg syscall (freebsd-amd64), type SockaddrDatalink struct
+pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Alen uint8
+pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Data [46]int8
+pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Family uint8
+pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Index uint16
+pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Len uint8
+pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Nlen uint8
+pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Slen uint8
+pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Type uint8
+pkg syscall (freebsd-amd64), type SocketControlMessage struct
+pkg syscall (freebsd-amd64), type SocketControlMessage struct, Data []uint8
+pkg syscall (freebsd-amd64), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (freebsd-amd64), type Stat_t struct
+pkg syscall (freebsd-amd64), type Stat_t struct, Atimespec Timespec
+pkg syscall (freebsd-amd64), type Stat_t struct, Birthtimespec Timespec
+pkg syscall (freebsd-amd64), type Stat_t struct, Blksize uint32
+pkg syscall (freebsd-amd64), type Stat_t struct, Blocks int64
+pkg syscall (freebsd-amd64), type Stat_t struct, Ctimespec Timespec
+pkg syscall (freebsd-amd64), type Stat_t struct, Dev uint32
+pkg syscall (freebsd-amd64), type Stat_t struct, Flags uint32
+pkg syscall (freebsd-amd64), type Stat_t struct, Gen uint32
+pkg syscall (freebsd-amd64), type Stat_t struct, Gid uint32
+pkg syscall (freebsd-amd64), type Stat_t struct, Ino uint32
+pkg syscall (freebsd-amd64), type Stat_t struct, Lspare int32
+pkg syscall (freebsd-amd64), type Stat_t struct, Mode uint16
+pkg syscall (freebsd-amd64), type Stat_t struct, Mtimespec Timespec
+pkg syscall (freebsd-amd64), type Stat_t struct, Nlink uint16
+pkg syscall (freebsd-amd64), type Stat_t struct, Rdev uint32
+pkg syscall (freebsd-amd64), type Stat_t struct, Size int64
+pkg syscall (freebsd-amd64), type Stat_t struct, Uid uint32
+pkg syscall (freebsd-amd64), type Statfs_t struct
+pkg syscall (freebsd-amd64), type Statfs_t struct, Asyncreads uint64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Asyncwrites uint64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Bavail int64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Bfree uint64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Blocks uint64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Bsize uint64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Charspare [80]int8
+pkg syscall (freebsd-amd64), type Statfs_t struct, Ffree int64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Files uint64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Flags uint64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Fsid Fsid
+pkg syscall (freebsd-amd64), type Statfs_t struct, Fstypename [16]int8
+pkg syscall (freebsd-amd64), type Statfs_t struct, Iosize uint64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Mntfromname [88]int8
+pkg syscall (freebsd-amd64), type Statfs_t struct, Mntonname [88]int8
+pkg syscall (freebsd-amd64), type Statfs_t struct, Namemax uint32
+pkg syscall (freebsd-amd64), type Statfs_t struct, Owner uint32
+pkg syscall (freebsd-amd64), type Statfs_t struct, Spare [10]uint64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Syncreads uint64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Syncwrites uint64
+pkg syscall (freebsd-amd64), type Statfs_t struct, Type uint32
+pkg syscall (freebsd-amd64), type Statfs_t struct, Version uint32
+pkg syscall (freebsd-amd64), type SysProcAttr struct, Chroot string
+pkg syscall (freebsd-amd64), type SysProcAttr struct, Credential *Credential
+pkg syscall (freebsd-amd64), type SysProcAttr struct, Noctty bool
+pkg syscall (freebsd-amd64), type SysProcAttr struct, Ptrace bool
+pkg syscall (freebsd-amd64), type SysProcAttr struct, Setctty bool
+pkg syscall (freebsd-amd64), type SysProcAttr struct, Setpgid bool
+pkg syscall (freebsd-amd64), type SysProcAttr struct, Setsid bool
+pkg syscall (freebsd-amd64), type Timespec struct, Nsec int64
+pkg syscall (freebsd-amd64), type Timespec struct, Sec int64
+pkg syscall (freebsd-amd64), type Timeval struct, Sec int64
+pkg syscall (freebsd-amd64), type Timeval struct, Usec int64
+pkg syscall (freebsd-amd64), type WaitStatus uint32
+pkg syscall (freebsd-amd64), var Stderr int
+pkg syscall (freebsd-amd64), var Stdin int
+pkg syscall (freebsd-amd64), var Stdout int
 pkg syscall (linux-386), const AF_ALG ideal-int
 pkg syscall (linux-386), const AF_APPLETALK ideal-int
 pkg syscall (linux-386), const AF_ASH ideal-int
@@ -13264,6 +17365,7 @@ pkg syscall (linux-386), const DT_WHT ideal-int
 pkg syscall (linux-386), const EADV Errno
 pkg syscall (linux-386), const EBADE Errno
 pkg syscall (linux-386), const EBADFD Errno
+pkg syscall (linux-386), const EBADMSG Errno
 pkg syscall (linux-386), const EBADR Errno
 pkg syscall (linux-386), const EBADRQC Errno
 pkg syscall (linux-386), const EBADSLT Errno
@@ -13294,15 +17396,22 @@ pkg syscall (linux-386), const ELIBMAX Errno
 pkg syscall (linux-386), const ELIBSCN Errno
 pkg syscall (linux-386), const ELNRNG Errno
 pkg syscall (linux-386), const EMEDIUMTYPE Errno
+pkg syscall (linux-386), const EMULTIHOP Errno
 pkg syscall (linux-386), const ENAVAIL Errno
 pkg syscall (linux-386), const ENOANO Errno
 pkg syscall (linux-386), const ENOCSI Errno
+pkg syscall (linux-386), const ENODATA Errno
 pkg syscall (linux-386), const ENOKEY Errno
+pkg syscall (linux-386), const ENOLINK Errno
 pkg syscall (linux-386), const ENOMEDIUM Errno
 pkg syscall (linux-386), const ENONET Errno
 pkg syscall (linux-386), const ENOPKG Errno
+pkg syscall (linux-386), const ENOSR Errno
+pkg syscall (linux-386), const ENOSTR Errno
 pkg syscall (linux-386), const ENOTNAM Errno
+pkg syscall (linux-386), const ENOTRECOVERABLE Errno
 pkg syscall (linux-386), const ENOTUNIQ Errno
+pkg syscall (linux-386), const EOWNERDEAD Errno
 pkg syscall (linux-386), const EPOLLERR ideal-int
 pkg syscall (linux-386), const EPOLLET ideal-int
 pkg syscall (linux-386), const EPOLLHUP ideal-int
@@ -13321,6 +17430,7 @@ pkg syscall (linux-386), const EPOLL_CTL_ADD ideal-int
 pkg syscall (linux-386), const EPOLL_CTL_DEL ideal-int
 pkg syscall (linux-386), const EPOLL_CTL_MOD ideal-int
 pkg syscall (linux-386), const EPOLL_NONBLOCK ideal-int
+pkg syscall (linux-386), const EPROTO Errno
 pkg syscall (linux-386), const EREMCHG Errno
 pkg syscall (linux-386), const EREMOTEIO Errno
 pkg syscall (linux-386), const ERESTART Errno
@@ -13391,6 +17501,7 @@ pkg syscall (linux-386), const ETH_P_TR_802_2 ideal-int
 pkg syscall (linux-386), const ETH_P_WAN_PPP ideal-int
 pkg syscall (linux-386), const ETH_P_WCCP ideal-int
 pkg syscall (linux-386), const ETH_P_X25 ideal-int
+pkg syscall (linux-386), const ETIME Errno
 pkg syscall (linux-386), const EUCLEAN Errno
 pkg syscall (linux-386), const EUNATCH Errno
 pkg syscall (linux-386), const EXFULL Errno
@@ -14605,6 +18716,7 @@ pkg syscall (linux-386), const S_IRWXO ideal-int
 pkg syscall (linux-386), const S_IRWXU ideal-int
 pkg syscall (linux-386), const S_IWGRP ideal-int
 pkg syscall (linux-386), const S_IWOTH ideal-int
+pkg syscall (linux-386), const S_IWRITE ideal-int
 pkg syscall (linux-386), const S_IXGRP ideal-int
 pkg syscall (linux-386), const S_IXOTH ideal-int
 pkg syscall (linux-386), const SizeofCmsghdr ideal-int
@@ -14800,19 +18912,19 @@ pkg syscall (linux-386), func Fsync(int) error
 pkg syscall (linux-386), func Ftruncate(int, int64) error
 pkg syscall (linux-386), func Futimes(int, []Timeval) error
 pkg syscall (linux-386), func Futimesat(int, string, []Timeval) error
-pkg syscall (linux-386), func Getcwd([]byte) (int, error)
-pkg syscall (linux-386), func Getdents(int, []byte) (int, error)
+pkg syscall (linux-386), func Getcwd([]uint8) (int, error)
+pkg syscall (linux-386), func Getdents(int, []uint8) (int, error)
 pkg syscall (linux-386), func Getpeername(int) (Sockaddr, error)
 pkg syscall (linux-386), func Getpgid(int) (int, error)
 pkg syscall (linux-386), func Getpgrp() int
 pkg syscall (linux-386), func Getrlimit(int, *Rlimit) error
 pkg syscall (linux-386), func Getrusage(int, *Rusage) error
 pkg syscall (linux-386), func Getsockname(int) (Sockaddr, error)
-pkg syscall (linux-386), func GetsockoptIPMreq(int) (*IPMreq, error)
-pkg syscall (linux-386), func GetsockoptIPMreqn(int) (*IPMreqn, error)
-pkg syscall (linux-386), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
-pkg syscall (linux-386), func GetsockoptInet4Addr(int) ([4]byte, error)
-pkg syscall (linux-386), func GetsockoptInt(int) (int, error)
+pkg syscall (linux-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (linux-386), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (linux-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (linux-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (linux-386), func GetsockoptInt(int, int, int) (int, error)
 pkg syscall (linux-386), func Gettid() int
 pkg syscall (linux-386), func InotifyAddWatch(int, string, uint32) (int, error)
 pkg syscall (linux-386), func InotifyInit() (int, error)
@@ -14821,76 +18933,74 @@ pkg syscall (linux-386), func InotifyRmWatch(int, uint32) (int, error)
 pkg syscall (linux-386), func Ioperm(int, int, int) error
 pkg syscall (linux-386), func Iopl(int) error
 pkg syscall (linux-386), func Kill(int, Signal) error
-pkg syscall (linux-386), func Klogctl(int, []byte) (int, error)
-pkg syscall (linux-386), func Link(string, string) error
+pkg syscall (linux-386), func Klogctl(int, []uint8) (int, error)
 pkg syscall (linux-386), func Listen(int, int) error
-pkg syscall (linux-386), func LsfJump(int) *SockFilter
-pkg syscall (linux-386), func LsfSocket(int) (int, error)
-pkg syscall (linux-386), func LsfStmt(int) *SockFilter
+pkg syscall (linux-386), func LsfJump(int, int, int, int) *SockFilter
+pkg syscall (linux-386), func LsfSocket(int, int) (int, error)
+pkg syscall (linux-386), func LsfStmt(int, int) *SockFilter
 pkg syscall (linux-386), func Lstat(string, *Stat_t) error
-pkg syscall (linux-386), func Madvise([]byte, int) error
+pkg syscall (linux-386), func Madvise([]uint8, int) error
 pkg syscall (linux-386), func Mkdirat(int, string, uint32) error
 pkg syscall (linux-386), func Mkfifo(string, uint32) error
 pkg syscall (linux-386), func Mknod(string, uint32, int) error
 pkg syscall (linux-386), func Mknodat(int, string, uint32, int) error
-pkg syscall (linux-386), func Mlock([]byte) error
+pkg syscall (linux-386), func Mlock([]uint8) error
 pkg syscall (linux-386), func Mlockall(int) error
-pkg syscall (linux-386), func Mmap(int, int64, int, int, int) ([]byte, error)
+pkg syscall (linux-386), func Mmap(int, int64, int, int, int) ([]uint8, error)
 pkg syscall (linux-386), func Mount(string, string, string, uintptr, string) error
-pkg syscall (linux-386), func Mprotect([]byte, int) error
-pkg syscall (linux-386), func Munlock([]byte) error
+pkg syscall (linux-386), func Mprotect([]uint8, int) error
+pkg syscall (linux-386), func Munlock([]uint8) error
 pkg syscall (linux-386), func Munlockall() error
-pkg syscall (linux-386), func Munmap([]byte) error
+pkg syscall (linux-386), func Munmap([]uint8) error
 pkg syscall (linux-386), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (linux-386), func NetlinkRIB(int) ([]byte, error)
+pkg syscall (linux-386), func NetlinkRIB(int, int) ([]uint8, error)
 pkg syscall (linux-386), func NsecToTimespec(int64) Timespec
 pkg syscall (linux-386), func Open(string, int, uint32) (int, error)
 pkg syscall (linux-386), func Openat(int, string, int, uint32) (int, error)
-pkg syscall (linux-386), func ParseDirent([]byte, int, []string) (int, int, []string)
-pkg syscall (linux-386), func ParseNetlinkMessage([]byte) ([]NetlinkMessage, error)
+pkg syscall (linux-386), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (linux-386), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error)
 pkg syscall (linux-386), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error)
-pkg syscall (linux-386), func ParseSocketControlMessage([]byte) ([]SocketControlMessage, error)
+pkg syscall (linux-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
 pkg syscall (linux-386), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error)
 pkg syscall (linux-386), func ParseUnixRights(*SocketControlMessage) ([]int, error)
 pkg syscall (linux-386), func Pause() error
 pkg syscall (linux-386), func Pipe([]int) error
 pkg syscall (linux-386), func PivotRoot(string, string) error
-pkg syscall (linux-386), func Pread(int, []byte, int64) (int, error)
+pkg syscall (linux-386), func Pread(int, []uint8, int64) (int, error)
 pkg syscall (linux-386), func PtraceAttach(int) error
 pkg syscall (linux-386), func PtraceCont(int, int) error
 pkg syscall (linux-386), func PtraceDetach(int) error
 pkg syscall (linux-386), func PtraceGetEventMsg(int) (uint, error)
 pkg syscall (linux-386), func PtraceGetRegs(int, *PtraceRegs) error
-pkg syscall (linux-386), func PtracePeekData(int, uintptr, []byte) (int, error)
-pkg syscall (linux-386), func PtracePeekText(int, uintptr, []byte) (int, error)
-pkg syscall (linux-386), func PtracePokeData(int, uintptr, []byte) (int, error)
-pkg syscall (linux-386), func PtracePokeText(int, uintptr, []byte) (int, error)
+pkg syscall (linux-386), func PtracePeekData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-386), func PtracePeekText(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-386), func PtracePokeData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-386), func PtracePokeText(int, uintptr, []uint8) (int, error)
 pkg syscall (linux-386), func PtraceSetOptions(int, int) error
 pkg syscall (linux-386), func PtraceSetRegs(int, *PtraceRegs) error
 pkg syscall (linux-386), func PtraceSingleStep(int) error
-pkg syscall (linux-386), func Pwrite(int, []byte, int64) (int, error)
-pkg syscall (linux-386), func RawSyscall(uintptr) (uintptr, Errno)
-pkg syscall (linux-386), func RawSyscall6(uintptr) (uintptr, Errno)
-pkg syscall (linux-386), func Read(int, []byte) (int, error)
-pkg syscall (linux-386), func ReadDirent(int, []byte) (int, error)
+pkg syscall (linux-386), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (linux-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-386), func Read(int, []uint8) (int, error)
+pkg syscall (linux-386), func ReadDirent(int, []uint8) (int, error)
 pkg syscall (linux-386), func Reboot(int) error
-pkg syscall (linux-386), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
-pkg syscall (linux-386), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
-pkg syscall (linux-386), func Rename(string, string) error
+pkg syscall (linux-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (linux-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
 pkg syscall (linux-386), func Renameat(int, string, int, string) error
 pkg syscall (linux-386), func Seek(int, int64, int) (int64, error)
 pkg syscall (linux-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error)
 pkg syscall (linux-386), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (linux-386), func Sendmsg(int, []byte, Sockaddr, int) error
-pkg syscall (linux-386), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (linux-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (linux-386), func Sendto(int, []uint8, int, Sockaddr) error
 pkg syscall (linux-386), func SetLsfPromisc(string, bool) error
 pkg syscall (linux-386), func SetNonblock(int, bool) error
-pkg syscall (linux-386), func Setdomainname([]byte) error
+pkg syscall (linux-386), func Setdomainname([]uint8) error
 pkg syscall (linux-386), func Setfsgid(int) error
 pkg syscall (linux-386), func Setfsuid(int) error
 pkg syscall (linux-386), func Setgid(int) error
 pkg syscall (linux-386), func Setgroups([]int) error
-pkg syscall (linux-386), func Sethostname([]byte) error
+pkg syscall (linux-386), func Sethostname([]uint8) error
 pkg syscall (linux-386), func Setpgid(int, int) error
 pkg syscall (linux-386), func Setregid(int, int) error
 pkg syscall (linux-386), func Setresgid(int, int, int) error
@@ -14898,26 +19008,27 @@ pkg syscall (linux-386), func Setresuid(int, int, int) error
 pkg syscall (linux-386), func Setreuid(int, int) error
 pkg syscall (linux-386), func Setrlimit(int, *Rlimit) error
 pkg syscall (linux-386), func Setsid() (int, error)
-pkg syscall (linux-386), func SetsockoptIPMreq(int, *IPMreq) error
-pkg syscall (linux-386), func SetsockoptIPMreqn(int, *IPMreqn) error
-pkg syscall (linux-386), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
-pkg syscall (linux-386), func SetsockoptInet4Addr(int, [4]byte) error
-pkg syscall (linux-386), func SetsockoptInt(int, int) error
-pkg syscall (linux-386), func SetsockoptLinger(int, *Linger) error
-pkg syscall (linux-386), func SetsockoptString(int, string) error
-pkg syscall (linux-386), func SetsockoptTimeval(int, *Timeval) error
+pkg syscall (linux-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (linux-386), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (linux-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (linux-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (linux-386), func SetsockoptInt(int, int, int, int) error
+pkg syscall (linux-386), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (linux-386), func SetsockoptString(int, int, int, string) error
+pkg syscall (linux-386), func SetsockoptTimeval(int, int, int, *Timeval) error
 pkg syscall (linux-386), func Settimeofday(*Timeval) error
 pkg syscall (linux-386), func Setuid(int) error
-pkg syscall (linux-386), func Shutdown(int) error
-pkg syscall (linux-386), func Socket(int) (int, error)
-pkg syscall (linux-386), func Socketpair(int) ([2]int, error)
+pkg syscall (linux-386), func Shutdown(int, int) error
+pkg syscall (linux-386), func Socket(int, int, int) (int, error)
+pkg syscall (linux-386), func Socketpair(int, int, int) ([2]int, error)
 pkg syscall (linux-386), func Splice(int, *int64, int, *int64, int, int) (int, error)
 pkg syscall (linux-386), func Stat(string, *Stat_t) error
 pkg syscall (linux-386), func Statfs(string, *Statfs_t) error
-pkg syscall (linux-386), func StringSlicePtr([]string) []*byte
-pkg syscall (linux-386), func Symlink(string, string) error
+pkg syscall (linux-386), func StringSlicePtr([]string) []*uint8
 pkg syscall (linux-386), func Sync()
 pkg syscall (linux-386), func SyncFileRange(int, int64, int64, int) error
+pkg syscall (linux-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
 pkg syscall (linux-386), func Sysinfo(*Sysinfo_t) error
 pkg syscall (linux-386), func Tee(int, int, int, int) (int64, error)
 pkg syscall (linux-386), func Tgkill(int, int, Signal) error
@@ -14928,15 +19039,15 @@ pkg syscall (linux-386), func TimevalToNsec(Timeval) int64
 pkg syscall (linux-386), func Truncate(string, int64) error
 pkg syscall (linux-386), func Umask(int) int
 pkg syscall (linux-386), func Uname(*Utsname) error
-pkg syscall (linux-386), func UnixCredentials(*Ucred) []byte
-pkg syscall (linux-386), func UnixRights(...int) []byte
+pkg syscall (linux-386), func UnixCredentials(*Ucred) []uint8
+pkg syscall (linux-386), func UnixRights(...int) []uint8
 pkg syscall (linux-386), func Unlinkat(int, string) error
 pkg syscall (linux-386), func Unmount(string, int) error
 pkg syscall (linux-386), func Unshare(int) error
 pkg syscall (linux-386), func Ustat(int, *Ustat_t) error
 pkg syscall (linux-386), func Utime(string, *Utimbuf) error
 pkg syscall (linux-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (linux-386), func Write(int, []byte) (int, error)
+pkg syscall (linux-386), func Write(int, []uint8) (int, error)
 pkg syscall (linux-386), method (*Cmsghdr) SetLen(int)
 pkg syscall (linux-386), method (*Iovec) SetLen(int)
 pkg syscall (linux-386), method (*Msghdr) SetControllen(int)
@@ -14946,7 +19057,7 @@ pkg syscall (linux-386), type Cmsghdr struct
 pkg syscall (linux-386), type Cmsghdr struct, Len uint32
 pkg syscall (linux-386), type Cmsghdr struct, Level int32
 pkg syscall (linux-386), type Cmsghdr struct, Type int32
-pkg syscall (linux-386), type Cmsghdr struct, X__cmsg_data [0]byte
+pkg syscall (linux-386), type Cmsghdr struct, X__cmsg_data [0]uint8
 pkg syscall (linux-386), type Credential struct
 pkg syscall (linux-386), type Credential struct, Gid uint32
 pkg syscall (linux-386), type Credential struct, Groups []uint32
@@ -14955,7 +19066,7 @@ pkg syscall (linux-386), type Dirent struct
 pkg syscall (linux-386), type Dirent struct, Ino uint64
 pkg syscall (linux-386), type Dirent struct, Name [256]int8
 pkg syscall (linux-386), type Dirent struct, Off int64
-pkg syscall (linux-386), type Dirent struct, Pad_cgo_0 [1]byte
+pkg syscall (linux-386), type Dirent struct, Pad_cgo_0 [1]uint8
 pkg syscall (linux-386), type Dirent struct, Reclen uint16
 pkg syscall (linux-386), type Dirent struct, Type uint8
 pkg syscall (linux-386), type EpollEvent struct
@@ -14967,9 +19078,9 @@ pkg syscall (linux-386), type FdSet struct, Bits [32]int32
 pkg syscall (linux-386), type Fsid struct
 pkg syscall (linux-386), type Fsid struct, X__val [2]int32
 pkg syscall (linux-386), type IPMreqn struct
-pkg syscall (linux-386), type IPMreqn struct, Address [4]byte
+pkg syscall (linux-386), type IPMreqn struct, Address [4]uint8
 pkg syscall (linux-386), type IPMreqn struct, Ifindex int32
-pkg syscall (linux-386), type IPMreqn struct, Multiaddr [4]byte
+pkg syscall (linux-386), type IPMreqn struct, Multiaddr [4]uint8
 pkg syscall (linux-386), type IfAddrmsg struct
 pkg syscall (linux-386), type IfAddrmsg struct, Family uint8
 pkg syscall (linux-386), type IfAddrmsg struct, Flags uint8
@@ -14984,35 +19095,35 @@ pkg syscall (linux-386), type IfInfomsg struct, Index int32
 pkg syscall (linux-386), type IfInfomsg struct, Type uint16
 pkg syscall (linux-386), type IfInfomsg struct, X__ifi_pad uint8
 pkg syscall (linux-386), type Inet4Pktinfo struct
-pkg syscall (linux-386), type Inet4Pktinfo struct, Addr [4]byte
+pkg syscall (linux-386), type Inet4Pktinfo struct, Addr [4]uint8
 pkg syscall (linux-386), type Inet4Pktinfo struct, Ifindex int32
-pkg syscall (linux-386), type Inet4Pktinfo struct, Spec_dst [4]byte
+pkg syscall (linux-386), type Inet4Pktinfo struct, Spec_dst [4]uint8
 pkg syscall (linux-386), type Inet6Pktinfo struct
-pkg syscall (linux-386), type Inet6Pktinfo struct, Addr [16]byte
+pkg syscall (linux-386), type Inet6Pktinfo struct, Addr [16]uint8
 pkg syscall (linux-386), type Inet6Pktinfo struct, Ifindex uint32
 pkg syscall (linux-386), type InotifyEvent struct
 pkg syscall (linux-386), type InotifyEvent struct, Cookie uint32
 pkg syscall (linux-386), type InotifyEvent struct, Len uint32
 pkg syscall (linux-386), type InotifyEvent struct, Mask uint32
-pkg syscall (linux-386), type InotifyEvent struct, Name [0]byte
+pkg syscall (linux-386), type InotifyEvent struct, Name [0]uint8
 pkg syscall (linux-386), type InotifyEvent struct, Wd int32
 pkg syscall (linux-386), type Iovec struct
-pkg syscall (linux-386), type Iovec struct, Base *byte
+pkg syscall (linux-386), type Iovec struct, Base *uint8
 pkg syscall (linux-386), type Iovec struct, Len uint32
 pkg syscall (linux-386), type Msghdr struct
-pkg syscall (linux-386), type Msghdr struct, Control *byte
+pkg syscall (linux-386), type Msghdr struct, Control *uint8
 pkg syscall (linux-386), type Msghdr struct, Controllen uint32
 pkg syscall (linux-386), type Msghdr struct, Flags int32
 pkg syscall (linux-386), type Msghdr struct, Iov *Iovec
 pkg syscall (linux-386), type Msghdr struct, Iovlen uint32
-pkg syscall (linux-386), type Msghdr struct, Name *byte
+pkg syscall (linux-386), type Msghdr struct, Name *uint8
 pkg syscall (linux-386), type Msghdr struct, Namelen uint32
 pkg syscall (linux-386), type NetlinkMessage struct
-pkg syscall (linux-386), type NetlinkMessage struct, Data []byte
+pkg syscall (linux-386), type NetlinkMessage struct, Data []uint8
 pkg syscall (linux-386), type NetlinkMessage struct, Header NlMsghdr
 pkg syscall (linux-386), type NetlinkRouteAttr struct
 pkg syscall (linux-386), type NetlinkRouteAttr struct, Attr RtAttr
-pkg syscall (linux-386), type NetlinkRouteAttr struct, Value []byte
+pkg syscall (linux-386), type NetlinkRouteAttr struct, Value []uint8
 pkg syscall (linux-386), type NetlinkRouteRequest struct
 pkg syscall (linux-386), type NetlinkRouteRequest struct, Data RtGenmsg
 pkg syscall (linux-386), type NetlinkRouteRequest struct, Header NlMsghdr
@@ -15046,12 +19157,13 @@ pkg syscall (linux-386), type PtraceRegs struct, Xes int32
 pkg syscall (linux-386), type PtraceRegs struct, Xfs int32
 pkg syscall (linux-386), type PtraceRegs struct, Xgs int32
 pkg syscall (linux-386), type PtraceRegs struct, Xss int32
+pkg syscall (linux-386), type RawSockaddr struct, Data [14]int8
 pkg syscall (linux-386), type RawSockaddr struct, Family uint16
 pkg syscall (linux-386), type RawSockaddrAny struct, Pad [96]int8
 pkg syscall (linux-386), type RawSockaddrInet4 struct, Family uint16
 pkg syscall (linux-386), type RawSockaddrInet4 struct, Zero [8]uint8
 pkg syscall (linux-386), type RawSockaddrInet6 struct
-pkg syscall (linux-386), type RawSockaddrInet6 struct, Addr [16]byte
+pkg syscall (linux-386), type RawSockaddrInet6 struct, Addr [16]uint8
 pkg syscall (linux-386), type RawSockaddrInet6 struct, Family uint16
 pkg syscall (linux-386), type RawSockaddrInet6 struct, Flowinfo uint32
 pkg syscall (linux-386), type RawSockaddrInet6 struct, Port uint16
@@ -15119,9 +19231,9 @@ pkg syscall (linux-386), type SockFilter struct, K uint32
 pkg syscall (linux-386), type SockFprog struct
 pkg syscall (linux-386), type SockFprog struct, Filter *SockFilter
 pkg syscall (linux-386), type SockFprog struct, Len uint16
-pkg syscall (linux-386), type SockFprog struct, Pad_cgo_0 [2]byte
+pkg syscall (linux-386), type SockFprog struct, Pad_cgo_0 [2]uint8
 pkg syscall (linux-386), type SockaddrLinklayer struct
-pkg syscall (linux-386), type SockaddrLinklayer struct, Addr [8]byte
+pkg syscall (linux-386), type SockaddrLinklayer struct, Addr [8]uint8
 pkg syscall (linux-386), type SockaddrLinklayer struct, Halen uint8
 pkg syscall (linux-386), type SockaddrLinklayer struct, Hatype uint16
 pkg syscall (linux-386), type SockaddrLinklayer struct, Ifindex int
@@ -15133,7 +19245,7 @@ pkg syscall (linux-386), type SockaddrNetlink struct, Groups uint32
 pkg syscall (linux-386), type SockaddrNetlink struct, Pad uint16
 pkg syscall (linux-386), type SockaddrNetlink struct, Pid uint32
 pkg syscall (linux-386), type SocketControlMessage struct
-pkg syscall (linux-386), type SocketControlMessage struct, Data []byte
+pkg syscall (linux-386), type SocketControlMessage struct, Data []uint8
 pkg syscall (linux-386), type SocketControlMessage struct, Header Cmsghdr
 pkg syscall (linux-386), type Stat_t struct
 pkg syscall (linux-386), type Stat_t struct, Atim Timespec
@@ -15146,8 +19258,8 @@ pkg syscall (linux-386), type Stat_t struct, Ino uint64
 pkg syscall (linux-386), type Stat_t struct, Mode uint32
 pkg syscall (linux-386), type Stat_t struct, Mtim Timespec
 pkg syscall (linux-386), type Stat_t struct, Nlink uint32
-pkg syscall (linux-386), type Stat_t struct, Pad_cgo_0 [2]byte
-pkg syscall (linux-386), type Stat_t struct, Pad_cgo_1 [2]byte
+pkg syscall (linux-386), type Stat_t struct, Pad_cgo_0 [2]uint8
+pkg syscall (linux-386), type Stat_t struct, Pad_cgo_1 [2]uint8
 pkg syscall (linux-386), type Stat_t struct, Rdev uint64
 pkg syscall (linux-386), type Stat_t struct, Size int64
 pkg syscall (linux-386), type Stat_t struct, Uid uint32
@@ -15199,7 +19311,7 @@ pkg syscall (linux-386), type Termios struct, Lflag uint32
 pkg syscall (linux-386), type Termios struct, Line uint8
 pkg syscall (linux-386), type Termios struct, Oflag uint32
 pkg syscall (linux-386), type Termios struct, Ospeed uint32
-pkg syscall (linux-386), type Termios struct, Pad_cgo_0 [3]byte
+pkg syscall (linux-386), type Termios struct, Pad_cgo_0 [3]uint8
 pkg syscall (linux-386), type Time_t int32
 pkg syscall (linux-386), type Timespec struct, Nsec int32
 pkg syscall (linux-386), type Timespec struct, Sec int32
@@ -15216,7 +19328,7 @@ pkg syscall (linux-386), type Timex struct, Jitter int32
 pkg syscall (linux-386), type Timex struct, Maxerror int32
 pkg syscall (linux-386), type Timex struct, Modes uint32
 pkg syscall (linux-386), type Timex struct, Offset int32
-pkg syscall (linux-386), type Timex struct, Pad_cgo_0 [44]byte
+pkg syscall (linux-386), type Timex struct, Pad_cgo_0 [44]uint8
 pkg syscall (linux-386), type Timex struct, Ppsfreq int32
 pkg syscall (linux-386), type Timex struct, Precision int32
 pkg syscall (linux-386), type Timex struct, Shift int32
@@ -15442,6 +19554,7 @@ pkg syscall (linux-386-cgo), const DT_WHT ideal-int
 pkg syscall (linux-386-cgo), const EADV Errno
 pkg syscall (linux-386-cgo), const EBADE Errno
 pkg syscall (linux-386-cgo), const EBADFD Errno
+pkg syscall (linux-386-cgo), const EBADMSG Errno
 pkg syscall (linux-386-cgo), const EBADR Errno
 pkg syscall (linux-386-cgo), const EBADRQC Errno
 pkg syscall (linux-386-cgo), const EBADSLT Errno
@@ -15472,15 +19585,22 @@ pkg syscall (linux-386-cgo), const ELIBMAX Errno
 pkg syscall (linux-386-cgo), const ELIBSCN Errno
 pkg syscall (linux-386-cgo), const ELNRNG Errno
 pkg syscall (linux-386-cgo), const EMEDIUMTYPE Errno
+pkg syscall (linux-386-cgo), const EMULTIHOP Errno
 pkg syscall (linux-386-cgo), const ENAVAIL Errno
 pkg syscall (linux-386-cgo), const ENOANO Errno
 pkg syscall (linux-386-cgo), const ENOCSI Errno
+pkg syscall (linux-386-cgo), const ENODATA Errno
 pkg syscall (linux-386-cgo), const ENOKEY Errno
+pkg syscall (linux-386-cgo), const ENOLINK Errno
 pkg syscall (linux-386-cgo), const ENOMEDIUM Errno
 pkg syscall (linux-386-cgo), const ENONET Errno
 pkg syscall (linux-386-cgo), const ENOPKG Errno
+pkg syscall (linux-386-cgo), const ENOSR Errno
+pkg syscall (linux-386-cgo), const ENOSTR Errno
 pkg syscall (linux-386-cgo), const ENOTNAM Errno
+pkg syscall (linux-386-cgo), const ENOTRECOVERABLE Errno
 pkg syscall (linux-386-cgo), const ENOTUNIQ Errno
+pkg syscall (linux-386-cgo), const EOWNERDEAD Errno
 pkg syscall (linux-386-cgo), const EPOLLERR ideal-int
 pkg syscall (linux-386-cgo), const EPOLLET ideal-int
 pkg syscall (linux-386-cgo), const EPOLLHUP ideal-int
@@ -15499,6 +19619,7 @@ pkg syscall (linux-386-cgo), const EPOLL_CTL_ADD ideal-int
 pkg syscall (linux-386-cgo), const EPOLL_CTL_DEL ideal-int
 pkg syscall (linux-386-cgo), const EPOLL_CTL_MOD ideal-int
 pkg syscall (linux-386-cgo), const EPOLL_NONBLOCK ideal-int
+pkg syscall (linux-386-cgo), const EPROTO Errno
 pkg syscall (linux-386-cgo), const EREMCHG Errno
 pkg syscall (linux-386-cgo), const EREMOTEIO Errno
 pkg syscall (linux-386-cgo), const ERESTART Errno
@@ -15569,6 +19690,7 @@ pkg syscall (linux-386-cgo), const ETH_P_TR_802_2 ideal-int
 pkg syscall (linux-386-cgo), const ETH_P_WAN_PPP ideal-int
 pkg syscall (linux-386-cgo), const ETH_P_WCCP ideal-int
 pkg syscall (linux-386-cgo), const ETH_P_X25 ideal-int
+pkg syscall (linux-386-cgo), const ETIME Errno
 pkg syscall (linux-386-cgo), const EUCLEAN Errno
 pkg syscall (linux-386-cgo), const EUNATCH Errno
 pkg syscall (linux-386-cgo), const EXFULL Errno
@@ -16783,6 +20905,7 @@ pkg syscall (linux-386-cgo), const S_IRWXO ideal-int
 pkg syscall (linux-386-cgo), const S_IRWXU ideal-int
 pkg syscall (linux-386-cgo), const S_IWGRP ideal-int
 pkg syscall (linux-386-cgo), const S_IWOTH ideal-int
+pkg syscall (linux-386-cgo), const S_IWRITE ideal-int
 pkg syscall (linux-386-cgo), const S_IXGRP ideal-int
 pkg syscall (linux-386-cgo), const S_IXOTH ideal-int
 pkg syscall (linux-386-cgo), const SizeofCmsghdr ideal-int
@@ -16978,19 +21101,19 @@ pkg syscall (linux-386-cgo), func Fsync(int) error
 pkg syscall (linux-386-cgo), func Ftruncate(int, int64) error
 pkg syscall (linux-386-cgo), func Futimes(int, []Timeval) error
 pkg syscall (linux-386-cgo), func Futimesat(int, string, []Timeval) error
-pkg syscall (linux-386-cgo), func Getcwd([]byte) (int, error)
-pkg syscall (linux-386-cgo), func Getdents(int, []byte) (int, error)
+pkg syscall (linux-386-cgo), func Getcwd([]uint8) (int, error)
+pkg syscall (linux-386-cgo), func Getdents(int, []uint8) (int, error)
 pkg syscall (linux-386-cgo), func Getpeername(int) (Sockaddr, error)
 pkg syscall (linux-386-cgo), func Getpgid(int) (int, error)
 pkg syscall (linux-386-cgo), func Getpgrp() int
 pkg syscall (linux-386-cgo), func Getrlimit(int, *Rlimit) error
 pkg syscall (linux-386-cgo), func Getrusage(int, *Rusage) error
 pkg syscall (linux-386-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (linux-386-cgo), func GetsockoptIPMreq(int) (*IPMreq, error)
-pkg syscall (linux-386-cgo), func GetsockoptIPMreqn(int) (*IPMreqn, error)
-pkg syscall (linux-386-cgo), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
-pkg syscall (linux-386-cgo), func GetsockoptInet4Addr(int) ([4]byte, error)
-pkg syscall (linux-386-cgo), func GetsockoptInt(int) (int, error)
+pkg syscall (linux-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (linux-386-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (linux-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (linux-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (linux-386-cgo), func GetsockoptInt(int, int, int) (int, error)
 pkg syscall (linux-386-cgo), func Gettid() int
 pkg syscall (linux-386-cgo), func InotifyAddWatch(int, string, uint32) (int, error)
 pkg syscall (linux-386-cgo), func InotifyInit() (int, error)
@@ -16999,76 +21122,74 @@ pkg syscall (linux-386-cgo), func InotifyRmWatch(int, uint32) (int, error)
 pkg syscall (linux-386-cgo), func Ioperm(int, int, int) error
 pkg syscall (linux-386-cgo), func Iopl(int) error
 pkg syscall (linux-386-cgo), func Kill(int, Signal) error
-pkg syscall (linux-386-cgo), func Klogctl(int, []byte) (int, error)
-pkg syscall (linux-386-cgo), func Link(string, string) error
+pkg syscall (linux-386-cgo), func Klogctl(int, []uint8) (int, error)
 pkg syscall (linux-386-cgo), func Listen(int, int) error
-pkg syscall (linux-386-cgo), func LsfJump(int) *SockFilter
-pkg syscall (linux-386-cgo), func LsfSocket(int) (int, error)
-pkg syscall (linux-386-cgo), func LsfStmt(int) *SockFilter
+pkg syscall (linux-386-cgo), func LsfJump(int, int, int, int) *SockFilter
+pkg syscall (linux-386-cgo), func LsfSocket(int, int) (int, error)
+pkg syscall (linux-386-cgo), func LsfStmt(int, int) *SockFilter
 pkg syscall (linux-386-cgo), func Lstat(string, *Stat_t) error
-pkg syscall (linux-386-cgo), func Madvise([]byte, int) error
+pkg syscall (linux-386-cgo), func Madvise([]uint8, int) error
 pkg syscall (linux-386-cgo), func Mkdirat(int, string, uint32) error
 pkg syscall (linux-386-cgo), func Mkfifo(string, uint32) error
 pkg syscall (linux-386-cgo), func Mknod(string, uint32, int) error
 pkg syscall (linux-386-cgo), func Mknodat(int, string, uint32, int) error
-pkg syscall (linux-386-cgo), func Mlock([]byte) error
+pkg syscall (linux-386-cgo), func Mlock([]uint8) error
 pkg syscall (linux-386-cgo), func Mlockall(int) error
-pkg syscall (linux-386-cgo), func Mmap(int, int64, int, int, int) ([]byte, error)
+pkg syscall (linux-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
 pkg syscall (linux-386-cgo), func Mount(string, string, string, uintptr, string) error
-pkg syscall (linux-386-cgo), func Mprotect([]byte, int) error
-pkg syscall (linux-386-cgo), func Munlock([]byte) error
+pkg syscall (linux-386-cgo), func Mprotect([]uint8, int) error
+pkg syscall (linux-386-cgo), func Munlock([]uint8) error
 pkg syscall (linux-386-cgo), func Munlockall() error
-pkg syscall (linux-386-cgo), func Munmap([]byte) error
+pkg syscall (linux-386-cgo), func Munmap([]uint8) error
 pkg syscall (linux-386-cgo), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (linux-386-cgo), func NetlinkRIB(int) ([]byte, error)
+pkg syscall (linux-386-cgo), func NetlinkRIB(int, int) ([]uint8, error)
 pkg syscall (linux-386-cgo), func NsecToTimespec(int64) Timespec
 pkg syscall (linux-386-cgo), func Open(string, int, uint32) (int, error)
 pkg syscall (linux-386-cgo), func Openat(int, string, int, uint32) (int, error)
-pkg syscall (linux-386-cgo), func ParseDirent([]byte, int, []string) (int, int, []string)
-pkg syscall (linux-386-cgo), func ParseNetlinkMessage([]byte) ([]NetlinkMessage, error)
+pkg syscall (linux-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (linux-386-cgo), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error)
 pkg syscall (linux-386-cgo), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error)
-pkg syscall (linux-386-cgo), func ParseSocketControlMessage([]byte) ([]SocketControlMessage, error)
+pkg syscall (linux-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
 pkg syscall (linux-386-cgo), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error)
 pkg syscall (linux-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
 pkg syscall (linux-386-cgo), func Pause() error
 pkg syscall (linux-386-cgo), func Pipe([]int) error
 pkg syscall (linux-386-cgo), func PivotRoot(string, string) error
-pkg syscall (linux-386-cgo), func Pread(int, []byte, int64) (int, error)
+pkg syscall (linux-386-cgo), func Pread(int, []uint8, int64) (int, error)
 pkg syscall (linux-386-cgo), func PtraceAttach(int) error
 pkg syscall (linux-386-cgo), func PtraceCont(int, int) error
 pkg syscall (linux-386-cgo), func PtraceDetach(int) error
 pkg syscall (linux-386-cgo), func PtraceGetEventMsg(int) (uint, error)
 pkg syscall (linux-386-cgo), func PtraceGetRegs(int, *PtraceRegs) error
-pkg syscall (linux-386-cgo), func PtracePeekData(int, uintptr, []byte) (int, error)
-pkg syscall (linux-386-cgo), func PtracePeekText(int, uintptr, []byte) (int, error)
-pkg syscall (linux-386-cgo), func PtracePokeData(int, uintptr, []byte) (int, error)
-pkg syscall (linux-386-cgo), func PtracePokeText(int, uintptr, []byte) (int, error)
+pkg syscall (linux-386-cgo), func PtracePeekData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-386-cgo), func PtracePeekText(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-386-cgo), func PtracePokeData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-386-cgo), func PtracePokeText(int, uintptr, []uint8) (int, error)
 pkg syscall (linux-386-cgo), func PtraceSetOptions(int, int) error
 pkg syscall (linux-386-cgo), func PtraceSetRegs(int, *PtraceRegs) error
 pkg syscall (linux-386-cgo), func PtraceSingleStep(int) error
-pkg syscall (linux-386-cgo), func Pwrite(int, []byte, int64) (int, error)
-pkg syscall (linux-386-cgo), func RawSyscall(uintptr) (uintptr, Errno)
-pkg syscall (linux-386-cgo), func RawSyscall6(uintptr) (uintptr, Errno)
-pkg syscall (linux-386-cgo), func Read(int, []byte) (int, error)
-pkg syscall (linux-386-cgo), func ReadDirent(int, []byte) (int, error)
+pkg syscall (linux-386-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (linux-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-386-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (linux-386-cgo), func ReadDirent(int, []uint8) (int, error)
 pkg syscall (linux-386-cgo), func Reboot(int) error
-pkg syscall (linux-386-cgo), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
-pkg syscall (linux-386-cgo), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
-pkg syscall (linux-386-cgo), func Rename(string, string) error
+pkg syscall (linux-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (linux-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
 pkg syscall (linux-386-cgo), func Renameat(int, string, int, string) error
 pkg syscall (linux-386-cgo), func Seek(int, int64, int) (int64, error)
 pkg syscall (linux-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error)
 pkg syscall (linux-386-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (linux-386-cgo), func Sendmsg(int, []byte, Sockaddr, int) error
-pkg syscall (linux-386-cgo), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (linux-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (linux-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error
 pkg syscall (linux-386-cgo), func SetLsfPromisc(string, bool) error
 pkg syscall (linux-386-cgo), func SetNonblock(int, bool) error
-pkg syscall (linux-386-cgo), func Setdomainname([]byte) error
+pkg syscall (linux-386-cgo), func Setdomainname([]uint8) error
 pkg syscall (linux-386-cgo), func Setfsgid(int) error
 pkg syscall (linux-386-cgo), func Setfsuid(int) error
 pkg syscall (linux-386-cgo), func Setgid(int) error
 pkg syscall (linux-386-cgo), func Setgroups([]int) error
-pkg syscall (linux-386-cgo), func Sethostname([]byte) error
+pkg syscall (linux-386-cgo), func Sethostname([]uint8) error
 pkg syscall (linux-386-cgo), func Setpgid(int, int) error
 pkg syscall (linux-386-cgo), func Setregid(int, int) error
 pkg syscall (linux-386-cgo), func Setresgid(int, int, int) error
@@ -17076,26 +21197,27 @@ pkg syscall (linux-386-cgo), func Setresuid(int, int, int) error
 pkg syscall (linux-386-cgo), func Setreuid(int, int) error
 pkg syscall (linux-386-cgo), func Setrlimit(int, *Rlimit) error
 pkg syscall (linux-386-cgo), func Setsid() (int, error)
-pkg syscall (linux-386-cgo), func SetsockoptIPMreq(int, *IPMreq) error
-pkg syscall (linux-386-cgo), func SetsockoptIPMreqn(int, *IPMreqn) error
-pkg syscall (linux-386-cgo), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
-pkg syscall (linux-386-cgo), func SetsockoptInet4Addr(int, [4]byte) error
-pkg syscall (linux-386-cgo), func SetsockoptInt(int, int) error
-pkg syscall (linux-386-cgo), func SetsockoptLinger(int, *Linger) error
-pkg syscall (linux-386-cgo), func SetsockoptString(int, string) error
-pkg syscall (linux-386-cgo), func SetsockoptTimeval(int, *Timeval) error
+pkg syscall (linux-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (linux-386-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (linux-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (linux-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (linux-386-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (linux-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (linux-386-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (linux-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
 pkg syscall (linux-386-cgo), func Settimeofday(*Timeval) error
 pkg syscall (linux-386-cgo), func Setuid(int) error
-pkg syscall (linux-386-cgo), func Shutdown(int) error
-pkg syscall (linux-386-cgo), func Socket(int) (int, error)
-pkg syscall (linux-386-cgo), func Socketpair(int) ([2]int, error)
+pkg syscall (linux-386-cgo), func Shutdown(int, int) error
+pkg syscall (linux-386-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (linux-386-cgo), func Socketpair(int, int, int) ([2]int, error)
 pkg syscall (linux-386-cgo), func Splice(int, *int64, int, *int64, int, int) (int, error)
 pkg syscall (linux-386-cgo), func Stat(string, *Stat_t) error
 pkg syscall (linux-386-cgo), func Statfs(string, *Statfs_t) error
-pkg syscall (linux-386-cgo), func StringSlicePtr([]string) []*byte
-pkg syscall (linux-386-cgo), func Symlink(string, string) error
+pkg syscall (linux-386-cgo), func StringSlicePtr([]string) []*uint8
 pkg syscall (linux-386-cgo), func Sync()
 pkg syscall (linux-386-cgo), func SyncFileRange(int, int64, int64, int) error
+pkg syscall (linux-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
 pkg syscall (linux-386-cgo), func Sysinfo(*Sysinfo_t) error
 pkg syscall (linux-386-cgo), func Tee(int, int, int, int) (int64, error)
 pkg syscall (linux-386-cgo), func Tgkill(int, int, Signal) error
@@ -17106,15 +21228,15 @@ pkg syscall (linux-386-cgo), func TimevalToNsec(Timeval) int64
 pkg syscall (linux-386-cgo), func Truncate(string, int64) error
 pkg syscall (linux-386-cgo), func Umask(int) int
 pkg syscall (linux-386-cgo), func Uname(*Utsname) error
-pkg syscall (linux-386-cgo), func UnixCredentials(*Ucred) []byte
-pkg syscall (linux-386-cgo), func UnixRights(...int) []byte
+pkg syscall (linux-386-cgo), func UnixCredentials(*Ucred) []uint8
+pkg syscall (linux-386-cgo), func UnixRights(...int) []uint8
 pkg syscall (linux-386-cgo), func Unlinkat(int, string) error
 pkg syscall (linux-386-cgo), func Unmount(string, int) error
 pkg syscall (linux-386-cgo), func Unshare(int) error
 pkg syscall (linux-386-cgo), func Ustat(int, *Ustat_t) error
 pkg syscall (linux-386-cgo), func Utime(string, *Utimbuf) error
 pkg syscall (linux-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (linux-386-cgo), func Write(int, []byte) (int, error)
+pkg syscall (linux-386-cgo), func Write(int, []uint8) (int, error)
 pkg syscall (linux-386-cgo), method (*Cmsghdr) SetLen(int)
 pkg syscall (linux-386-cgo), method (*Iovec) SetLen(int)
 pkg syscall (linux-386-cgo), method (*Msghdr) SetControllen(int)
@@ -17124,7 +21246,7 @@ pkg syscall (linux-386-cgo), type Cmsghdr struct
 pkg syscall (linux-386-cgo), type Cmsghdr struct, Len uint32
 pkg syscall (linux-386-cgo), type Cmsghdr struct, Level int32
 pkg syscall (linux-386-cgo), type Cmsghdr struct, Type int32
-pkg syscall (linux-386-cgo), type Cmsghdr struct, X__cmsg_data [0]byte
+pkg syscall (linux-386-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8
 pkg syscall (linux-386-cgo), type Credential struct
 pkg syscall (linux-386-cgo), type Credential struct, Gid uint32
 pkg syscall (linux-386-cgo), type Credential struct, Groups []uint32
@@ -17133,7 +21255,7 @@ pkg syscall (linux-386-cgo), type Dirent struct
 pkg syscall (linux-386-cgo), type Dirent struct, Ino uint64
 pkg syscall (linux-386-cgo), type Dirent struct, Name [256]int8
 pkg syscall (linux-386-cgo), type Dirent struct, Off int64
-pkg syscall (linux-386-cgo), type Dirent struct, Pad_cgo_0 [1]byte
+pkg syscall (linux-386-cgo), type Dirent struct, Pad_cgo_0 [1]uint8
 pkg syscall (linux-386-cgo), type Dirent struct, Reclen uint16
 pkg syscall (linux-386-cgo), type Dirent struct, Type uint8
 pkg syscall (linux-386-cgo), type EpollEvent struct
@@ -17145,9 +21267,9 @@ pkg syscall (linux-386-cgo), type FdSet struct, Bits [32]int32
 pkg syscall (linux-386-cgo), type Fsid struct
 pkg syscall (linux-386-cgo), type Fsid struct, X__val [2]int32
 pkg syscall (linux-386-cgo), type IPMreqn struct
-pkg syscall (linux-386-cgo), type IPMreqn struct, Address [4]byte
+pkg syscall (linux-386-cgo), type IPMreqn struct, Address [4]uint8
 pkg syscall (linux-386-cgo), type IPMreqn struct, Ifindex int32
-pkg syscall (linux-386-cgo), type IPMreqn struct, Multiaddr [4]byte
+pkg syscall (linux-386-cgo), type IPMreqn struct, Multiaddr [4]uint8
 pkg syscall (linux-386-cgo), type IfAddrmsg struct
 pkg syscall (linux-386-cgo), type IfAddrmsg struct, Family uint8
 pkg syscall (linux-386-cgo), type IfAddrmsg struct, Flags uint8
@@ -17162,35 +21284,35 @@ pkg syscall (linux-386-cgo), type IfInfomsg struct, Index int32
 pkg syscall (linux-386-cgo), type IfInfomsg struct, Type uint16
 pkg syscall (linux-386-cgo), type IfInfomsg struct, X__ifi_pad uint8
 pkg syscall (linux-386-cgo), type Inet4Pktinfo struct
-pkg syscall (linux-386-cgo), type Inet4Pktinfo struct, Addr [4]byte
+pkg syscall (linux-386-cgo), type Inet4Pktinfo struct, Addr [4]uint8
 pkg syscall (linux-386-cgo), type Inet4Pktinfo struct, Ifindex int32
-pkg syscall (linux-386-cgo), type Inet4Pktinfo struct, Spec_dst [4]byte
+pkg syscall (linux-386-cgo), type Inet4Pktinfo struct, Spec_dst [4]uint8
 pkg syscall (linux-386-cgo), type Inet6Pktinfo struct
-pkg syscall (linux-386-cgo), type Inet6Pktinfo struct, Addr [16]byte
+pkg syscall (linux-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8
 pkg syscall (linux-386-cgo), type Inet6Pktinfo struct, Ifindex uint32
 pkg syscall (linux-386-cgo), type InotifyEvent struct
 pkg syscall (linux-386-cgo), type InotifyEvent struct, Cookie uint32
 pkg syscall (linux-386-cgo), type InotifyEvent struct, Len uint32
 pkg syscall (linux-386-cgo), type InotifyEvent struct, Mask uint32
-pkg syscall (linux-386-cgo), type InotifyEvent struct, Name [0]byte
+pkg syscall (linux-386-cgo), type InotifyEvent struct, Name [0]uint8
 pkg syscall (linux-386-cgo), type InotifyEvent struct, Wd int32
 pkg syscall (linux-386-cgo), type Iovec struct
-pkg syscall (linux-386-cgo), type Iovec struct, Base *byte
+pkg syscall (linux-386-cgo), type Iovec struct, Base *uint8
 pkg syscall (linux-386-cgo), type Iovec struct, Len uint32
 pkg syscall (linux-386-cgo), type Msghdr struct
-pkg syscall (linux-386-cgo), type Msghdr struct, Control *byte
+pkg syscall (linux-386-cgo), type Msghdr struct, Control *uint8
 pkg syscall (linux-386-cgo), type Msghdr struct, Controllen uint32
 pkg syscall (linux-386-cgo), type Msghdr struct, Flags int32
 pkg syscall (linux-386-cgo), type Msghdr struct, Iov *Iovec
 pkg syscall (linux-386-cgo), type Msghdr struct, Iovlen uint32
-pkg syscall (linux-386-cgo), type Msghdr struct, Name *byte
+pkg syscall (linux-386-cgo), type Msghdr struct, Name *uint8
 pkg syscall (linux-386-cgo), type Msghdr struct, Namelen uint32
 pkg syscall (linux-386-cgo), type NetlinkMessage struct
-pkg syscall (linux-386-cgo), type NetlinkMessage struct, Data []byte
+pkg syscall (linux-386-cgo), type NetlinkMessage struct, Data []uint8
 pkg syscall (linux-386-cgo), type NetlinkMessage struct, Header NlMsghdr
 pkg syscall (linux-386-cgo), type NetlinkRouteAttr struct
 pkg syscall (linux-386-cgo), type NetlinkRouteAttr struct, Attr RtAttr
-pkg syscall (linux-386-cgo), type NetlinkRouteAttr struct, Value []byte
+pkg syscall (linux-386-cgo), type NetlinkRouteAttr struct, Value []uint8
 pkg syscall (linux-386-cgo), type NetlinkRouteRequest struct
 pkg syscall (linux-386-cgo), type NetlinkRouteRequest struct, Data RtGenmsg
 pkg syscall (linux-386-cgo), type NetlinkRouteRequest struct, Header NlMsghdr
@@ -17224,12 +21346,13 @@ pkg syscall (linux-386-cgo), type PtraceRegs struct, Xes int32
 pkg syscall (linux-386-cgo), type PtraceRegs struct, Xfs int32
 pkg syscall (linux-386-cgo), type PtraceRegs struct, Xgs int32
 pkg syscall (linux-386-cgo), type PtraceRegs struct, Xss int32
+pkg syscall (linux-386-cgo), type RawSockaddr struct, Data [14]int8
 pkg syscall (linux-386-cgo), type RawSockaddr struct, Family uint16
 pkg syscall (linux-386-cgo), type RawSockaddrAny struct, Pad [96]int8
 pkg syscall (linux-386-cgo), type RawSockaddrInet4 struct, Family uint16
 pkg syscall (linux-386-cgo), type RawSockaddrInet4 struct, Zero [8]uint8
 pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct
-pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct, Addr [16]byte
+pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct, Addr [16]uint8
 pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct, Family uint16
 pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct, Flowinfo uint32
 pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct, Port uint16
@@ -17297,9 +21420,9 @@ pkg syscall (linux-386-cgo), type SockFilter struct, K uint32
 pkg syscall (linux-386-cgo), type SockFprog struct
 pkg syscall (linux-386-cgo), type SockFprog struct, Filter *SockFilter
 pkg syscall (linux-386-cgo), type SockFprog struct, Len uint16
-pkg syscall (linux-386-cgo), type SockFprog struct, Pad_cgo_0 [2]byte
+pkg syscall (linux-386-cgo), type SockFprog struct, Pad_cgo_0 [2]uint8
 pkg syscall (linux-386-cgo), type SockaddrLinklayer struct
-pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Addr [8]byte
+pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Addr [8]uint8
 pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Halen uint8
 pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Hatype uint16
 pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Ifindex int
@@ -17311,7 +21434,7 @@ pkg syscall (linux-386-cgo), type SockaddrNetlink struct, Groups uint32
 pkg syscall (linux-386-cgo), type SockaddrNetlink struct, Pad uint16
 pkg syscall (linux-386-cgo), type SockaddrNetlink struct, Pid uint32
 pkg syscall (linux-386-cgo), type SocketControlMessage struct
-pkg syscall (linux-386-cgo), type SocketControlMessage struct, Data []byte
+pkg syscall (linux-386-cgo), type SocketControlMessage struct, Data []uint8
 pkg syscall (linux-386-cgo), type SocketControlMessage struct, Header Cmsghdr
 pkg syscall (linux-386-cgo), type Stat_t struct
 pkg syscall (linux-386-cgo), type Stat_t struct, Atim Timespec
@@ -17324,8 +21447,8 @@ pkg syscall (linux-386-cgo), type Stat_t struct, Ino uint64
 pkg syscall (linux-386-cgo), type Stat_t struct, Mode uint32
 pkg syscall (linux-386-cgo), type Stat_t struct, Mtim Timespec
 pkg syscall (linux-386-cgo), type Stat_t struct, Nlink uint32
-pkg syscall (linux-386-cgo), type Stat_t struct, Pad_cgo_0 [2]byte
-pkg syscall (linux-386-cgo), type Stat_t struct, Pad_cgo_1 [2]byte
+pkg syscall (linux-386-cgo), type Stat_t struct, Pad_cgo_0 [2]uint8
+pkg syscall (linux-386-cgo), type Stat_t struct, Pad_cgo_1 [2]uint8
 pkg syscall (linux-386-cgo), type Stat_t struct, Rdev uint64
 pkg syscall (linux-386-cgo), type Stat_t struct, Size int64
 pkg syscall (linux-386-cgo), type Stat_t struct, Uid uint32
@@ -17377,7 +21500,7 @@ pkg syscall (linux-386-cgo), type Termios struct, Lflag uint32
 pkg syscall (linux-386-cgo), type Termios struct, Line uint8
 pkg syscall (linux-386-cgo), type Termios struct, Oflag uint32
 pkg syscall (linux-386-cgo), type Termios struct, Ospeed uint32
-pkg syscall (linux-386-cgo), type Termios struct, Pad_cgo_0 [3]byte
+pkg syscall (linux-386-cgo), type Termios struct, Pad_cgo_0 [3]uint8
 pkg syscall (linux-386-cgo), type Time_t int32
 pkg syscall (linux-386-cgo), type Timespec struct, Nsec int32
 pkg syscall (linux-386-cgo), type Timespec struct, Sec int32
@@ -17394,7 +21517,7 @@ pkg syscall (linux-386-cgo), type Timex struct, Jitter int32
 pkg syscall (linux-386-cgo), type Timex struct, Maxerror int32
 pkg syscall (linux-386-cgo), type Timex struct, Modes uint32
 pkg syscall (linux-386-cgo), type Timex struct, Offset int32
-pkg syscall (linux-386-cgo), type Timex struct, Pad_cgo_0 [44]byte
+pkg syscall (linux-386-cgo), type Timex struct, Pad_cgo_0 [44]uint8
 pkg syscall (linux-386-cgo), type Timex struct, Ppsfreq int32
 pkg syscall (linux-386-cgo), type Timex struct, Precision int32
 pkg syscall (linux-386-cgo), type Timex struct, Shift int32
@@ -17620,6 +21743,7 @@ pkg syscall (linux-amd64), const DT_WHT ideal-int
 pkg syscall (linux-amd64), const EADV Errno
 pkg syscall (linux-amd64), const EBADE Errno
 pkg syscall (linux-amd64), const EBADFD Errno
+pkg syscall (linux-amd64), const EBADMSG Errno
 pkg syscall (linux-amd64), const EBADR Errno
 pkg syscall (linux-amd64), const EBADRQC Errno
 pkg syscall (linux-amd64), const EBADSLT Errno
@@ -17650,15 +21774,22 @@ pkg syscall (linux-amd64), const ELIBMAX Errno
 pkg syscall (linux-amd64), const ELIBSCN Errno
 pkg syscall (linux-amd64), const ELNRNG Errno
 pkg syscall (linux-amd64), const EMEDIUMTYPE Errno
+pkg syscall (linux-amd64), const EMULTIHOP Errno
 pkg syscall (linux-amd64), const ENAVAIL Errno
 pkg syscall (linux-amd64), const ENOANO Errno
 pkg syscall (linux-amd64), const ENOCSI Errno
+pkg syscall (linux-amd64), const ENODATA Errno
 pkg syscall (linux-amd64), const ENOKEY Errno
+pkg syscall (linux-amd64), const ENOLINK Errno
 pkg syscall (linux-amd64), const ENOMEDIUM Errno
 pkg syscall (linux-amd64), const ENONET Errno
 pkg syscall (linux-amd64), const ENOPKG Errno
+pkg syscall (linux-amd64), const ENOSR Errno
+pkg syscall (linux-amd64), const ENOSTR Errno
 pkg syscall (linux-amd64), const ENOTNAM Errno
+pkg syscall (linux-amd64), const ENOTRECOVERABLE Errno
 pkg syscall (linux-amd64), const ENOTUNIQ Errno
+pkg syscall (linux-amd64), const EOWNERDEAD Errno
 pkg syscall (linux-amd64), const EPOLLERR ideal-int
 pkg syscall (linux-amd64), const EPOLLET ideal-int
 pkg syscall (linux-amd64), const EPOLLHUP ideal-int
@@ -17677,6 +21808,7 @@ pkg syscall (linux-amd64), const EPOLL_CTL_ADD ideal-int
 pkg syscall (linux-amd64), const EPOLL_CTL_DEL ideal-int
 pkg syscall (linux-amd64), const EPOLL_CTL_MOD ideal-int
 pkg syscall (linux-amd64), const EPOLL_NONBLOCK ideal-int
+pkg syscall (linux-amd64), const EPROTO Errno
 pkg syscall (linux-amd64), const EREMCHG Errno
 pkg syscall (linux-amd64), const EREMOTEIO Errno
 pkg syscall (linux-amd64), const ERESTART Errno
@@ -17747,6 +21879,7 @@ pkg syscall (linux-amd64), const ETH_P_TR_802_2 ideal-int
 pkg syscall (linux-amd64), const ETH_P_WAN_PPP ideal-int
 pkg syscall (linux-amd64), const ETH_P_WCCP ideal-int
 pkg syscall (linux-amd64), const ETH_P_X25 ideal-int
+pkg syscall (linux-amd64), const ETIME Errno
 pkg syscall (linux-amd64), const EUCLEAN Errno
 pkg syscall (linux-amd64), const EUNATCH Errno
 pkg syscall (linux-amd64), const EXFULL Errno
@@ -18927,6 +23060,7 @@ pkg syscall (linux-amd64), const S_IRWXO ideal-int
 pkg syscall (linux-amd64), const S_IRWXU ideal-int
 pkg syscall (linux-amd64), const S_IWGRP ideal-int
 pkg syscall (linux-amd64), const S_IWOTH ideal-int
+pkg syscall (linux-amd64), const S_IWRITE ideal-int
 pkg syscall (linux-amd64), const S_IXGRP ideal-int
 pkg syscall (linux-amd64), const S_IXOTH ideal-int
 pkg syscall (linux-amd64), const SizeofCmsghdr ideal-int
@@ -19122,19 +23256,19 @@ pkg syscall (linux-amd64), func Fsync(int) error
 pkg syscall (linux-amd64), func Ftruncate(int, int64) error
 pkg syscall (linux-amd64), func Futimes(int, []Timeval) error
 pkg syscall (linux-amd64), func Futimesat(int, string, []Timeval) error
-pkg syscall (linux-amd64), func Getcwd([]byte) (int, error)
-pkg syscall (linux-amd64), func Getdents(int, []byte) (int, error)
+pkg syscall (linux-amd64), func Getcwd([]uint8) (int, error)
+pkg syscall (linux-amd64), func Getdents(int, []uint8) (int, error)
 pkg syscall (linux-amd64), func Getpeername(int) (Sockaddr, error)
 pkg syscall (linux-amd64), func Getpgid(int) (int, error)
 pkg syscall (linux-amd64), func Getpgrp() int
 pkg syscall (linux-amd64), func Getrlimit(int, *Rlimit) error
 pkg syscall (linux-amd64), func Getrusage(int, *Rusage) error
 pkg syscall (linux-amd64), func Getsockname(int) (Sockaddr, error)
-pkg syscall (linux-amd64), func GetsockoptIPMreq(int) (*IPMreq, error)
-pkg syscall (linux-amd64), func GetsockoptIPMreqn(int) (*IPMreqn, error)
-pkg syscall (linux-amd64), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
-pkg syscall (linux-amd64), func GetsockoptInet4Addr(int) ([4]byte, error)
-pkg syscall (linux-amd64), func GetsockoptInt(int) (int, error)
+pkg syscall (linux-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (linux-amd64), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (linux-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (linux-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (linux-amd64), func GetsockoptInt(int, int, int) (int, error)
 pkg syscall (linux-amd64), func Gettid() int
 pkg syscall (linux-amd64), func InotifyAddWatch(int, string, uint32) (int, error)
 pkg syscall (linux-amd64), func InotifyInit() (int, error)
@@ -19143,76 +23277,74 @@ pkg syscall (linux-amd64), func InotifyRmWatch(int, uint32) (int, error)
 pkg syscall (linux-amd64), func Ioperm(int, int, int) error
 pkg syscall (linux-amd64), func Iopl(int) error
 pkg syscall (linux-amd64), func Kill(int, Signal) error
-pkg syscall (linux-amd64), func Klogctl(int, []byte) (int, error)
-pkg syscall (linux-amd64), func Link(string, string) error
+pkg syscall (linux-amd64), func Klogctl(int, []uint8) (int, error)
 pkg syscall (linux-amd64), func Listen(int, int) error
-pkg syscall (linux-amd64), func LsfJump(int) *SockFilter
-pkg syscall (linux-amd64), func LsfSocket(int) (int, error)
-pkg syscall (linux-amd64), func LsfStmt(int) *SockFilter
+pkg syscall (linux-amd64), func LsfJump(int, int, int, int) *SockFilter
+pkg syscall (linux-amd64), func LsfSocket(int, int) (int, error)
+pkg syscall (linux-amd64), func LsfStmt(int, int) *SockFilter
 pkg syscall (linux-amd64), func Lstat(string, *Stat_t) error
-pkg syscall (linux-amd64), func Madvise([]byte, int) error
+pkg syscall (linux-amd64), func Madvise([]uint8, int) error
 pkg syscall (linux-amd64), func Mkdirat(int, string, uint32) error
 pkg syscall (linux-amd64), func Mkfifo(string, uint32) error
 pkg syscall (linux-amd64), func Mknod(string, uint32, int) error
 pkg syscall (linux-amd64), func Mknodat(int, string, uint32, int) error
-pkg syscall (linux-amd64), func Mlock([]byte) error
+pkg syscall (linux-amd64), func Mlock([]uint8) error
 pkg syscall (linux-amd64), func Mlockall(int) error
-pkg syscall (linux-amd64), func Mmap(int, int64, int, int, int) ([]byte, error)
+pkg syscall (linux-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error)
 pkg syscall (linux-amd64), func Mount(string, string, string, uintptr, string) error
-pkg syscall (linux-amd64), func Mprotect([]byte, int) error
-pkg syscall (linux-amd64), func Munlock([]byte) error
+pkg syscall (linux-amd64), func Mprotect([]uint8, int) error
+pkg syscall (linux-amd64), func Munlock([]uint8) error
 pkg syscall (linux-amd64), func Munlockall() error
-pkg syscall (linux-amd64), func Munmap([]byte) error
+pkg syscall (linux-amd64), func Munmap([]uint8) error
 pkg syscall (linux-amd64), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (linux-amd64), func NetlinkRIB(int) ([]byte, error)
+pkg syscall (linux-amd64), func NetlinkRIB(int, int) ([]uint8, error)
 pkg syscall (linux-amd64), func NsecToTimespec(int64) Timespec
 pkg syscall (linux-amd64), func Open(string, int, uint32) (int, error)
 pkg syscall (linux-amd64), func Openat(int, string, int, uint32) (int, error)
-pkg syscall (linux-amd64), func ParseDirent([]byte, int, []string) (int, int, []string)
-pkg syscall (linux-amd64), func ParseNetlinkMessage([]byte) ([]NetlinkMessage, error)
+pkg syscall (linux-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (linux-amd64), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error)
 pkg syscall (linux-amd64), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error)
-pkg syscall (linux-amd64), func ParseSocketControlMessage([]byte) ([]SocketControlMessage, error)
+pkg syscall (linux-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
 pkg syscall (linux-amd64), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error)
 pkg syscall (linux-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error)
 pkg syscall (linux-amd64), func Pause() error
 pkg syscall (linux-amd64), func Pipe([]int) error
 pkg syscall (linux-amd64), func PivotRoot(string, string) error
-pkg syscall (linux-amd64), func Pread(int, []byte, int64) (int, error)
+pkg syscall (linux-amd64), func Pread(int, []uint8, int64) (int, error)
 pkg syscall (linux-amd64), func PtraceAttach(int) error
 pkg syscall (linux-amd64), func PtraceCont(int, int) error
 pkg syscall (linux-amd64), func PtraceDetach(int) error
 pkg syscall (linux-amd64), func PtraceGetEventMsg(int) (uint, error)
 pkg syscall (linux-amd64), func PtraceGetRegs(int, *PtraceRegs) error
-pkg syscall (linux-amd64), func PtracePeekData(int, uintptr, []byte) (int, error)
-pkg syscall (linux-amd64), func PtracePeekText(int, uintptr, []byte) (int, error)
-pkg syscall (linux-amd64), func PtracePokeData(int, uintptr, []byte) (int, error)
-pkg syscall (linux-amd64), func PtracePokeText(int, uintptr, []byte) (int, error)
+pkg syscall (linux-amd64), func PtracePeekData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-amd64), func PtracePeekText(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-amd64), func PtracePokeData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-amd64), func PtracePokeText(int, uintptr, []uint8) (int, error)
 pkg syscall (linux-amd64), func PtraceSetOptions(int, int) error
 pkg syscall (linux-amd64), func PtraceSetRegs(int, *PtraceRegs) error
 pkg syscall (linux-amd64), func PtraceSingleStep(int) error
-pkg syscall (linux-amd64), func Pwrite(int, []byte, int64) (int, error)
-pkg syscall (linux-amd64), func RawSyscall(uintptr) (uintptr, Errno)
-pkg syscall (linux-amd64), func RawSyscall6(uintptr) (uintptr, Errno)
-pkg syscall (linux-amd64), func Read(int, []byte) (int, error)
-pkg syscall (linux-amd64), func ReadDirent(int, []byte) (int, error)
+pkg syscall (linux-amd64), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (linux-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-amd64), func Read(int, []uint8) (int, error)
+pkg syscall (linux-amd64), func ReadDirent(int, []uint8) (int, error)
 pkg syscall (linux-amd64), func Reboot(int) error
-pkg syscall (linux-amd64), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
-pkg syscall (linux-amd64), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
-pkg syscall (linux-amd64), func Rename(string, string) error
+pkg syscall (linux-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (linux-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
 pkg syscall (linux-amd64), func Renameat(int, string, int, string) error
 pkg syscall (linux-amd64), func Seek(int, int64, int) (int64, error)
 pkg syscall (linux-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error)
 pkg syscall (linux-amd64), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (linux-amd64), func Sendmsg(int, []byte, Sockaddr, int) error
-pkg syscall (linux-amd64), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (linux-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (linux-amd64), func Sendto(int, []uint8, int, Sockaddr) error
 pkg syscall (linux-amd64), func SetLsfPromisc(string, bool) error
 pkg syscall (linux-amd64), func SetNonblock(int, bool) error
-pkg syscall (linux-amd64), func Setdomainname([]byte) error
+pkg syscall (linux-amd64), func Setdomainname([]uint8) error
 pkg syscall (linux-amd64), func Setfsgid(int) error
 pkg syscall (linux-amd64), func Setfsuid(int) error
 pkg syscall (linux-amd64), func Setgid(int) error
 pkg syscall (linux-amd64), func Setgroups([]int) error
-pkg syscall (linux-amd64), func Sethostname([]byte) error
+pkg syscall (linux-amd64), func Sethostname([]uint8) error
 pkg syscall (linux-amd64), func Setpgid(int, int) error
 pkg syscall (linux-amd64), func Setregid(int, int) error
 pkg syscall (linux-amd64), func Setresgid(int, int, int) error
@@ -19220,26 +23352,27 @@ pkg syscall (linux-amd64), func Setresuid(int, int, int) error
 pkg syscall (linux-amd64), func Setreuid(int, int) error
 pkg syscall (linux-amd64), func Setrlimit(int, *Rlimit) error
 pkg syscall (linux-amd64), func Setsid() (int, error)
-pkg syscall (linux-amd64), func SetsockoptIPMreq(int, *IPMreq) error
-pkg syscall (linux-amd64), func SetsockoptIPMreqn(int, *IPMreqn) error
-pkg syscall (linux-amd64), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
-pkg syscall (linux-amd64), func SetsockoptInet4Addr(int, [4]byte) error
-pkg syscall (linux-amd64), func SetsockoptInt(int, int) error
-pkg syscall (linux-amd64), func SetsockoptLinger(int, *Linger) error
-pkg syscall (linux-amd64), func SetsockoptString(int, string) error
-pkg syscall (linux-amd64), func SetsockoptTimeval(int, *Timeval) error
+pkg syscall (linux-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (linux-amd64), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (linux-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (linux-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (linux-amd64), func SetsockoptInt(int, int, int, int) error
+pkg syscall (linux-amd64), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (linux-amd64), func SetsockoptString(int, int, int, string) error
+pkg syscall (linux-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error
 pkg syscall (linux-amd64), func Settimeofday(*Timeval) error
 pkg syscall (linux-amd64), func Setuid(int) error
 pkg syscall (linux-amd64), func Shutdown(int, int) error
-pkg syscall (linux-amd64), func Socket(int) (int, error)
-pkg syscall (linux-amd64), func Socketpair(int) ([2]int, error)
+pkg syscall (linux-amd64), func Socket(int, int, int) (int, error)
+pkg syscall (linux-amd64), func Socketpair(int, int, int) ([2]int, error)
 pkg syscall (linux-amd64), func Splice(int, *int64, int, *int64, int, int) (int64, error)
 pkg syscall (linux-amd64), func Stat(string, *Stat_t) error
 pkg syscall (linux-amd64), func Statfs(string, *Statfs_t) error
-pkg syscall (linux-amd64), func StringSlicePtr([]string) []*byte
-pkg syscall (linux-amd64), func Symlink(string, string) error
+pkg syscall (linux-amd64), func StringSlicePtr([]string) []*uint8
 pkg syscall (linux-amd64), func Sync()
 pkg syscall (linux-amd64), func SyncFileRange(int, int64, int64, int) error
+pkg syscall (linux-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
 pkg syscall (linux-amd64), func Sysinfo(*Sysinfo_t) error
 pkg syscall (linux-amd64), func Tee(int, int, int, int) (int64, error)
 pkg syscall (linux-amd64), func Tgkill(int, int, Signal) error
@@ -19250,15 +23383,15 @@ pkg syscall (linux-amd64), func TimevalToNsec(Timeval) int64
 pkg syscall (linux-amd64), func Truncate(string, int64) error
 pkg syscall (linux-amd64), func Umask(int) int
 pkg syscall (linux-amd64), func Uname(*Utsname) error
-pkg syscall (linux-amd64), func UnixCredentials(*Ucred) []byte
-pkg syscall (linux-amd64), func UnixRights(...int) []byte
+pkg syscall (linux-amd64), func UnixCredentials(*Ucred) []uint8
+pkg syscall (linux-amd64), func UnixRights(...int) []uint8
 pkg syscall (linux-amd64), func Unlinkat(int, string) error
 pkg syscall (linux-amd64), func Unmount(string, int) error
 pkg syscall (linux-amd64), func Unshare(int) error
 pkg syscall (linux-amd64), func Ustat(int, *Ustat_t) error
 pkg syscall (linux-amd64), func Utime(string, *Utimbuf) error
 pkg syscall (linux-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (linux-amd64), func Write(int, []byte) (int, error)
+pkg syscall (linux-amd64), func Write(int, []uint8) (int, error)
 pkg syscall (linux-amd64), method (*Cmsghdr) SetLen(int)
 pkg syscall (linux-amd64), method (*Iovec) SetLen(int)
 pkg syscall (linux-amd64), method (*Msghdr) SetControllen(int)
@@ -19268,7 +23401,7 @@ pkg syscall (linux-amd64), type Cmsghdr struct
 pkg syscall (linux-amd64), type Cmsghdr struct, Len uint64
 pkg syscall (linux-amd64), type Cmsghdr struct, Level int32
 pkg syscall (linux-amd64), type Cmsghdr struct, Type int32
-pkg syscall (linux-amd64), type Cmsghdr struct, X__cmsg_data [0]byte
+pkg syscall (linux-amd64), type Cmsghdr struct, X__cmsg_data [0]uint8
 pkg syscall (linux-amd64), type Credential struct
 pkg syscall (linux-amd64), type Credential struct, Gid uint32
 pkg syscall (linux-amd64), type Credential struct, Groups []uint32
@@ -19277,7 +23410,7 @@ pkg syscall (linux-amd64), type Dirent struct
 pkg syscall (linux-amd64), type Dirent struct, Ino uint64
 pkg syscall (linux-amd64), type Dirent struct, Name [256]int8
 pkg syscall (linux-amd64), type Dirent struct, Off int64
-pkg syscall (linux-amd64), type Dirent struct, Pad_cgo_0 [5]byte
+pkg syscall (linux-amd64), type Dirent struct, Pad_cgo_0 [5]uint8
 pkg syscall (linux-amd64), type Dirent struct, Reclen uint16
 pkg syscall (linux-amd64), type Dirent struct, Type uint8
 pkg syscall (linux-amd64), type EpollEvent struct
@@ -19289,9 +23422,9 @@ pkg syscall (linux-amd64), type FdSet struct, Bits [16]int64
 pkg syscall (linux-amd64), type Fsid struct
 pkg syscall (linux-amd64), type Fsid struct, X__val [2]int32
 pkg syscall (linux-amd64), type IPMreqn struct
-pkg syscall (linux-amd64), type IPMreqn struct, Address [4]byte
+pkg syscall (linux-amd64), type IPMreqn struct, Address [4]uint8
 pkg syscall (linux-amd64), type IPMreqn struct, Ifindex int32
-pkg syscall (linux-amd64), type IPMreqn struct, Multiaddr [4]byte
+pkg syscall (linux-amd64), type IPMreqn struct, Multiaddr [4]uint8
 pkg syscall (linux-amd64), type IfAddrmsg struct
 pkg syscall (linux-amd64), type IfAddrmsg struct, Family uint8
 pkg syscall (linux-amd64), type IfAddrmsg struct, Flags uint8
@@ -19306,37 +23439,37 @@ pkg syscall (linux-amd64), type IfInfomsg struct, Index int32
 pkg syscall (linux-amd64), type IfInfomsg struct, Type uint16
 pkg syscall (linux-amd64), type IfInfomsg struct, X__ifi_pad uint8
 pkg syscall (linux-amd64), type Inet4Pktinfo struct
-pkg syscall (linux-amd64), type Inet4Pktinfo struct, Addr [4]byte
+pkg syscall (linux-amd64), type Inet4Pktinfo struct, Addr [4]uint8
 pkg syscall (linux-amd64), type Inet4Pktinfo struct, Ifindex int32
-pkg syscall (linux-amd64), type Inet4Pktinfo struct, Spec_dst [4]byte
+pkg syscall (linux-amd64), type Inet4Pktinfo struct, Spec_dst [4]uint8
 pkg syscall (linux-amd64), type Inet6Pktinfo struct
-pkg syscall (linux-amd64), type Inet6Pktinfo struct, Addr [16]byte
+pkg syscall (linux-amd64), type Inet6Pktinfo struct, Addr [16]uint8
 pkg syscall (linux-amd64), type Inet6Pktinfo struct, Ifindex uint32
 pkg syscall (linux-amd64), type InotifyEvent struct
 pkg syscall (linux-amd64), type InotifyEvent struct, Cookie uint32
 pkg syscall (linux-amd64), type InotifyEvent struct, Len uint32
 pkg syscall (linux-amd64), type InotifyEvent struct, Mask uint32
-pkg syscall (linux-amd64), type InotifyEvent struct, Name [0]byte
+pkg syscall (linux-amd64), type InotifyEvent struct, Name [0]uint8
 pkg syscall (linux-amd64), type InotifyEvent struct, Wd int32
 pkg syscall (linux-amd64), type Iovec struct
-pkg syscall (linux-amd64), type Iovec struct, Base *byte
+pkg syscall (linux-amd64), type Iovec struct, Base *uint8
 pkg syscall (linux-amd64), type Iovec struct, Len uint64
 pkg syscall (linux-amd64), type Msghdr struct
-pkg syscall (linux-amd64), type Msghdr struct, Control *byte
+pkg syscall (linux-amd64), type Msghdr struct, Control *uint8
 pkg syscall (linux-amd64), type Msghdr struct, Controllen uint64
 pkg syscall (linux-amd64), type Msghdr struct, Flags int32
 pkg syscall (linux-amd64), type Msghdr struct, Iov *Iovec
 pkg syscall (linux-amd64), type Msghdr struct, Iovlen uint64
-pkg syscall (linux-amd64), type Msghdr struct, Name *byte
+pkg syscall (linux-amd64), type Msghdr struct, Name *uint8
 pkg syscall (linux-amd64), type Msghdr struct, Namelen uint32
-pkg syscall (linux-amd64), type Msghdr struct, Pad_cgo_0 [4]byte
-pkg syscall (linux-amd64), type Msghdr struct, Pad_cgo_1 [4]byte
+pkg syscall (linux-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8
+pkg syscall (linux-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8
 pkg syscall (linux-amd64), type NetlinkMessage struct
-pkg syscall (linux-amd64), type NetlinkMessage struct, Data []byte
+pkg syscall (linux-amd64), type NetlinkMessage struct, Data []uint8
 pkg syscall (linux-amd64), type NetlinkMessage struct, Header NlMsghdr
 pkg syscall (linux-amd64), type NetlinkRouteAttr struct
 pkg syscall (linux-amd64), type NetlinkRouteAttr struct, Attr RtAttr
-pkg syscall (linux-amd64), type NetlinkRouteAttr struct, Value []byte
+pkg syscall (linux-amd64), type NetlinkRouteAttr struct, Value []uint8
 pkg syscall (linux-amd64), type NetlinkRouteRequest struct
 pkg syscall (linux-amd64), type NetlinkRouteRequest struct, Data RtGenmsg
 pkg syscall (linux-amd64), type NetlinkRouteRequest struct, Header NlMsghdr
@@ -19380,12 +23513,13 @@ pkg syscall (linux-amd64), type PtraceRegs struct, Rip uint64
 pkg syscall (linux-amd64), type PtraceRegs struct, Rsi uint64
 pkg syscall (linux-amd64), type PtraceRegs struct, Rsp uint64
 pkg syscall (linux-amd64), type PtraceRegs struct, Ss uint64
+pkg syscall (linux-amd64), type RawSockaddr struct, Data [14]int8
 pkg syscall (linux-amd64), type RawSockaddr struct, Family uint16
 pkg syscall (linux-amd64), type RawSockaddrAny struct, Pad [96]int8
 pkg syscall (linux-amd64), type RawSockaddrInet4 struct, Family uint16
 pkg syscall (linux-amd64), type RawSockaddrInet4 struct, Zero [8]uint8
 pkg syscall (linux-amd64), type RawSockaddrInet6 struct
-pkg syscall (linux-amd64), type RawSockaddrInet6 struct, Addr [16]byte
+pkg syscall (linux-amd64), type RawSockaddrInet6 struct, Addr [16]uint8
 pkg syscall (linux-amd64), type RawSockaddrInet6 struct, Family uint16
 pkg syscall (linux-amd64), type RawSockaddrInet6 struct, Flowinfo uint32
 pkg syscall (linux-amd64), type RawSockaddrInet6 struct, Port uint16
@@ -19453,9 +23587,9 @@ pkg syscall (linux-amd64), type SockFilter struct, K uint32
 pkg syscall (linux-amd64), type SockFprog struct
 pkg syscall (linux-amd64), type SockFprog struct, Filter *SockFilter
 pkg syscall (linux-amd64), type SockFprog struct, Len uint16
-pkg syscall (linux-amd64), type SockFprog struct, Pad_cgo_0 [6]byte
+pkg syscall (linux-amd64), type SockFprog struct, Pad_cgo_0 [6]uint8
 pkg syscall (linux-amd64), type SockaddrLinklayer struct
-pkg syscall (linux-amd64), type SockaddrLinklayer struct, Addr [8]byte
+pkg syscall (linux-amd64), type SockaddrLinklayer struct, Addr [8]uint8
 pkg syscall (linux-amd64), type SockaddrLinklayer struct, Halen uint8
 pkg syscall (linux-amd64), type SockaddrLinklayer struct, Hatype uint16
 pkg syscall (linux-amd64), type SockaddrLinklayer struct, Ifindex int
@@ -19467,7 +23601,7 @@ pkg syscall (linux-amd64), type SockaddrNetlink struct, Groups uint32
 pkg syscall (linux-amd64), type SockaddrNetlink struct, Pad uint16
 pkg syscall (linux-amd64), type SockaddrNetlink struct, Pid uint32
 pkg syscall (linux-amd64), type SocketControlMessage struct
-pkg syscall (linux-amd64), type SocketControlMessage struct, Data []byte
+pkg syscall (linux-amd64), type SocketControlMessage struct, Data []uint8
 pkg syscall (linux-amd64), type SocketControlMessage struct, Header Cmsghdr
 pkg syscall (linux-amd64), type Stat_t struct
 pkg syscall (linux-amd64), type Stat_t struct, Atim Timespec
@@ -19513,8 +23647,8 @@ pkg syscall (linux-amd64), type Sysinfo_t struct, Freeram uint64
 pkg syscall (linux-amd64), type Sysinfo_t struct, Freeswap uint64
 pkg syscall (linux-amd64), type Sysinfo_t struct, Loads [3]uint64
 pkg syscall (linux-amd64), type Sysinfo_t struct, Pad uint16
-pkg syscall (linux-amd64), type Sysinfo_t struct, Pad_cgo_0 [4]byte
-pkg syscall (linux-amd64), type Sysinfo_t struct, Pad_cgo_1 [4]byte
+pkg syscall (linux-amd64), type Sysinfo_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (linux-amd64), type Sysinfo_t struct, Pad_cgo_1 [4]uint8
 pkg syscall (linux-amd64), type Sysinfo_t struct, Procs uint16
 pkg syscall (linux-amd64), type Sysinfo_t struct, Sharedram uint64
 pkg syscall (linux-amd64), type Sysinfo_t struct, Totalhigh uint64
@@ -19522,7 +23656,7 @@ pkg syscall (linux-amd64), type Sysinfo_t struct, Totalram uint64
 pkg syscall (linux-amd64), type Sysinfo_t struct, Totalswap uint64
 pkg syscall (linux-amd64), type Sysinfo_t struct, Unit uint32
 pkg syscall (linux-amd64), type Sysinfo_t struct, Uptime int64
-pkg syscall (linux-amd64), type Sysinfo_t struct, X_f [0]byte
+pkg syscall (linux-amd64), type Sysinfo_t struct, X_f [0]uint8
 pkg syscall (linux-amd64), type Termios struct
 pkg syscall (linux-amd64), type Termios struct, Cc [32]uint8
 pkg syscall (linux-amd64), type Termios struct, Cflag uint32
@@ -19532,7 +23666,7 @@ pkg syscall (linux-amd64), type Termios struct, Lflag uint32
 pkg syscall (linux-amd64), type Termios struct, Line uint8
 pkg syscall (linux-amd64), type Termios struct, Oflag uint32
 pkg syscall (linux-amd64), type Termios struct, Ospeed uint32
-pkg syscall (linux-amd64), type Termios struct, Pad_cgo_0 [3]byte
+pkg syscall (linux-amd64), type Termios struct, Pad_cgo_0 [3]uint8
 pkg syscall (linux-amd64), type Time_t int64
 pkg syscall (linux-amd64), type Timespec struct, Nsec int64
 pkg syscall (linux-amd64), type Timespec struct, Sec int64
@@ -19549,10 +23683,10 @@ pkg syscall (linux-amd64), type Timex struct, Jitter int64
 pkg syscall (linux-amd64), type Timex struct, Maxerror int64
 pkg syscall (linux-amd64), type Timex struct, Modes uint32
 pkg syscall (linux-amd64), type Timex struct, Offset int64
-pkg syscall (linux-amd64), type Timex struct, Pad_cgo_0 [4]byte
-pkg syscall (linux-amd64), type Timex struct, Pad_cgo_1 [4]byte
-pkg syscall (linux-amd64), type Timex struct, Pad_cgo_2 [4]byte
-pkg syscall (linux-amd64), type Timex struct, Pad_cgo_3 [44]byte
+pkg syscall (linux-amd64), type Timex struct, Pad_cgo_0 [4]uint8
+pkg syscall (linux-amd64), type Timex struct, Pad_cgo_1 [4]uint8
+pkg syscall (linux-amd64), type Timex struct, Pad_cgo_2 [4]uint8
+pkg syscall (linux-amd64), type Timex struct, Pad_cgo_3 [44]uint8
 pkg syscall (linux-amd64), type Timex struct, Ppsfreq int64
 pkg syscall (linux-amd64), type Timex struct, Precision int64
 pkg syscall (linux-amd64), type Timex struct, Shift int32
@@ -19575,8 +23709,8 @@ pkg syscall (linux-amd64), type Ucred struct, Uid uint32
 pkg syscall (linux-amd64), type Ustat_t struct
 pkg syscall (linux-amd64), type Ustat_t struct, Fname [6]int8
 pkg syscall (linux-amd64), type Ustat_t struct, Fpack [6]int8
-pkg syscall (linux-amd64), type Ustat_t struct, Pad_cgo_0 [4]byte
-pkg syscall (linux-amd64), type Ustat_t struct, Pad_cgo_1 [4]byte
+pkg syscall (linux-amd64), type Ustat_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (linux-amd64), type Ustat_t struct, Pad_cgo_1 [4]uint8
 pkg syscall (linux-amd64), type Ustat_t struct, Tfree int32
 pkg syscall (linux-amd64), type Ustat_t struct, Tinode uint64
 pkg syscall (linux-amd64), type Utimbuf struct
@@ -19780,6 +23914,7 @@ pkg syscall (linux-amd64-cgo), const DT_WHT ideal-int
 pkg syscall (linux-amd64-cgo), const EADV Errno
 pkg syscall (linux-amd64-cgo), const EBADE Errno
 pkg syscall (linux-amd64-cgo), const EBADFD Errno
+pkg syscall (linux-amd64-cgo), const EBADMSG Errno
 pkg syscall (linux-amd64-cgo), const EBADR Errno
 pkg syscall (linux-amd64-cgo), const EBADRQC Errno
 pkg syscall (linux-amd64-cgo), const EBADSLT Errno
@@ -19810,15 +23945,22 @@ pkg syscall (linux-amd64-cgo), const ELIBMAX Errno
 pkg syscall (linux-amd64-cgo), const ELIBSCN Errno
 pkg syscall (linux-amd64-cgo), const ELNRNG Errno
 pkg syscall (linux-amd64-cgo), const EMEDIUMTYPE Errno
+pkg syscall (linux-amd64-cgo), const EMULTIHOP Errno
 pkg syscall (linux-amd64-cgo), const ENAVAIL Errno
 pkg syscall (linux-amd64-cgo), const ENOANO Errno
 pkg syscall (linux-amd64-cgo), const ENOCSI Errno
+pkg syscall (linux-amd64-cgo), const ENODATA Errno
 pkg syscall (linux-amd64-cgo), const ENOKEY Errno
+pkg syscall (linux-amd64-cgo), const ENOLINK Errno
 pkg syscall (linux-amd64-cgo), const ENOMEDIUM Errno
 pkg syscall (linux-amd64-cgo), const ENONET Errno
 pkg syscall (linux-amd64-cgo), const ENOPKG Errno
+pkg syscall (linux-amd64-cgo), const ENOSR Errno
+pkg syscall (linux-amd64-cgo), const ENOSTR Errno
 pkg syscall (linux-amd64-cgo), const ENOTNAM Errno
+pkg syscall (linux-amd64-cgo), const ENOTRECOVERABLE Errno
 pkg syscall (linux-amd64-cgo), const ENOTUNIQ Errno
+pkg syscall (linux-amd64-cgo), const EOWNERDEAD Errno
 pkg syscall (linux-amd64-cgo), const EPOLLERR ideal-int
 pkg syscall (linux-amd64-cgo), const EPOLLET ideal-int
 pkg syscall (linux-amd64-cgo), const EPOLLHUP ideal-int
@@ -19837,6 +23979,7 @@ pkg syscall (linux-amd64-cgo), const EPOLL_CTL_ADD ideal-int
 pkg syscall (linux-amd64-cgo), const EPOLL_CTL_DEL ideal-int
 pkg syscall (linux-amd64-cgo), const EPOLL_CTL_MOD ideal-int
 pkg syscall (linux-amd64-cgo), const EPOLL_NONBLOCK ideal-int
+pkg syscall (linux-amd64-cgo), const EPROTO Errno
 pkg syscall (linux-amd64-cgo), const EREMCHG Errno
 pkg syscall (linux-amd64-cgo), const EREMOTEIO Errno
 pkg syscall (linux-amd64-cgo), const ERESTART Errno
@@ -19907,6 +24050,7 @@ pkg syscall (linux-amd64-cgo), const ETH_P_TR_802_2 ideal-int
 pkg syscall (linux-amd64-cgo), const ETH_P_WAN_PPP ideal-int
 pkg syscall (linux-amd64-cgo), const ETH_P_WCCP ideal-int
 pkg syscall (linux-amd64-cgo), const ETH_P_X25 ideal-int
+pkg syscall (linux-amd64-cgo), const ETIME Errno
 pkg syscall (linux-amd64-cgo), const EUCLEAN Errno
 pkg syscall (linux-amd64-cgo), const EUNATCH Errno
 pkg syscall (linux-amd64-cgo), const EXFULL Errno
@@ -21087,6 +25231,7 @@ pkg syscall (linux-amd64-cgo), const S_IRWXO ideal-int
 pkg syscall (linux-amd64-cgo), const S_IRWXU ideal-int
 pkg syscall (linux-amd64-cgo), const S_IWGRP ideal-int
 pkg syscall (linux-amd64-cgo), const S_IWOTH ideal-int
+pkg syscall (linux-amd64-cgo), const S_IWRITE ideal-int
 pkg syscall (linux-amd64-cgo), const S_IXGRP ideal-int
 pkg syscall (linux-amd64-cgo), const S_IXOTH ideal-int
 pkg syscall (linux-amd64-cgo), const SizeofCmsghdr ideal-int
@@ -21282,19 +25427,19 @@ pkg syscall (linux-amd64-cgo), func Fsync(int) error
 pkg syscall (linux-amd64-cgo), func Ftruncate(int, int64) error
 pkg syscall (linux-amd64-cgo), func Futimes(int, []Timeval) error
 pkg syscall (linux-amd64-cgo), func Futimesat(int, string, []Timeval) error
-pkg syscall (linux-amd64-cgo), func Getcwd([]byte) (int, error)
-pkg syscall (linux-amd64-cgo), func Getdents(int, []byte) (int, error)
+pkg syscall (linux-amd64-cgo), func Getcwd([]uint8) (int, error)
+pkg syscall (linux-amd64-cgo), func Getdents(int, []uint8) (int, error)
 pkg syscall (linux-amd64-cgo), func Getpeername(int) (Sockaddr, error)
 pkg syscall (linux-amd64-cgo), func Getpgid(int) (int, error)
 pkg syscall (linux-amd64-cgo), func Getpgrp() int
 pkg syscall (linux-amd64-cgo), func Getrlimit(int, *Rlimit) error
 pkg syscall (linux-amd64-cgo), func Getrusage(int, *Rusage) error
 pkg syscall (linux-amd64-cgo), func Getsockname(int) (Sockaddr, error)
-pkg syscall (linux-amd64-cgo), func GetsockoptIPMreq(int) (*IPMreq, error)
-pkg syscall (linux-amd64-cgo), func GetsockoptIPMreqn(int) (*IPMreqn, error)
-pkg syscall (linux-amd64-cgo), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
-pkg syscall (linux-amd64-cgo), func GetsockoptInet4Addr(int) ([4]byte, error)
-pkg syscall (linux-amd64-cgo), func GetsockoptInt(int) (int, error)
+pkg syscall (linux-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (linux-amd64-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (linux-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (linux-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (linux-amd64-cgo), func GetsockoptInt(int, int, int) (int, error)
 pkg syscall (linux-amd64-cgo), func Gettid() int
 pkg syscall (linux-amd64-cgo), func InotifyAddWatch(int, string, uint32) (int, error)
 pkg syscall (linux-amd64-cgo), func InotifyInit() (int, error)
@@ -21303,76 +25448,74 @@ pkg syscall (linux-amd64-cgo), func InotifyRmWatch(int, uint32) (int, error)
 pkg syscall (linux-amd64-cgo), func Ioperm(int, int, int) error
 pkg syscall (linux-amd64-cgo), func Iopl(int) error
 pkg syscall (linux-amd64-cgo), func Kill(int, Signal) error
-pkg syscall (linux-amd64-cgo), func Klogctl(int, []byte) (int, error)
-pkg syscall (linux-amd64-cgo), func Link(string, string) error
+pkg syscall (linux-amd64-cgo), func Klogctl(int, []uint8) (int, error)
 pkg syscall (linux-amd64-cgo), func Listen(int, int) error
-pkg syscall (linux-amd64-cgo), func LsfJump(int) *SockFilter
-pkg syscall (linux-amd64-cgo), func LsfSocket(int) (int, error)
-pkg syscall (linux-amd64-cgo), func LsfStmt(int) *SockFilter
+pkg syscall (linux-amd64-cgo), func LsfJump(int, int, int, int) *SockFilter
+pkg syscall (linux-amd64-cgo), func LsfSocket(int, int) (int, error)
+pkg syscall (linux-amd64-cgo), func LsfStmt(int, int) *SockFilter
 pkg syscall (linux-amd64-cgo), func Lstat(string, *Stat_t) error
-pkg syscall (linux-amd64-cgo), func Madvise([]byte, int) error
+pkg syscall (linux-amd64-cgo), func Madvise([]uint8, int) error
 pkg syscall (linux-amd64-cgo), func Mkdirat(int, string, uint32) error
 pkg syscall (linux-amd64-cgo), func Mkfifo(string, uint32) error
 pkg syscall (linux-amd64-cgo), func Mknod(string, uint32, int) error
 pkg syscall (linux-amd64-cgo), func Mknodat(int, string, uint32, int) error
-pkg syscall (linux-amd64-cgo), func Mlock([]byte) error
+pkg syscall (linux-amd64-cgo), func Mlock([]uint8) error
 pkg syscall (linux-amd64-cgo), func Mlockall(int) error
-pkg syscall (linux-amd64-cgo), func Mmap(int, int64, int, int, int) ([]byte, error)
+pkg syscall (linux-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
 pkg syscall (linux-amd64-cgo), func Mount(string, string, string, uintptr, string) error
-pkg syscall (linux-amd64-cgo), func Mprotect([]byte, int) error
-pkg syscall (linux-amd64-cgo), func Munlock([]byte) error
+pkg syscall (linux-amd64-cgo), func Mprotect([]uint8, int) error
+pkg syscall (linux-amd64-cgo), func Munlock([]uint8) error
 pkg syscall (linux-amd64-cgo), func Munlockall() error
-pkg syscall (linux-amd64-cgo), func Munmap([]byte) error
+pkg syscall (linux-amd64-cgo), func Munmap([]uint8) error
 pkg syscall (linux-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error
-pkg syscall (linux-amd64-cgo), func NetlinkRIB(int) ([]byte, error)
+pkg syscall (linux-amd64-cgo), func NetlinkRIB(int, int) ([]uint8, error)
 pkg syscall (linux-amd64-cgo), func NsecToTimespec(int64) Timespec
 pkg syscall (linux-amd64-cgo), func Open(string, int, uint32) (int, error)
 pkg syscall (linux-amd64-cgo), func Openat(int, string, int, uint32) (int, error)
-pkg syscall (linux-amd64-cgo), func ParseDirent([]byte, int, []string) (int, int, []string)
-pkg syscall (linux-amd64-cgo), func ParseNetlinkMessage([]byte) ([]NetlinkMessage, error)
+pkg syscall (linux-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (linux-amd64-cgo), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error)
 pkg syscall (linux-amd64-cgo), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error)
-pkg syscall (linux-amd64-cgo), func ParseSocketControlMessage([]byte) ([]SocketControlMessage, error)
+pkg syscall (linux-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
 pkg syscall (linux-amd64-cgo), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error)
 pkg syscall (linux-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
 pkg syscall (linux-amd64-cgo), func Pause() error
 pkg syscall (linux-amd64-cgo), func Pipe([]int) error
 pkg syscall (linux-amd64-cgo), func PivotRoot(string, string) error
-pkg syscall (linux-amd64-cgo), func Pread(int, []byte, int64) (int, error)
+pkg syscall (linux-amd64-cgo), func Pread(int, []uint8, int64) (int, error)
 pkg syscall (linux-amd64-cgo), func PtraceAttach(int) error
 pkg syscall (linux-amd64-cgo), func PtraceCont(int, int) error
 pkg syscall (linux-amd64-cgo), func PtraceDetach(int) error
 pkg syscall (linux-amd64-cgo), func PtraceGetEventMsg(int) (uint, error)
 pkg syscall (linux-amd64-cgo), func PtraceGetRegs(int, *PtraceRegs) error
-pkg syscall (linux-amd64-cgo), func PtracePeekData(int, uintptr, []byte) (int, error)
-pkg syscall (linux-amd64-cgo), func PtracePeekText(int, uintptr, []byte) (int, error)
-pkg syscall (linux-amd64-cgo), func PtracePokeData(int, uintptr, []byte) (int, error)
-pkg syscall (linux-amd64-cgo), func PtracePokeText(int, uintptr, []byte) (int, error)
+pkg syscall (linux-amd64-cgo), func PtracePeekData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-amd64-cgo), func PtracePeekText(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-amd64-cgo), func PtracePokeData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-amd64-cgo), func PtracePokeText(int, uintptr, []uint8) (int, error)
 pkg syscall (linux-amd64-cgo), func PtraceSetOptions(int, int) error
 pkg syscall (linux-amd64-cgo), func PtraceSetRegs(int, *PtraceRegs) error
 pkg syscall (linux-amd64-cgo), func PtraceSingleStep(int) error
-pkg syscall (linux-amd64-cgo), func Pwrite(int, []byte, int64) (int, error)
-pkg syscall (linux-amd64-cgo), func RawSyscall(uintptr) (uintptr, Errno)
-pkg syscall (linux-amd64-cgo), func RawSyscall6(uintptr) (uintptr, Errno)
-pkg syscall (linux-amd64-cgo), func Read(int, []byte) (int, error)
-pkg syscall (linux-amd64-cgo), func ReadDirent(int, []byte) (int, error)
+pkg syscall (linux-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (linux-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-amd64-cgo), func Read(int, []uint8) (int, error)
+pkg syscall (linux-amd64-cgo), func ReadDirent(int, []uint8) (int, error)
 pkg syscall (linux-amd64-cgo), func Reboot(int) error
-pkg syscall (linux-amd64-cgo), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
-pkg syscall (linux-amd64-cgo), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
-pkg syscall (linux-amd64-cgo), func Rename(string, string) error
+pkg syscall (linux-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (linux-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
 pkg syscall (linux-amd64-cgo), func Renameat(int, string, int, string) error
 pkg syscall (linux-amd64-cgo), func Seek(int, int64, int) (int64, error)
 pkg syscall (linux-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error)
 pkg syscall (linux-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error)
-pkg syscall (linux-amd64-cgo), func Sendmsg(int, []byte, Sockaddr, int) error
-pkg syscall (linux-amd64-cgo), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (linux-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (linux-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error
 pkg syscall (linux-amd64-cgo), func SetLsfPromisc(string, bool) error
 pkg syscall (linux-amd64-cgo), func SetNonblock(int, bool) error
-pkg syscall (linux-amd64-cgo), func Setdomainname([]byte) error
+pkg syscall (linux-amd64-cgo), func Setdomainname([]uint8) error
 pkg syscall (linux-amd64-cgo), func Setfsgid(int) error
 pkg syscall (linux-amd64-cgo), func Setfsuid(int) error
 pkg syscall (linux-amd64-cgo), func Setgid(int) error
 pkg syscall (linux-amd64-cgo), func Setgroups([]int) error
-pkg syscall (linux-amd64-cgo), func Sethostname([]byte) error
+pkg syscall (linux-amd64-cgo), func Sethostname([]uint8) error
 pkg syscall (linux-amd64-cgo), func Setpgid(int, int) error
 pkg syscall (linux-amd64-cgo), func Setregid(int, int) error
 pkg syscall (linux-amd64-cgo), func Setresgid(int, int, int) error
@@ -21380,26 +25523,27 @@ pkg syscall (linux-amd64-cgo), func Setresuid(int, int, int) error
 pkg syscall (linux-amd64-cgo), func Setreuid(int, int) error
 pkg syscall (linux-amd64-cgo), func Setrlimit(int, *Rlimit) error
 pkg syscall (linux-amd64-cgo), func Setsid() (int, error)
-pkg syscall (linux-amd64-cgo), func SetsockoptIPMreq(int, *IPMreq) error
-pkg syscall (linux-amd64-cgo), func SetsockoptIPMreqn(int, *IPMreqn) error
-pkg syscall (linux-amd64-cgo), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
-pkg syscall (linux-amd64-cgo), func SetsockoptInet4Addr(int, [4]byte) error
-pkg syscall (linux-amd64-cgo), func SetsockoptInt(int, int) error
-pkg syscall (linux-amd64-cgo), func SetsockoptLinger(int, *Linger) error
-pkg syscall (linux-amd64-cgo), func SetsockoptString(int, string) error
-pkg syscall (linux-amd64-cgo), func SetsockoptTimeval(int, *Timeval) error
+pkg syscall (linux-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (linux-amd64-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (linux-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (linux-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (linux-amd64-cgo), func SetsockoptInt(int, int, int, int) error
+pkg syscall (linux-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (linux-amd64-cgo), func SetsockoptString(int, int, int, string) error
+pkg syscall (linux-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
 pkg syscall (linux-amd64-cgo), func Settimeofday(*Timeval) error
 pkg syscall (linux-amd64-cgo), func Setuid(int) error
 pkg syscall (linux-amd64-cgo), func Shutdown(int, int) error
-pkg syscall (linux-amd64-cgo), func Socket(int) (int, error)
-pkg syscall (linux-amd64-cgo), func Socketpair(int) ([2]int, error)
+pkg syscall (linux-amd64-cgo), func Socket(int, int, int) (int, error)
+pkg syscall (linux-amd64-cgo), func Socketpair(int, int, int) ([2]int, error)
 pkg syscall (linux-amd64-cgo), func Splice(int, *int64, int, *int64, int, int) (int64, error)
 pkg syscall (linux-amd64-cgo), func Stat(string, *Stat_t) error
 pkg syscall (linux-amd64-cgo), func Statfs(string, *Statfs_t) error
-pkg syscall (linux-amd64-cgo), func StringSlicePtr([]string) []*byte
-pkg syscall (linux-amd64-cgo), func Symlink(string, string) error
+pkg syscall (linux-amd64-cgo), func StringSlicePtr([]string) []*uint8
 pkg syscall (linux-amd64-cgo), func Sync()
 pkg syscall (linux-amd64-cgo), func SyncFileRange(int, int64, int64, int) error
+pkg syscall (linux-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
 pkg syscall (linux-amd64-cgo), func Sysinfo(*Sysinfo_t) error
 pkg syscall (linux-amd64-cgo), func Tee(int, int, int, int) (int64, error)
 pkg syscall (linux-amd64-cgo), func Tgkill(int, int, Signal) error
@@ -21410,15 +25554,15 @@ pkg syscall (linux-amd64-cgo), func TimevalToNsec(Timeval) int64
 pkg syscall (linux-amd64-cgo), func Truncate(string, int64) error
 pkg syscall (linux-amd64-cgo), func Umask(int) int
 pkg syscall (linux-amd64-cgo), func Uname(*Utsname) error
-pkg syscall (linux-amd64-cgo), func UnixCredentials(*Ucred) []byte
-pkg syscall (linux-amd64-cgo), func UnixRights(...int) []byte
+pkg syscall (linux-amd64-cgo), func UnixCredentials(*Ucred) []uint8
+pkg syscall (linux-amd64-cgo), func UnixRights(...int) []uint8
 pkg syscall (linux-amd64-cgo), func Unlinkat(int, string) error
 pkg syscall (linux-amd64-cgo), func Unmount(string, int) error
 pkg syscall (linux-amd64-cgo), func Unshare(int) error
 pkg syscall (linux-amd64-cgo), func Ustat(int, *Ustat_t) error
 pkg syscall (linux-amd64-cgo), func Utime(string, *Utimbuf) error
 pkg syscall (linux-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
-pkg syscall (linux-amd64-cgo), func Write(int, []byte) (int, error)
+pkg syscall (linux-amd64-cgo), func Write(int, []uint8) (int, error)
 pkg syscall (linux-amd64-cgo), method (*Cmsghdr) SetLen(int)
 pkg syscall (linux-amd64-cgo), method (*Iovec) SetLen(int)
 pkg syscall (linux-amd64-cgo), method (*Msghdr) SetControllen(int)
@@ -21428,7 +25572,7 @@ pkg syscall (linux-amd64-cgo), type Cmsghdr struct
 pkg syscall (linux-amd64-cgo), type Cmsghdr struct, Len uint64
 pkg syscall (linux-amd64-cgo), type Cmsghdr struct, Level int32
 pkg syscall (linux-amd64-cgo), type Cmsghdr struct, Type int32
-pkg syscall (linux-amd64-cgo), type Cmsghdr struct, X__cmsg_data [0]byte
+pkg syscall (linux-amd64-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8
 pkg syscall (linux-amd64-cgo), type Credential struct
 pkg syscall (linux-amd64-cgo), type Credential struct, Gid uint32
 pkg syscall (linux-amd64-cgo), type Credential struct, Groups []uint32
@@ -21437,7 +25581,7 @@ pkg syscall (linux-amd64-cgo), type Dirent struct
 pkg syscall (linux-amd64-cgo), type Dirent struct, Ino uint64
 pkg syscall (linux-amd64-cgo), type Dirent struct, Name [256]int8
 pkg syscall (linux-amd64-cgo), type Dirent struct, Off int64
-pkg syscall (linux-amd64-cgo), type Dirent struct, Pad_cgo_0 [5]byte
+pkg syscall (linux-amd64-cgo), type Dirent struct, Pad_cgo_0 [5]uint8
 pkg syscall (linux-amd64-cgo), type Dirent struct, Reclen uint16
 pkg syscall (linux-amd64-cgo), type Dirent struct, Type uint8
 pkg syscall (linux-amd64-cgo), type EpollEvent struct
@@ -21449,9 +25593,9 @@ pkg syscall (linux-amd64-cgo), type FdSet struct, Bits [16]int64
 pkg syscall (linux-amd64-cgo), type Fsid struct
 pkg syscall (linux-amd64-cgo), type Fsid struct, X__val [2]int32
 pkg syscall (linux-amd64-cgo), type IPMreqn struct
-pkg syscall (linux-amd64-cgo), type IPMreqn struct, Address [4]byte
+pkg syscall (linux-amd64-cgo), type IPMreqn struct, Address [4]uint8
 pkg syscall (linux-amd64-cgo), type IPMreqn struct, Ifindex int32
-pkg syscall (linux-amd64-cgo), type IPMreqn struct, Multiaddr [4]byte
+pkg syscall (linux-amd64-cgo), type IPMreqn struct, Multiaddr [4]uint8
 pkg syscall (linux-amd64-cgo), type IfAddrmsg struct
 pkg syscall (linux-amd64-cgo), type IfAddrmsg struct, Family uint8
 pkg syscall (linux-amd64-cgo), type IfAddrmsg struct, Flags uint8
@@ -21466,37 +25610,37 @@ pkg syscall (linux-amd64-cgo), type IfInfomsg struct, Index int32
 pkg syscall (linux-amd64-cgo), type IfInfomsg struct, Type uint16
 pkg syscall (linux-amd64-cgo), type IfInfomsg struct, X__ifi_pad uint8
 pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct
-pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct, Addr [4]byte
+pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct, Addr [4]uint8
 pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct, Ifindex int32
-pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct, Spec_dst [4]byte
+pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct, Spec_dst [4]uint8
 pkg syscall (linux-amd64-cgo), type Inet6Pktinfo struct
-pkg syscall (linux-amd64-cgo), type Inet6Pktinfo struct, Addr [16]byte
+pkg syscall (linux-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8
 pkg syscall (linux-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32
 pkg syscall (linux-amd64-cgo), type InotifyEvent struct
 pkg syscall (linux-amd64-cgo), type InotifyEvent struct, Cookie uint32
 pkg syscall (linux-amd64-cgo), type InotifyEvent struct, Len uint32
 pkg syscall (linux-amd64-cgo), type InotifyEvent struct, Mask uint32
-pkg syscall (linux-amd64-cgo), type InotifyEvent struct, Name [0]byte
+pkg syscall (linux-amd64-cgo), type InotifyEvent struct, Name [0]uint8
 pkg syscall (linux-amd64-cgo), type InotifyEvent struct, Wd int32
 pkg syscall (linux-amd64-cgo), type Iovec struct
-pkg syscall (linux-amd64-cgo), type Iovec struct, Base *byte
+pkg syscall (linux-amd64-cgo), type Iovec struct, Base *uint8
 pkg syscall (linux-amd64-cgo), type Iovec struct, Len uint64
 pkg syscall (linux-amd64-cgo), type Msghdr struct
-pkg syscall (linux-amd64-cgo), type Msghdr struct, Control *byte
+pkg syscall (linux-amd64-cgo), type Msghdr struct, Control *uint8
 pkg syscall (linux-amd64-cgo), type Msghdr struct, Controllen uint64
 pkg syscall (linux-amd64-cgo), type Msghdr struct, Flags int32
 pkg syscall (linux-amd64-cgo), type Msghdr struct, Iov *Iovec
 pkg syscall (linux-amd64-cgo), type Msghdr struct, Iovlen uint64
-pkg syscall (linux-amd64-cgo), type Msghdr struct, Name *byte
+pkg syscall (linux-amd64-cgo), type Msghdr struct, Name *uint8
 pkg syscall (linux-amd64-cgo), type Msghdr struct, Namelen uint32
-pkg syscall (linux-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]byte
-pkg syscall (linux-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]byte
+pkg syscall (linux-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8
+pkg syscall (linux-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8
 pkg syscall (linux-amd64-cgo), type NetlinkMessage struct
-pkg syscall (linux-amd64-cgo), type NetlinkMessage struct, Data []byte
+pkg syscall (linux-amd64-cgo), type NetlinkMessage struct, Data []uint8
 pkg syscall (linux-amd64-cgo), type NetlinkMessage struct, Header NlMsghdr
 pkg syscall (linux-amd64-cgo), type NetlinkRouteAttr struct
 pkg syscall (linux-amd64-cgo), type NetlinkRouteAttr struct, Attr RtAttr
-pkg syscall (linux-amd64-cgo), type NetlinkRouteAttr struct, Value []byte
+pkg syscall (linux-amd64-cgo), type NetlinkRouteAttr struct, Value []uint8
 pkg syscall (linux-amd64-cgo), type NetlinkRouteRequest struct
 pkg syscall (linux-amd64-cgo), type NetlinkRouteRequest struct, Data RtGenmsg
 pkg syscall (linux-amd64-cgo), type NetlinkRouteRequest struct, Header NlMsghdr
@@ -21540,12 +25684,13 @@ pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rip uint64
 pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rsi uint64
 pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rsp uint64
 pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Ss uint64
+pkg syscall (linux-amd64-cgo), type RawSockaddr struct, Data [14]int8
 pkg syscall (linux-amd64-cgo), type RawSockaddr struct, Family uint16
 pkg syscall (linux-amd64-cgo), type RawSockaddrAny struct, Pad [96]int8
 pkg syscall (linux-amd64-cgo), type RawSockaddrInet4 struct, Family uint16
 pkg syscall (linux-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]uint8
 pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct
-pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct, Addr [16]byte
+pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct, Addr [16]uint8
 pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct, Family uint16
 pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct, Flowinfo uint32
 pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct, Port uint16
@@ -21613,9 +25758,9 @@ pkg syscall (linux-amd64-cgo), type SockFilter struct, K uint32
 pkg syscall (linux-amd64-cgo), type SockFprog struct
 pkg syscall (linux-amd64-cgo), type SockFprog struct, Filter *SockFilter
 pkg syscall (linux-amd64-cgo), type SockFprog struct, Len uint16
-pkg syscall (linux-amd64-cgo), type SockFprog struct, Pad_cgo_0 [6]byte
+pkg syscall (linux-amd64-cgo), type SockFprog struct, Pad_cgo_0 [6]uint8
 pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct
-pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Addr [8]byte
+pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Addr [8]uint8
 pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Halen uint8
 pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Hatype uint16
 pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Ifindex int
@@ -21627,7 +25772,7 @@ pkg syscall (linux-amd64-cgo), type SockaddrNetlink struct, Groups uint32
 pkg syscall (linux-amd64-cgo), type SockaddrNetlink struct, Pad uint16
 pkg syscall (linux-amd64-cgo), type SockaddrNetlink struct, Pid uint32
 pkg syscall (linux-amd64-cgo), type SocketControlMessage struct
-pkg syscall (linux-amd64-cgo), type SocketControlMessage struct, Data []byte
+pkg syscall (linux-amd64-cgo), type SocketControlMessage struct, Data []uint8
 pkg syscall (linux-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr
 pkg syscall (linux-amd64-cgo), type Stat_t struct
 pkg syscall (linux-amd64-cgo), type Stat_t struct, Atim Timespec
@@ -21673,8 +25818,8 @@ pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Freeram uint64
 pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Freeswap uint64
 pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Loads [3]uint64
 pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Pad uint16
-pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Pad_cgo_0 [4]byte
-pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Pad_cgo_1 [4]byte
+pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Pad_cgo_1 [4]uint8
 pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Procs uint16
 pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Sharedram uint64
 pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Totalhigh uint64
@@ -21682,7 +25827,7 @@ pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Totalram uint64
 pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Totalswap uint64
 pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Unit uint32
 pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Uptime int64
-pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, X_f [0]byte
+pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, X_f [0]uint8
 pkg syscall (linux-amd64-cgo), type Termios struct
 pkg syscall (linux-amd64-cgo), type Termios struct, Cc [32]uint8
 pkg syscall (linux-amd64-cgo), type Termios struct, Cflag uint32
@@ -21692,7 +25837,7 @@ pkg syscall (linux-amd64-cgo), type Termios struct, Lflag uint32
 pkg syscall (linux-amd64-cgo), type Termios struct, Line uint8
 pkg syscall (linux-amd64-cgo), type Termios struct, Oflag uint32
 pkg syscall (linux-amd64-cgo), type Termios struct, Ospeed uint32
-pkg syscall (linux-amd64-cgo), type Termios struct, Pad_cgo_0 [3]byte
+pkg syscall (linux-amd64-cgo), type Termios struct, Pad_cgo_0 [3]uint8
 pkg syscall (linux-amd64-cgo), type Time_t int64
 pkg syscall (linux-amd64-cgo), type Timespec struct, Nsec int64
 pkg syscall (linux-amd64-cgo), type Timespec struct, Sec int64
@@ -21709,10 +25854,10 @@ pkg syscall (linux-amd64-cgo), type Timex struct, Jitter int64
 pkg syscall (linux-amd64-cgo), type Timex struct, Maxerror int64
 pkg syscall (linux-amd64-cgo), type Timex struct, Modes uint32
 pkg syscall (linux-amd64-cgo), type Timex struct, Offset int64
-pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_0 [4]byte
-pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_1 [4]byte
-pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_2 [4]byte
-pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_3 [44]byte
+pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_0 [4]uint8
+pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_1 [4]uint8
+pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_2 [4]uint8
+pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_3 [44]uint8
 pkg syscall (linux-amd64-cgo), type Timex struct, Ppsfreq int64
 pkg syscall (linux-amd64-cgo), type Timex struct, Precision int64
 pkg syscall (linux-amd64-cgo), type Timex struct, Shift int32
@@ -21735,8 +25880,8 @@ pkg syscall (linux-amd64-cgo), type Ucred struct, Uid uint32
 pkg syscall (linux-amd64-cgo), type Ustat_t struct
 pkg syscall (linux-amd64-cgo), type Ustat_t struct, Fname [6]int8
 pkg syscall (linux-amd64-cgo), type Ustat_t struct, Fpack [6]int8
-pkg syscall (linux-amd64-cgo), type Ustat_t struct, Pad_cgo_0 [4]byte
-pkg syscall (linux-amd64-cgo), type Ustat_t struct, Pad_cgo_1 [4]byte
+pkg syscall (linux-amd64-cgo), type Ustat_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (linux-amd64-cgo), type Ustat_t struct, Pad_cgo_1 [4]uint8
 pkg syscall (linux-amd64-cgo), type Ustat_t struct, Tfree int32
 pkg syscall (linux-amd64-cgo), type Ustat_t struct, Tinode uint64
 pkg syscall (linux-amd64-cgo), type Utimbuf struct
@@ -21753,6 +25898,2200 @@ pkg syscall (linux-amd64-cgo), type WaitStatus uint32
 pkg syscall (linux-amd64-cgo), var Stderr int
 pkg syscall (linux-amd64-cgo), var Stdin int
 pkg syscall (linux-amd64-cgo), var Stdout int
+pkg syscall (linux-arm), const AF_ALG ideal-int
+pkg syscall (linux-arm), const AF_APPLETALK ideal-int
+pkg syscall (linux-arm), const AF_ASH ideal-int
+pkg syscall (linux-arm), const AF_ATMPVC ideal-int
+pkg syscall (linux-arm), const AF_ATMSVC ideal-int
+pkg syscall (linux-arm), const AF_AX25 ideal-int
+pkg syscall (linux-arm), const AF_BLUETOOTH ideal-int
+pkg syscall (linux-arm), const AF_BRIDGE ideal-int
+pkg syscall (linux-arm), const AF_CAIF ideal-int
+pkg syscall (linux-arm), const AF_CAN ideal-int
+pkg syscall (linux-arm), const AF_DECnet ideal-int
+pkg syscall (linux-arm), const AF_ECONET ideal-int
+pkg syscall (linux-arm), const AF_FILE ideal-int
+pkg syscall (linux-arm), const AF_IEEE802154 ideal-int
+pkg syscall (linux-arm), const AF_IPX ideal-int
+pkg syscall (linux-arm), const AF_IRDA ideal-int
+pkg syscall (linux-arm), const AF_ISDN ideal-int
+pkg syscall (linux-arm), const AF_IUCV ideal-int
+pkg syscall (linux-arm), const AF_KEY ideal-int
+pkg syscall (linux-arm), const AF_LLC ideal-int
+pkg syscall (linux-arm), const AF_LOCAL ideal-int
+pkg syscall (linux-arm), const AF_MAX ideal-int
+pkg syscall (linux-arm), const AF_NETBEUI ideal-int
+pkg syscall (linux-arm), const AF_NETLINK ideal-int
+pkg syscall (linux-arm), const AF_NETROM ideal-int
+pkg syscall (linux-arm), const AF_PACKET ideal-int
+pkg syscall (linux-arm), const AF_PHONET ideal-int
+pkg syscall (linux-arm), const AF_PPPOX ideal-int
+pkg syscall (linux-arm), const AF_RDS ideal-int
+pkg syscall (linux-arm), const AF_ROSE ideal-int
+pkg syscall (linux-arm), const AF_ROUTE ideal-int
+pkg syscall (linux-arm), const AF_RXRPC ideal-int
+pkg syscall (linux-arm), const AF_SECURITY ideal-int
+pkg syscall (linux-arm), const AF_SNA ideal-int
+pkg syscall (linux-arm), const AF_TIPC ideal-int
+pkg syscall (linux-arm), const AF_WANPIPE ideal-int
+pkg syscall (linux-arm), const AF_X25 ideal-int
+pkg syscall (linux-arm), const ARPHRD_ADAPT ideal-int
+pkg syscall (linux-arm), const ARPHRD_APPLETLK ideal-int
+pkg syscall (linux-arm), const ARPHRD_ARCNET ideal-int
+pkg syscall (linux-arm), const ARPHRD_ASH ideal-int
+pkg syscall (linux-arm), const ARPHRD_ATM ideal-int
+pkg syscall (linux-arm), const ARPHRD_AX25 ideal-int
+pkg syscall (linux-arm), const ARPHRD_BIF ideal-int
+pkg syscall (linux-arm), const ARPHRD_CHAOS ideal-int
+pkg syscall (linux-arm), const ARPHRD_CISCO ideal-int
+pkg syscall (linux-arm), const ARPHRD_CSLIP ideal-int
+pkg syscall (linux-arm), const ARPHRD_CSLIP6 ideal-int
+pkg syscall (linux-arm), const ARPHRD_DDCMP ideal-int
+pkg syscall (linux-arm), const ARPHRD_DLCI ideal-int
+pkg syscall (linux-arm), const ARPHRD_ECONET ideal-int
+pkg syscall (linux-arm), const ARPHRD_EETHER ideal-int
+pkg syscall (linux-arm), const ARPHRD_ETHER ideal-int
+pkg syscall (linux-arm), const ARPHRD_EUI64 ideal-int
+pkg syscall (linux-arm), const ARPHRD_FCAL ideal-int
+pkg syscall (linux-arm), const ARPHRD_FCFABRIC ideal-int
+pkg syscall (linux-arm), const ARPHRD_FCPL ideal-int
+pkg syscall (linux-arm), const ARPHRD_FCPP ideal-int
+pkg syscall (linux-arm), const ARPHRD_FDDI ideal-int
+pkg syscall (linux-arm), const ARPHRD_FRAD ideal-int
+pkg syscall (linux-arm), const ARPHRD_HDLC ideal-int
+pkg syscall (linux-arm), const ARPHRD_HIPPI ideal-int
+pkg syscall (linux-arm), const ARPHRD_HWX25 ideal-int
+pkg syscall (linux-arm), const ARPHRD_IEEE1394 ideal-int
+pkg syscall (linux-arm), const ARPHRD_IEEE802 ideal-int
+pkg syscall (linux-arm), const ARPHRD_IEEE80211 ideal-int
+pkg syscall (linux-arm), const ARPHRD_IEEE80211_PRISM ideal-int
+pkg syscall (linux-arm), const ARPHRD_IEEE80211_RADIOTAP ideal-int
+pkg syscall (linux-arm), const ARPHRD_IEEE802154 ideal-int
+pkg syscall (linux-arm), const ARPHRD_IEEE802154_PHY ideal-int
+pkg syscall (linux-arm), const ARPHRD_IEEE802_TR ideal-int
+pkg syscall (linux-arm), const ARPHRD_INFINIBAND ideal-int
+pkg syscall (linux-arm), const ARPHRD_IPDDP ideal-int
+pkg syscall (linux-arm), const ARPHRD_IPGRE ideal-int
+pkg syscall (linux-arm), const ARPHRD_IRDA ideal-int
+pkg syscall (linux-arm), const ARPHRD_LAPB ideal-int
+pkg syscall (linux-arm), const ARPHRD_LOCALTLK ideal-int
+pkg syscall (linux-arm), const ARPHRD_LOOPBACK ideal-int
+pkg syscall (linux-arm), const ARPHRD_METRICOM ideal-int
+pkg syscall (linux-arm), const ARPHRD_NETROM ideal-int
+pkg syscall (linux-arm), const ARPHRD_NONE ideal-int
+pkg syscall (linux-arm), const ARPHRD_PIMREG ideal-int
+pkg syscall (linux-arm), const ARPHRD_PPP ideal-int
+pkg syscall (linux-arm), const ARPHRD_PRONET ideal-int
+pkg syscall (linux-arm), const ARPHRD_RAWHDLC ideal-int
+pkg syscall (linux-arm), const ARPHRD_ROSE ideal-int
+pkg syscall (linux-arm), const ARPHRD_RSRVD ideal-int
+pkg syscall (linux-arm), const ARPHRD_SIT ideal-int
+pkg syscall (linux-arm), const ARPHRD_SKIP ideal-int
+pkg syscall (linux-arm), const ARPHRD_SLIP ideal-int
+pkg syscall (linux-arm), const ARPHRD_SLIP6 ideal-int
+pkg syscall (linux-arm), const ARPHRD_TUNNEL ideal-int
+pkg syscall (linux-arm), const ARPHRD_TUNNEL6 ideal-int
+pkg syscall (linux-arm), const ARPHRD_VOID ideal-int
+pkg syscall (linux-arm), const ARPHRD_X25 ideal-int
+pkg syscall (linux-arm), const B0 ideal-int
+pkg syscall (linux-arm), const B1000000 ideal-int
+pkg syscall (linux-arm), const B110 ideal-int
+pkg syscall (linux-arm), const B115200 ideal-int
+pkg syscall (linux-arm), const B1152000 ideal-int
+pkg syscall (linux-arm), const B1200 ideal-int
+pkg syscall (linux-arm), const B134 ideal-int
+pkg syscall (linux-arm), const B150 ideal-int
+pkg syscall (linux-arm), const B1500000 ideal-int
+pkg syscall (linux-arm), const B1800 ideal-int
+pkg syscall (linux-arm), const B19200 ideal-int
+pkg syscall (linux-arm), const B200 ideal-int
+pkg syscall (linux-arm), const B2000000 ideal-int
+pkg syscall (linux-arm), const B230400 ideal-int
+pkg syscall (linux-arm), const B2400 ideal-int
+pkg syscall (linux-arm), const B2500000 ideal-int
+pkg syscall (linux-arm), const B300 ideal-int
+pkg syscall (linux-arm), const B3000000 ideal-int
+pkg syscall (linux-arm), const B3500000 ideal-int
+pkg syscall (linux-arm), const B38400 ideal-int
+pkg syscall (linux-arm), const B4000000 ideal-int
+pkg syscall (linux-arm), const B460800 ideal-int
+pkg syscall (linux-arm), const B4800 ideal-int
+pkg syscall (linux-arm), const B50 ideal-int
+pkg syscall (linux-arm), const B500000 ideal-int
+pkg syscall (linux-arm), const B57600 ideal-int
+pkg syscall (linux-arm), const B576000 ideal-int
+pkg syscall (linux-arm), const B600 ideal-int
+pkg syscall (linux-arm), const B75 ideal-int
+pkg syscall (linux-arm), const B921600 ideal-int
+pkg syscall (linux-arm), const B9600 ideal-int
+pkg syscall (linux-arm), const BPF_A ideal-int
+pkg syscall (linux-arm), const BPF_ABS ideal-int
+pkg syscall (linux-arm), const BPF_ADD ideal-int
+pkg syscall (linux-arm), const BPF_ALU ideal-int
+pkg syscall (linux-arm), const BPF_AND ideal-int
+pkg syscall (linux-arm), const BPF_B ideal-int
+pkg syscall (linux-arm), const BPF_DIV ideal-int
+pkg syscall (linux-arm), const BPF_H ideal-int
+pkg syscall (linux-arm), const BPF_IMM ideal-int
+pkg syscall (linux-arm), const BPF_IND ideal-int
+pkg syscall (linux-arm), const BPF_JA ideal-int
+pkg syscall (linux-arm), const BPF_JEQ ideal-int
+pkg syscall (linux-arm), const BPF_JGE ideal-int
+pkg syscall (linux-arm), const BPF_JGT ideal-int
+pkg syscall (linux-arm), const BPF_JMP ideal-int
+pkg syscall (linux-arm), const BPF_JSET ideal-int
+pkg syscall (linux-arm), const BPF_K ideal-int
+pkg syscall (linux-arm), const BPF_LD ideal-int
+pkg syscall (linux-arm), const BPF_LDX ideal-int
+pkg syscall (linux-arm), const BPF_LEN ideal-int
+pkg syscall (linux-arm), const BPF_LSH ideal-int
+pkg syscall (linux-arm), const BPF_MAJOR_VERSION ideal-int
+pkg syscall (linux-arm), const BPF_MAXINSNS ideal-int
+pkg syscall (linux-arm), const BPF_MEM ideal-int
+pkg syscall (linux-arm), const BPF_MEMWORDS ideal-int
+pkg syscall (linux-arm), const BPF_MINOR_VERSION ideal-int
+pkg syscall (linux-arm), const BPF_MISC ideal-int
+pkg syscall (linux-arm), const BPF_MSH ideal-int
+pkg syscall (linux-arm), const BPF_MUL ideal-int
+pkg syscall (linux-arm), const BPF_NEG ideal-int
+pkg syscall (linux-arm), const BPF_OR ideal-int
+pkg syscall (linux-arm), const BPF_RET ideal-int
+pkg syscall (linux-arm), const BPF_RSH ideal-int
+pkg syscall (linux-arm), const BPF_ST ideal-int
+pkg syscall (linux-arm), const BPF_STX ideal-int
+pkg syscall (linux-arm), const BPF_SUB ideal-int
+pkg syscall (linux-arm), const BPF_TAX ideal-int
+pkg syscall (linux-arm), const BPF_TXA ideal-int
+pkg syscall (linux-arm), const BPF_W ideal-int
+pkg syscall (linux-arm), const BPF_X ideal-int
+pkg syscall (linux-arm), const BRKINT ideal-int
+pkg syscall (linux-arm), const CLOCAL ideal-int
+pkg syscall (linux-arm), const CREAD ideal-int
+pkg syscall (linux-arm), const CS5 ideal-int
+pkg syscall (linux-arm), const CS6 ideal-int
+pkg syscall (linux-arm), const CS7 ideal-int
+pkg syscall (linux-arm), const CS8 ideal-int
+pkg syscall (linux-arm), const CSIZE ideal-int
+pkg syscall (linux-arm), const CSTOPB ideal-int
+pkg syscall (linux-arm), const DT_BLK ideal-int
+pkg syscall (linux-arm), const DT_CHR ideal-int
+pkg syscall (linux-arm), const DT_DIR ideal-int
+pkg syscall (linux-arm), const DT_FIFO ideal-int
+pkg syscall (linux-arm), const DT_LNK ideal-int
+pkg syscall (linux-arm), const DT_REG ideal-int
+pkg syscall (linux-arm), const DT_SOCK ideal-int
+pkg syscall (linux-arm), const DT_UNKNOWN ideal-int
+pkg syscall (linux-arm), const DT_WHT ideal-int
+pkg syscall (linux-arm), const EADV Errno
+pkg syscall (linux-arm), const EBADE Errno
+pkg syscall (linux-arm), const EBADFD Errno
+pkg syscall (linux-arm), const EBADMSG Errno
+pkg syscall (linux-arm), const EBADR Errno
+pkg syscall (linux-arm), const EBADRQC Errno
+pkg syscall (linux-arm), const EBADSLT Errno
+pkg syscall (linux-arm), const EBFONT Errno
+pkg syscall (linux-arm), const ECHO ideal-int
+pkg syscall (linux-arm), const ECHOCTL ideal-int
+pkg syscall (linux-arm), const ECHOE ideal-int
+pkg syscall (linux-arm), const ECHOK ideal-int
+pkg syscall (linux-arm), const ECHOKE ideal-int
+pkg syscall (linux-arm), const ECHONL ideal-int
+pkg syscall (linux-arm), const ECHOPRT ideal-int
+pkg syscall (linux-arm), const ECHRNG Errno
+pkg syscall (linux-arm), const ECOMM Errno
+pkg syscall (linux-arm), const EDEADLOCK Errno
+pkg syscall (linux-arm), const EDOTDOT Errno
+pkg syscall (linux-arm), const EHWPOISON Errno
+pkg syscall (linux-arm), const EISNAM Errno
+pkg syscall (linux-arm), const EKEYEXPIRED Errno
+pkg syscall (linux-arm), const EKEYREJECTED Errno
+pkg syscall (linux-arm), const EKEYREVOKED Errno
+pkg syscall (linux-arm), const EL2HLT Errno
+pkg syscall (linux-arm), const EL2NSYNC Errno
+pkg syscall (linux-arm), const EL3HLT Errno
+pkg syscall (linux-arm), const EL3RST Errno
+pkg syscall (linux-arm), const ELF_NGREG ideal-int
+pkg syscall (linux-arm), const ELF_PRARGSZ ideal-int
+pkg syscall (linux-arm), const ELIBACC Errno
+pkg syscall (linux-arm), const ELIBBAD Errno
+pkg syscall (linux-arm), const ELIBEXEC Errno
+pkg syscall (linux-arm), const ELIBMAX Errno
+pkg syscall (linux-arm), const ELIBSCN Errno
+pkg syscall (linux-arm), const ELNRNG Errno
+pkg syscall (linux-arm), const EMEDIUMTYPE Errno
+pkg syscall (linux-arm), const EMULTIHOP Errno
+pkg syscall (linux-arm), const ENAVAIL Errno
+pkg syscall (linux-arm), const ENOANO Errno
+pkg syscall (linux-arm), const ENOCSI Errno
+pkg syscall (linux-arm), const ENODATA Errno
+pkg syscall (linux-arm), const ENOKEY Errno
+pkg syscall (linux-arm), const ENOLINK Errno
+pkg syscall (linux-arm), const ENOMEDIUM Errno
+pkg syscall (linux-arm), const ENONET Errno
+pkg syscall (linux-arm), const ENOPKG Errno
+pkg syscall (linux-arm), const ENOSR Errno
+pkg syscall (linux-arm), const ENOSTR Errno
+pkg syscall (linux-arm), const ENOTNAM Errno
+pkg syscall (linux-arm), const ENOTRECOVERABLE Errno
+pkg syscall (linux-arm), const ENOTUNIQ Errno
+pkg syscall (linux-arm), const EOWNERDEAD Errno
+pkg syscall (linux-arm), const EPOLLERR ideal-int
+pkg syscall (linux-arm), const EPOLLET ideal-int
+pkg syscall (linux-arm), const EPOLLHUP ideal-int
+pkg syscall (linux-arm), const EPOLLIN ideal-int
+pkg syscall (linux-arm), const EPOLLMSG ideal-int
+pkg syscall (linux-arm), const EPOLLONESHOT ideal-int
+pkg syscall (linux-arm), const EPOLLOUT ideal-int
+pkg syscall (linux-arm), const EPOLLPRI ideal-int
+pkg syscall (linux-arm), const EPOLLRDBAND ideal-int
+pkg syscall (linux-arm), const EPOLLRDHUP ideal-int
+pkg syscall (linux-arm), const EPOLLRDNORM ideal-int
+pkg syscall (linux-arm), const EPOLLWRBAND ideal-int
+pkg syscall (linux-arm), const EPOLLWRNORM ideal-int
+pkg syscall (linux-arm), const EPOLL_CLOEXEC ideal-int
+pkg syscall (linux-arm), const EPOLL_CTL_ADD ideal-int
+pkg syscall (linux-arm), const EPOLL_CTL_DEL ideal-int
+pkg syscall (linux-arm), const EPOLL_CTL_MOD ideal-int
+pkg syscall (linux-arm), const EPOLL_NONBLOCK ideal-int
+pkg syscall (linux-arm), const EPROTO Errno
+pkg syscall (linux-arm), const EREMCHG Errno
+pkg syscall (linux-arm), const EREMOTEIO Errno
+pkg syscall (linux-arm), const ERESTART Errno
+pkg syscall (linux-arm), const ERFKILL Errno
+pkg syscall (linux-arm), const ESRMNT Errno
+pkg syscall (linux-arm), const ESTRPIPE Errno
+pkg syscall (linux-arm), const ETH_P_1588 ideal-int
+pkg syscall (linux-arm), const ETH_P_8021Q ideal-int
+pkg syscall (linux-arm), const ETH_P_802_2 ideal-int
+pkg syscall (linux-arm), const ETH_P_802_3 ideal-int
+pkg syscall (linux-arm), const ETH_P_AARP ideal-int
+pkg syscall (linux-arm), const ETH_P_ALL ideal-int
+pkg syscall (linux-arm), const ETH_P_AOE ideal-int
+pkg syscall (linux-arm), const ETH_P_ARCNET ideal-int
+pkg syscall (linux-arm), const ETH_P_ARP ideal-int
+pkg syscall (linux-arm), const ETH_P_ATALK ideal-int
+pkg syscall (linux-arm), const ETH_P_ATMFATE ideal-int
+pkg syscall (linux-arm), const ETH_P_ATMMPOA ideal-int
+pkg syscall (linux-arm), const ETH_P_AX25 ideal-int
+pkg syscall (linux-arm), const ETH_P_BPQ ideal-int
+pkg syscall (linux-arm), const ETH_P_CAIF ideal-int
+pkg syscall (linux-arm), const ETH_P_CAN ideal-int
+pkg syscall (linux-arm), const ETH_P_CONTROL ideal-int
+pkg syscall (linux-arm), const ETH_P_CUST ideal-int
+pkg syscall (linux-arm), const ETH_P_DDCMP ideal-int
+pkg syscall (linux-arm), const ETH_P_DEC ideal-int
+pkg syscall (linux-arm), const ETH_P_DIAG ideal-int
+pkg syscall (linux-arm), const ETH_P_DNA_DL ideal-int
+pkg syscall (linux-arm), const ETH_P_DNA_RC ideal-int
+pkg syscall (linux-arm), const ETH_P_DNA_RT ideal-int
+pkg syscall (linux-arm), const ETH_P_DSA ideal-int
+pkg syscall (linux-arm), const ETH_P_ECONET ideal-int
+pkg syscall (linux-arm), const ETH_P_EDSA ideal-int
+pkg syscall (linux-arm), const ETH_P_FCOE ideal-int
+pkg syscall (linux-arm), const ETH_P_FIP ideal-int
+pkg syscall (linux-arm), const ETH_P_HDLC ideal-int
+pkg syscall (linux-arm), const ETH_P_IEEE802154 ideal-int
+pkg syscall (linux-arm), const ETH_P_IEEEPUP ideal-int
+pkg syscall (linux-arm), const ETH_P_IEEEPUPAT ideal-int
+pkg syscall (linux-arm), const ETH_P_IP ideal-int
+pkg syscall (linux-arm), const ETH_P_IPV6 ideal-int
+pkg syscall (linux-arm), const ETH_P_IPX ideal-int
+pkg syscall (linux-arm), const ETH_P_IRDA ideal-int
+pkg syscall (linux-arm), const ETH_P_LAT ideal-int
+pkg syscall (linux-arm), const ETH_P_LINK_CTL ideal-int
+pkg syscall (linux-arm), const ETH_P_LOCALTALK ideal-int
+pkg syscall (linux-arm), const ETH_P_LOOP ideal-int
+pkg syscall (linux-arm), const ETH_P_MOBITEX ideal-int
+pkg syscall (linux-arm), const ETH_P_MPLS_MC ideal-int
+pkg syscall (linux-arm), const ETH_P_MPLS_UC ideal-int
+pkg syscall (linux-arm), const ETH_P_PAE ideal-int
+pkg syscall (linux-arm), const ETH_P_PAUSE ideal-int
+pkg syscall (linux-arm), const ETH_P_PHONET ideal-int
+pkg syscall (linux-arm), const ETH_P_PPPTALK ideal-int
+pkg syscall (linux-arm), const ETH_P_PPP_DISC ideal-int
+pkg syscall (linux-arm), const ETH_P_PPP_MP ideal-int
+pkg syscall (linux-arm), const ETH_P_PPP_SES ideal-int
+pkg syscall (linux-arm), const ETH_P_PUP ideal-int
+pkg syscall (linux-arm), const ETH_P_PUPAT ideal-int
+pkg syscall (linux-arm), const ETH_P_RARP ideal-int
+pkg syscall (linux-arm), const ETH_P_SCA ideal-int
+pkg syscall (linux-arm), const ETH_P_SLOW ideal-int
+pkg syscall (linux-arm), const ETH_P_SNAP ideal-int
+pkg syscall (linux-arm), const ETH_P_TEB ideal-int
+pkg syscall (linux-arm), const ETH_P_TIPC ideal-int
+pkg syscall (linux-arm), const ETH_P_TRAILER ideal-int
+pkg syscall (linux-arm), const ETH_P_TR_802_2 ideal-int
+pkg syscall (linux-arm), const ETH_P_WAN_PPP ideal-int
+pkg syscall (linux-arm), const ETH_P_WCCP ideal-int
+pkg syscall (linux-arm), const ETH_P_X25 ideal-int
+pkg syscall (linux-arm), const ETIME Errno
+pkg syscall (linux-arm), const EUCLEAN Errno
+pkg syscall (linux-arm), const EUNATCH Errno
+pkg syscall (linux-arm), const EXFULL Errno
+pkg syscall (linux-arm), const FD_CLOEXEC ideal-int
+pkg syscall (linux-arm), const FD_SETSIZE ideal-int
+pkg syscall (linux-arm), const FLUSHO ideal-int
+pkg syscall (linux-arm), const F_DUPFD ideal-int
+pkg syscall (linux-arm), const F_DUPFD_CLOEXEC ideal-int
+pkg syscall (linux-arm), const F_EXLCK ideal-int
+pkg syscall (linux-arm), const F_GETFD ideal-int
+pkg syscall (linux-arm), const F_GETFL ideal-int
+pkg syscall (linux-arm), const F_GETLEASE ideal-int
+pkg syscall (linux-arm), const F_GETLK ideal-int
+pkg syscall (linux-arm), const F_GETLK64 ideal-int
+pkg syscall (linux-arm), const F_GETOWN ideal-int
+pkg syscall (linux-arm), const F_GETOWN_EX ideal-int
+pkg syscall (linux-arm), const F_GETPIPE_SZ ideal-int
+pkg syscall (linux-arm), const F_GETSIG ideal-int
+pkg syscall (linux-arm), const F_LOCK ideal-int
+pkg syscall (linux-arm), const F_NOTIFY ideal-int
+pkg syscall (linux-arm), const F_OK ideal-int
+pkg syscall (linux-arm), const F_RDLCK ideal-int
+pkg syscall (linux-arm), const F_SETFD ideal-int
+pkg syscall (linux-arm), const F_SETFL ideal-int
+pkg syscall (linux-arm), const F_SETLEASE ideal-int
+pkg syscall (linux-arm), const F_SETLK ideal-int
+pkg syscall (linux-arm), const F_SETLK64 ideal-int
+pkg syscall (linux-arm), const F_SETLKW ideal-int
+pkg syscall (linux-arm), const F_SETLKW64 ideal-int
+pkg syscall (linux-arm), const F_SETOWN ideal-int
+pkg syscall (linux-arm), const F_SETOWN_EX ideal-int
+pkg syscall (linux-arm), const F_SETPIPE_SZ ideal-int
+pkg syscall (linux-arm), const F_SETSIG ideal-int
+pkg syscall (linux-arm), const F_SHLCK ideal-int
+pkg syscall (linux-arm), const F_TEST ideal-int
+pkg syscall (linux-arm), const F_TLOCK ideal-int
+pkg syscall (linux-arm), const F_ULOCK ideal-int
+pkg syscall (linux-arm), const F_UNLCK ideal-int
+pkg syscall (linux-arm), const F_WRLCK ideal-int
+pkg syscall (linux-arm), const HUPCL ideal-int
+pkg syscall (linux-arm), const ICANON ideal-int
+pkg syscall (linux-arm), const ICRNL ideal-int
+pkg syscall (linux-arm), const IEXTEN ideal-int
+pkg syscall (linux-arm), const IFA_ADDRESS ideal-int
+pkg syscall (linux-arm), const IFA_ANYCAST ideal-int
+pkg syscall (linux-arm), const IFA_BROADCAST ideal-int
+pkg syscall (linux-arm), const IFA_CACHEINFO ideal-int
+pkg syscall (linux-arm), const IFA_F_DADFAILED ideal-int
+pkg syscall (linux-arm), const IFA_F_DEPRECATED ideal-int
+pkg syscall (linux-arm), const IFA_F_HOMEADDRESS ideal-int
+pkg syscall (linux-arm), const IFA_F_NODAD ideal-int
+pkg syscall (linux-arm), const IFA_F_OPTIMISTIC ideal-int
+pkg syscall (linux-arm), const IFA_F_PERMANENT ideal-int
+pkg syscall (linux-arm), const IFA_F_SECONDARY ideal-int
+pkg syscall (linux-arm), const IFA_F_TEMPORARY ideal-int
+pkg syscall (linux-arm), const IFA_F_TENTATIVE ideal-int
+pkg syscall (linux-arm), const IFA_LABEL ideal-int
+pkg syscall (linux-arm), const IFA_LOCAL ideal-int
+pkg syscall (linux-arm), const IFA_MAX ideal-int
+pkg syscall (linux-arm), const IFA_MULTICAST ideal-int
+pkg syscall (linux-arm), const IFA_UNSPEC ideal-int
+pkg syscall (linux-arm), const IFF_ALLMULTI ideal-int
+pkg syscall (linux-arm), const IFF_AUTOMEDIA ideal-int
+pkg syscall (linux-arm), const IFF_DEBUG ideal-int
+pkg syscall (linux-arm), const IFF_DYNAMIC ideal-int
+pkg syscall (linux-arm), const IFF_MASTER ideal-int
+pkg syscall (linux-arm), const IFF_NOARP ideal-int
+pkg syscall (linux-arm), const IFF_NOTRAILERS ideal-int
+pkg syscall (linux-arm), const IFF_NO_PI ideal-int
+pkg syscall (linux-arm), const IFF_ONE_QUEUE ideal-int
+pkg syscall (linux-arm), const IFF_POINTOPOINT ideal-int
+pkg syscall (linux-arm), const IFF_PORTSEL ideal-int
+pkg syscall (linux-arm), const IFF_PROMISC ideal-int
+pkg syscall (linux-arm), const IFF_RUNNING ideal-int
+pkg syscall (linux-arm), const IFF_SLAVE ideal-int
+pkg syscall (linux-arm), const IFF_TAP ideal-int
+pkg syscall (linux-arm), const IFF_TUN ideal-int
+pkg syscall (linux-arm), const IFF_TUN_EXCL ideal-int
+pkg syscall (linux-arm), const IFF_VNET_HDR ideal-int
+pkg syscall (linux-arm), const IFLA_ADDRESS ideal-int
+pkg syscall (linux-arm), const IFLA_BROADCAST ideal-int
+pkg syscall (linux-arm), const IFLA_COST ideal-int
+pkg syscall (linux-arm), const IFLA_IFALIAS ideal-int
+pkg syscall (linux-arm), const IFLA_IFNAME ideal-int
+pkg syscall (linux-arm), const IFLA_LINK ideal-int
+pkg syscall (linux-arm), const IFLA_LINKINFO ideal-int
+pkg syscall (linux-arm), const IFLA_LINKMODE ideal-int
+pkg syscall (linux-arm), const IFLA_MAP ideal-int
+pkg syscall (linux-arm), const IFLA_MASTER ideal-int
+pkg syscall (linux-arm), const IFLA_MAX ideal-int
+pkg syscall (linux-arm), const IFLA_MTU ideal-int
+pkg syscall (linux-arm), const IFLA_NET_NS_PID ideal-int
+pkg syscall (linux-arm), const IFLA_OPERSTATE ideal-int
+pkg syscall (linux-arm), const IFLA_PRIORITY ideal-int
+pkg syscall (linux-arm), const IFLA_PROTINFO ideal-int
+pkg syscall (linux-arm), const IFLA_QDISC ideal-int
+pkg syscall (linux-arm), const IFLA_STATS ideal-int
+pkg syscall (linux-arm), const IFLA_TXQLEN ideal-int
+pkg syscall (linux-arm), const IFLA_UNSPEC ideal-int
+pkg syscall (linux-arm), const IFLA_WEIGHT ideal-int
+pkg syscall (linux-arm), const IFLA_WIRELESS ideal-int
+pkg syscall (linux-arm), const IFNAMSIZ ideal-int
+pkg syscall (linux-arm), const IGNBRK ideal-int
+pkg syscall (linux-arm), const IGNCR ideal-int
+pkg syscall (linux-arm), const IGNPAR ideal-int
+pkg syscall (linux-arm), const IMAXBEL ideal-int
+pkg syscall (linux-arm), const INLCR ideal-int
+pkg syscall (linux-arm), const INPCK ideal-int
+pkg syscall (linux-arm), const IN_ACCESS ideal-int
+pkg syscall (linux-arm), const IN_ALL_EVENTS ideal-int
+pkg syscall (linux-arm), const IN_ATTRIB ideal-int
+pkg syscall (linux-arm), const IN_CLASSA_HOST ideal-int
+pkg syscall (linux-arm), const IN_CLASSA_MAX ideal-int
+pkg syscall (linux-arm), const IN_CLASSA_NET ideal-int
+pkg syscall (linux-arm), const IN_CLASSA_NSHIFT ideal-int
+pkg syscall (linux-arm), const IN_CLASSB_HOST ideal-int
+pkg syscall (linux-arm), const IN_CLASSB_MAX ideal-int
+pkg syscall (linux-arm), const IN_CLASSB_NET ideal-int
+pkg syscall (linux-arm), const IN_CLASSB_NSHIFT ideal-int
+pkg syscall (linux-arm), const IN_CLASSC_HOST ideal-int
+pkg syscall (linux-arm), const IN_CLASSC_NET ideal-int
+pkg syscall (linux-arm), const IN_CLASSC_NSHIFT ideal-int
+pkg syscall (linux-arm), const IN_CLOEXEC ideal-int
+pkg syscall (linux-arm), const IN_CLOSE ideal-int
+pkg syscall (linux-arm), const IN_CLOSE_NOWRITE ideal-int
+pkg syscall (linux-arm), const IN_CLOSE_WRITE ideal-int
+pkg syscall (linux-arm), const IN_CREATE ideal-int
+pkg syscall (linux-arm), const IN_DELETE ideal-int
+pkg syscall (linux-arm), const IN_DELETE_SELF ideal-int
+pkg syscall (linux-arm), const IN_DONT_FOLLOW ideal-int
+pkg syscall (linux-arm), const IN_EXCL_UNLINK ideal-int
+pkg syscall (linux-arm), const IN_IGNORED ideal-int
+pkg syscall (linux-arm), const IN_ISDIR ideal-int
+pkg syscall (linux-arm), const IN_LOOPBACKNET ideal-int
+pkg syscall (linux-arm), const IN_MASK_ADD ideal-int
+pkg syscall (linux-arm), const IN_MODIFY ideal-int
+pkg syscall (linux-arm), const IN_MOVE ideal-int
+pkg syscall (linux-arm), const IN_MOVED_FROM ideal-int
+pkg syscall (linux-arm), const IN_MOVED_TO ideal-int
+pkg syscall (linux-arm), const IN_MOVE_SELF ideal-int
+pkg syscall (linux-arm), const IN_NONBLOCK ideal-int
+pkg syscall (linux-arm), const IN_ONESHOT ideal-int
+pkg syscall (linux-arm), const IN_ONLYDIR ideal-int
+pkg syscall (linux-arm), const IN_OPEN ideal-int
+pkg syscall (linux-arm), const IN_Q_OVERFLOW ideal-int
+pkg syscall (linux-arm), const IN_UNMOUNT ideal-int
+pkg syscall (linux-arm), const IPPROTO_AH ideal-int
+pkg syscall (linux-arm), const IPPROTO_COMP ideal-int
+pkg syscall (linux-arm), const IPPROTO_DCCP ideal-int
+pkg syscall (linux-arm), const IPPROTO_DSTOPTS ideal-int
+pkg syscall (linux-arm), const IPPROTO_EGP ideal-int
+pkg syscall (linux-arm), const IPPROTO_ENCAP ideal-int
+pkg syscall (linux-arm), const IPPROTO_ESP ideal-int
+pkg syscall (linux-arm), const IPPROTO_FRAGMENT ideal-int
+pkg syscall (linux-arm), const IPPROTO_GRE ideal-int
+pkg syscall (linux-arm), const IPPROTO_HOPOPTS ideal-int
+pkg syscall (linux-arm), const IPPROTO_ICMP ideal-int
+pkg syscall (linux-arm), const IPPROTO_ICMPV6 ideal-int
+pkg syscall (linux-arm), const IPPROTO_IDP ideal-int
+pkg syscall (linux-arm), const IPPROTO_IGMP ideal-int
+pkg syscall (linux-arm), const IPPROTO_IPIP ideal-int
+pkg syscall (linux-arm), const IPPROTO_MTP ideal-int
+pkg syscall (linux-arm), const IPPROTO_NONE ideal-int
+pkg syscall (linux-arm), const IPPROTO_PIM ideal-int
+pkg syscall (linux-arm), const IPPROTO_PUP ideal-int
+pkg syscall (linux-arm), const IPPROTO_RAW ideal-int
+pkg syscall (linux-arm), const IPPROTO_ROUTING ideal-int
+pkg syscall (linux-arm), const IPPROTO_RSVP ideal-int
+pkg syscall (linux-arm), const IPPROTO_SCTP ideal-int
+pkg syscall (linux-arm), const IPPROTO_TP ideal-int
+pkg syscall (linux-arm), const IPPROTO_UDPLITE ideal-int
+pkg syscall (linux-arm), const IPV6_2292DSTOPTS ideal-int
+pkg syscall (linux-arm), const IPV6_2292HOPLIMIT ideal-int
+pkg syscall (linux-arm), const IPV6_2292HOPOPTS ideal-int
+pkg syscall (linux-arm), const IPV6_2292PKTINFO ideal-int
+pkg syscall (linux-arm), const IPV6_2292PKTOPTIONS ideal-int
+pkg syscall (linux-arm), const IPV6_2292RTHDR ideal-int
+pkg syscall (linux-arm), const IPV6_ADDRFORM ideal-int
+pkg syscall (linux-arm), const IPV6_ADD_MEMBERSHIP ideal-int
+pkg syscall (linux-arm), const IPV6_AUTHHDR ideal-int
+pkg syscall (linux-arm), const IPV6_CHECKSUM ideal-int
+pkg syscall (linux-arm), const IPV6_DROP_MEMBERSHIP ideal-int
+pkg syscall (linux-arm), const IPV6_DSTOPTS ideal-int
+pkg syscall (linux-arm), const IPV6_HOPLIMIT ideal-int
+pkg syscall (linux-arm), const IPV6_HOPOPTS ideal-int
+pkg syscall (linux-arm), const IPV6_IPSEC_POLICY ideal-int
+pkg syscall (linux-arm), const IPV6_JOIN_ANYCAST ideal-int
+pkg syscall (linux-arm), const IPV6_LEAVE_ANYCAST ideal-int
+pkg syscall (linux-arm), const IPV6_MTU ideal-int
+pkg syscall (linux-arm), const IPV6_MTU_DISCOVER ideal-int
+pkg syscall (linux-arm), const IPV6_NEXTHOP ideal-int
+pkg syscall (linux-arm), const IPV6_PKTINFO ideal-int
+pkg syscall (linux-arm), const IPV6_PMTUDISC_DO ideal-int
+pkg syscall (linux-arm), const IPV6_PMTUDISC_DONT ideal-int
+pkg syscall (linux-arm), const IPV6_PMTUDISC_PROBE ideal-int
+pkg syscall (linux-arm), const IPV6_PMTUDISC_WANT ideal-int
+pkg syscall (linux-arm), const IPV6_RECVDSTOPTS ideal-int
+pkg syscall (linux-arm), const IPV6_RECVERR ideal-int
+pkg syscall (linux-arm), const IPV6_RECVHOPLIMIT ideal-int
+pkg syscall (linux-arm), const IPV6_RECVHOPOPTS ideal-int
+pkg syscall (linux-arm), const IPV6_RECVPKTINFO ideal-int
+pkg syscall (linux-arm), const IPV6_RECVRTHDR ideal-int
+pkg syscall (linux-arm), const IPV6_RECVTCLASS ideal-int
+pkg syscall (linux-arm), const IPV6_ROUTER_ALERT ideal-int
+pkg syscall (linux-arm), const IPV6_RTHDR ideal-int
+pkg syscall (linux-arm), const IPV6_RTHDRDSTOPTS ideal-int
+pkg syscall (linux-arm), const IPV6_RTHDR_LOOSE ideal-int
+pkg syscall (linux-arm), const IPV6_RTHDR_STRICT ideal-int
+pkg syscall (linux-arm), const IPV6_RTHDR_TYPE_0 ideal-int
+pkg syscall (linux-arm), const IPV6_RXDSTOPTS ideal-int
+pkg syscall (linux-arm), const IPV6_RXHOPOPTS ideal-int
+pkg syscall (linux-arm), const IPV6_TCLASS ideal-int
+pkg syscall (linux-arm), const IPV6_XFRM_POLICY ideal-int
+pkg syscall (linux-arm), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (linux-arm), const IP_BLOCK_SOURCE ideal-int
+pkg syscall (linux-arm), const IP_DEFAULT_MULTICAST_LOOP ideal-int
+pkg syscall (linux-arm), const IP_DEFAULT_MULTICAST_TTL ideal-int
+pkg syscall (linux-arm), const IP_DF ideal-int
+pkg syscall (linux-arm), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
+pkg syscall (linux-arm), const IP_FREEBIND ideal-int
+pkg syscall (linux-arm), const IP_HDRINCL ideal-int
+pkg syscall (linux-arm), const IP_IPSEC_POLICY ideal-int
+pkg syscall (linux-arm), const IP_MAXPACKET ideal-int
+pkg syscall (linux-arm), const IP_MAX_MEMBERSHIPS ideal-int
+pkg syscall (linux-arm), const IP_MF ideal-int
+pkg syscall (linux-arm), const IP_MINTTL ideal-int
+pkg syscall (linux-arm), const IP_MSFILTER ideal-int
+pkg syscall (linux-arm), const IP_MSS ideal-int
+pkg syscall (linux-arm), const IP_MTU ideal-int
+pkg syscall (linux-arm), const IP_MTU_DISCOVER ideal-int
+pkg syscall (linux-arm), const IP_OFFMASK ideal-int
+pkg syscall (linux-arm), const IP_OPTIONS ideal-int
+pkg syscall (linux-arm), const IP_ORIGDSTADDR ideal-int
+pkg syscall (linux-arm), const IP_PASSSEC ideal-int
+pkg syscall (linux-arm), const IP_PKTINFO ideal-int
+pkg syscall (linux-arm), const IP_PKTOPTIONS ideal-int
+pkg syscall (linux-arm), const IP_PMTUDISC ideal-int
+pkg syscall (linux-arm), const IP_PMTUDISC_DO ideal-int
+pkg syscall (linux-arm), const IP_PMTUDISC_DONT ideal-int
+pkg syscall (linux-arm), const IP_PMTUDISC_PROBE ideal-int
+pkg syscall (linux-arm), const IP_PMTUDISC_WANT ideal-int
+pkg syscall (linux-arm), const IP_RECVERR ideal-int
+pkg syscall (linux-arm), const IP_RECVOPTS ideal-int
+pkg syscall (linux-arm), const IP_RECVORIGDSTADDR ideal-int
+pkg syscall (linux-arm), const IP_RECVRETOPTS ideal-int
+pkg syscall (linux-arm), const IP_RECVTOS ideal-int
+pkg syscall (linux-arm), const IP_RECVTTL ideal-int
+pkg syscall (linux-arm), const IP_RETOPTS ideal-int
+pkg syscall (linux-arm), const IP_RF ideal-int
+pkg syscall (linux-arm), const IP_ROUTER_ALERT ideal-int
+pkg syscall (linux-arm), const IP_TRANSPARENT ideal-int
+pkg syscall (linux-arm), const IP_UNBLOCK_SOURCE ideal-int
+pkg syscall (linux-arm), const IP_XFRM_POLICY ideal-int
+pkg syscall (linux-arm), const ISIG ideal-int
+pkg syscall (linux-arm), const ISTRIP ideal-int
+pkg syscall (linux-arm), const IUCLC ideal-int
+pkg syscall (linux-arm), const IUTF8 ideal-int
+pkg syscall (linux-arm), const IXANY ideal-int
+pkg syscall (linux-arm), const IXOFF ideal-int
+pkg syscall (linux-arm), const IXON ideal-int
+pkg syscall (linux-arm), const LINUX_REBOOT_CMD_CAD_OFF ideal-int
+pkg syscall (linux-arm), const LINUX_REBOOT_CMD_CAD_ON ideal-int
+pkg syscall (linux-arm), const LINUX_REBOOT_CMD_HALT ideal-int
+pkg syscall (linux-arm), const LINUX_REBOOT_CMD_KEXEC ideal-int
+pkg syscall (linux-arm), const LINUX_REBOOT_CMD_POWER_OFF ideal-int
+pkg syscall (linux-arm), const LINUX_REBOOT_CMD_RESTART ideal-int
+pkg syscall (linux-arm), const LINUX_REBOOT_CMD_RESTART2 ideal-int
+pkg syscall (linux-arm), const LINUX_REBOOT_CMD_SW_SUSPEND ideal-int
+pkg syscall (linux-arm), const LINUX_REBOOT_MAGIC1 ideal-int
+pkg syscall (linux-arm), const LINUX_REBOOT_MAGIC2 ideal-int
+pkg syscall (linux-arm), const LOCK_EX ideal-int
+pkg syscall (linux-arm), const LOCK_NB ideal-int
+pkg syscall (linux-arm), const LOCK_SH ideal-int
+pkg syscall (linux-arm), const LOCK_UN ideal-int
+pkg syscall (linux-arm), const MADV_DOFORK ideal-int
+pkg syscall (linux-arm), const MADV_DONTFORK ideal-int
+pkg syscall (linux-arm), const MADV_DONTNEED ideal-int
+pkg syscall (linux-arm), const MADV_HUGEPAGE ideal-int
+pkg syscall (linux-arm), const MADV_HWPOISON ideal-int
+pkg syscall (linux-arm), const MADV_MERGEABLE ideal-int
+pkg syscall (linux-arm), const MADV_NOHUGEPAGE ideal-int
+pkg syscall (linux-arm), const MADV_NORMAL ideal-int
+pkg syscall (linux-arm), const MADV_RANDOM ideal-int
+pkg syscall (linux-arm), const MADV_REMOVE ideal-int
+pkg syscall (linux-arm), const MADV_SEQUENTIAL ideal-int
+pkg syscall (linux-arm), const MADV_UNMERGEABLE ideal-int
+pkg syscall (linux-arm), const MADV_WILLNEED ideal-int
+pkg syscall (linux-arm), const MAP_ANON ideal-int
+pkg syscall (linux-arm), const MAP_ANONYMOUS ideal-int
+pkg syscall (linux-arm), const MAP_DENYWRITE ideal-int
+pkg syscall (linux-arm), const MAP_EXECUTABLE ideal-int
+pkg syscall (linux-arm), const MAP_FILE ideal-int
+pkg syscall (linux-arm), const MAP_FIXED ideal-int
+pkg syscall (linux-arm), const MAP_GROWSDOWN ideal-int
+pkg syscall (linux-arm), const MAP_LOCKED ideal-int
+pkg syscall (linux-arm), const MAP_NONBLOCK ideal-int
+pkg syscall (linux-arm), const MAP_NORESERVE ideal-int
+pkg syscall (linux-arm), const MAP_POPULATE ideal-int
+pkg syscall (linux-arm), const MAP_PRIVATE ideal-int
+pkg syscall (linux-arm), const MAP_SHARED ideal-int
+pkg syscall (linux-arm), const MAP_TYPE ideal-int
+pkg syscall (linux-arm), const MCL_CURRENT ideal-int
+pkg syscall (linux-arm), const MCL_FUTURE ideal-int
+pkg syscall (linux-arm), const MNT_DETACH ideal-int
+pkg syscall (linux-arm), const MNT_EXPIRE ideal-int
+pkg syscall (linux-arm), const MNT_FORCE ideal-int
+pkg syscall (linux-arm), const MSG_CMSG_CLOEXEC ideal-int
+pkg syscall (linux-arm), const MSG_CONFIRM ideal-int
+pkg syscall (linux-arm), const MSG_CTRUNC ideal-int
+pkg syscall (linux-arm), const MSG_DONTROUTE ideal-int
+pkg syscall (linux-arm), const MSG_DONTWAIT ideal-int
+pkg syscall (linux-arm), const MSG_EOR ideal-int
+pkg syscall (linux-arm), const MSG_ERRQUEUE ideal-int
+pkg syscall (linux-arm), const MSG_FIN ideal-int
+pkg syscall (linux-arm), const MSG_MORE ideal-int
+pkg syscall (linux-arm), const MSG_NOSIGNAL ideal-int
+pkg syscall (linux-arm), const MSG_OOB ideal-int
+pkg syscall (linux-arm), const MSG_PEEK ideal-int
+pkg syscall (linux-arm), const MSG_PROXY ideal-int
+pkg syscall (linux-arm), const MSG_RST ideal-int
+pkg syscall (linux-arm), const MSG_SYN ideal-int
+pkg syscall (linux-arm), const MSG_TRUNC ideal-int
+pkg syscall (linux-arm), const MSG_TRYHARD ideal-int
+pkg syscall (linux-arm), const MSG_WAITALL ideal-int
+pkg syscall (linux-arm), const MSG_WAITFORONE ideal-int
+pkg syscall (linux-arm), const MS_ACTIVE ideal-int
+pkg syscall (linux-arm), const MS_ASYNC ideal-int
+pkg syscall (linux-arm), const MS_BIND ideal-int
+pkg syscall (linux-arm), const MS_DIRSYNC ideal-int
+pkg syscall (linux-arm), const MS_INVALIDATE ideal-int
+pkg syscall (linux-arm), const MS_I_VERSION ideal-int
+pkg syscall (linux-arm), const MS_KERNMOUNT ideal-int
+pkg syscall (linux-arm), const MS_MANDLOCK ideal-int
+pkg syscall (linux-arm), const MS_MGC_MSK ideal-int
+pkg syscall (linux-arm), const MS_MGC_VAL ideal-int
+pkg syscall (linux-arm), const MS_MOVE ideal-int
+pkg syscall (linux-arm), const MS_NOATIME ideal-int
+pkg syscall (linux-arm), const MS_NODEV ideal-int
+pkg syscall (linux-arm), const MS_NODIRATIME ideal-int
+pkg syscall (linux-arm), const MS_NOEXEC ideal-int
+pkg syscall (linux-arm), const MS_NOSUID ideal-int
+pkg syscall (linux-arm), const MS_NOUSER ideal-int
+pkg syscall (linux-arm), const MS_POSIXACL ideal-int
+pkg syscall (linux-arm), const MS_PRIVATE ideal-int
+pkg syscall (linux-arm), const MS_RDONLY ideal-int
+pkg syscall (linux-arm), const MS_REC ideal-int
+pkg syscall (linux-arm), const MS_RELATIME ideal-int
+pkg syscall (linux-arm), const MS_REMOUNT ideal-int
+pkg syscall (linux-arm), const MS_RMT_MASK ideal-int
+pkg syscall (linux-arm), const MS_SHARED ideal-int
+pkg syscall (linux-arm), const MS_SILENT ideal-int
+pkg syscall (linux-arm), const MS_SLAVE ideal-int
+pkg syscall (linux-arm), const MS_STRICTATIME ideal-int
+pkg syscall (linux-arm), const MS_SYNC ideal-int
+pkg syscall (linux-arm), const MS_SYNCHRONOUS ideal-int
+pkg syscall (linux-arm), const MS_UNBINDABLE ideal-int
+pkg syscall (linux-arm), const NAME_MAX ideal-int
+pkg syscall (linux-arm), const NETLINK_ADD_MEMBERSHIP ideal-int
+pkg syscall (linux-arm), const NETLINK_AUDIT ideal-int
+pkg syscall (linux-arm), const NETLINK_BROADCAST_ERROR ideal-int
+pkg syscall (linux-arm), const NETLINK_CONNECTOR ideal-int
+pkg syscall (linux-arm), const NETLINK_DNRTMSG ideal-int
+pkg syscall (linux-arm), const NETLINK_DROP_MEMBERSHIP ideal-int
+pkg syscall (linux-arm), const NETLINK_ECRYPTFS ideal-int
+pkg syscall (linux-arm), const NETLINK_FIB_LOOKUP ideal-int
+pkg syscall (linux-arm), const NETLINK_FIREWALL ideal-int
+pkg syscall (linux-arm), const NETLINK_GENERIC ideal-int
+pkg syscall (linux-arm), const NETLINK_INET_DIAG ideal-int
+pkg syscall (linux-arm), const NETLINK_IP6_FW ideal-int
+pkg syscall (linux-arm), const NETLINK_ISCSI ideal-int
+pkg syscall (linux-arm), const NETLINK_KOBJECT_UEVENT ideal-int
+pkg syscall (linux-arm), const NETLINK_NETFILTER ideal-int
+pkg syscall (linux-arm), const NETLINK_NFLOG ideal-int
+pkg syscall (linux-arm), const NETLINK_NO_ENOBUFS ideal-int
+pkg syscall (linux-arm), const NETLINK_PKTINFO ideal-int
+pkg syscall (linux-arm), const NETLINK_RDMA ideal-int
+pkg syscall (linux-arm), const NETLINK_ROUTE ideal-int
+pkg syscall (linux-arm), const NETLINK_SCSITRANSPORT ideal-int
+pkg syscall (linux-arm), const NETLINK_SELINUX ideal-int
+pkg syscall (linux-arm), const NETLINK_UNUSED ideal-int
+pkg syscall (linux-arm), const NETLINK_USERSOCK ideal-int
+pkg syscall (linux-arm), const NETLINK_XFRM ideal-int
+pkg syscall (linux-arm), const NLA_ALIGNTO ideal-int
+pkg syscall (linux-arm), const NLA_F_NESTED ideal-int
+pkg syscall (linux-arm), const NLA_F_NET_BYTEORDER ideal-int
+pkg syscall (linux-arm), const NLA_HDRLEN ideal-int
+pkg syscall (linux-arm), const NLMSG_ALIGNTO ideal-int
+pkg syscall (linux-arm), const NLMSG_DONE ideal-int
+pkg syscall (linux-arm), const NLMSG_ERROR ideal-int
+pkg syscall (linux-arm), const NLMSG_HDRLEN ideal-int
+pkg syscall (linux-arm), const NLMSG_MIN_TYPE ideal-int
+pkg syscall (linux-arm), const NLMSG_NOOP ideal-int
+pkg syscall (linux-arm), const NLMSG_OVERRUN ideal-int
+pkg syscall (linux-arm), const NLM_F_ACK ideal-int
+pkg syscall (linux-arm), const NLM_F_APPEND ideal-int
+pkg syscall (linux-arm), const NLM_F_ATOMIC ideal-int
+pkg syscall (linux-arm), const NLM_F_CREATE ideal-int
+pkg syscall (linux-arm), const NLM_F_DUMP ideal-int
+pkg syscall (linux-arm), const NLM_F_ECHO ideal-int
+pkg syscall (linux-arm), const NLM_F_EXCL ideal-int
+pkg syscall (linux-arm), const NLM_F_MATCH ideal-int
+pkg syscall (linux-arm), const NLM_F_MULTI ideal-int
+pkg syscall (linux-arm), const NLM_F_REPLACE ideal-int
+pkg syscall (linux-arm), const NLM_F_REQUEST ideal-int
+pkg syscall (linux-arm), const NLM_F_ROOT ideal-int
+pkg syscall (linux-arm), const NOFLSH ideal-int
+pkg syscall (linux-arm), const OCRNL ideal-int
+pkg syscall (linux-arm), const OFDEL ideal-int
+pkg syscall (linux-arm), const OFILL ideal-int
+pkg syscall (linux-arm), const OLCUC ideal-int
+pkg syscall (linux-arm), const ONLCR ideal-int
+pkg syscall (linux-arm), const ONLRET ideal-int
+pkg syscall (linux-arm), const ONOCR ideal-int
+pkg syscall (linux-arm), const OPOST ideal-int
+pkg syscall (linux-arm), const O_ACCMODE ideal-int
+pkg syscall (linux-arm), const O_DIRECT ideal-int
+pkg syscall (linux-arm), const O_DIRECTORY ideal-int
+pkg syscall (linux-arm), const O_DSYNC ideal-int
+pkg syscall (linux-arm), const O_FSYNC ideal-int
+pkg syscall (linux-arm), const O_LARGEFILE ideal-int
+pkg syscall (linux-arm), const O_NDELAY ideal-int
+pkg syscall (linux-arm), const O_NOATIME ideal-int
+pkg syscall (linux-arm), const O_NOFOLLOW ideal-int
+pkg syscall (linux-arm), const O_RSYNC ideal-int
+pkg syscall (linux-arm), const PACKET_ADD_MEMBERSHIP ideal-int
+pkg syscall (linux-arm), const PACKET_BROADCAST ideal-int
+pkg syscall (linux-arm), const PACKET_DROP_MEMBERSHIP ideal-int
+pkg syscall (linux-arm), const PACKET_FASTROUTE ideal-int
+pkg syscall (linux-arm), const PACKET_HOST ideal-int
+pkg syscall (linux-arm), const PACKET_LOOPBACK ideal-int
+pkg syscall (linux-arm), const PACKET_MR_ALLMULTI ideal-int
+pkg syscall (linux-arm), const PACKET_MR_MULTICAST ideal-int
+pkg syscall (linux-arm), const PACKET_MR_PROMISC ideal-int
+pkg syscall (linux-arm), const PACKET_MULTICAST ideal-int
+pkg syscall (linux-arm), const PACKET_OTHERHOST ideal-int
+pkg syscall (linux-arm), const PACKET_OUTGOING ideal-int
+pkg syscall (linux-arm), const PACKET_RECV_OUTPUT ideal-int
+pkg syscall (linux-arm), const PACKET_RX_RING ideal-int
+pkg syscall (linux-arm), const PACKET_STATISTICS ideal-int
+pkg syscall (linux-arm), const PARENB ideal-int
+pkg syscall (linux-arm), const PARMRK ideal-int
+pkg syscall (linux-arm), const PARODD ideal-int
+pkg syscall (linux-arm), const PENDIN ideal-int
+pkg syscall (linux-arm), const PROT_EXEC ideal-int
+pkg syscall (linux-arm), const PROT_GROWSDOWN ideal-int
+pkg syscall (linux-arm), const PROT_GROWSUP ideal-int
+pkg syscall (linux-arm), const PROT_NONE ideal-int
+pkg syscall (linux-arm), const PROT_READ ideal-int
+pkg syscall (linux-arm), const PROT_WRITE ideal-int
+pkg syscall (linux-arm), const PR_CAPBSET_DROP ideal-int
+pkg syscall (linux-arm), const PR_CAPBSET_READ ideal-int
+pkg syscall (linux-arm), const PR_CLEAR_SECCOMP_FILTER ideal-int
+pkg syscall (linux-arm), const PR_ENDIAN_BIG ideal-int
+pkg syscall (linux-arm), const PR_ENDIAN_LITTLE ideal-int
+pkg syscall (linux-arm), const PR_ENDIAN_PPC_LITTLE ideal-int
+pkg syscall (linux-arm), const PR_FPEMU_NOPRINT ideal-int
+pkg syscall (linux-arm), const PR_FPEMU_SIGFPE ideal-int
+pkg syscall (linux-arm), const PR_FP_EXC_ASYNC ideal-int
+pkg syscall (linux-arm), const PR_FP_EXC_DISABLED ideal-int
+pkg syscall (linux-arm), const PR_FP_EXC_DIV ideal-int
+pkg syscall (linux-arm), const PR_FP_EXC_INV ideal-int
+pkg syscall (linux-arm), const PR_FP_EXC_NONRECOV ideal-int
+pkg syscall (linux-arm), const PR_FP_EXC_OVF ideal-int
+pkg syscall (linux-arm), const PR_FP_EXC_PRECISE ideal-int
+pkg syscall (linux-arm), const PR_FP_EXC_RES ideal-int
+pkg syscall (linux-arm), const PR_FP_EXC_SW_ENABLE ideal-int
+pkg syscall (linux-arm), const PR_FP_EXC_UND ideal-int
+pkg syscall (linux-arm), const PR_GET_DUMPABLE ideal-int
+pkg syscall (linux-arm), const PR_GET_ENDIAN ideal-int
+pkg syscall (linux-arm), const PR_GET_FPEMU ideal-int
+pkg syscall (linux-arm), const PR_GET_FPEXC ideal-int
+pkg syscall (linux-arm), const PR_GET_KEEPCAPS ideal-int
+pkg syscall (linux-arm), const PR_GET_NAME ideal-int
+pkg syscall (linux-arm), const PR_GET_PDEATHSIG ideal-int
+pkg syscall (linux-arm), const PR_GET_SECCOMP ideal-int
+pkg syscall (linux-arm), const PR_GET_SECCOMP_FILTER ideal-int
+pkg syscall (linux-arm), const PR_GET_SECUREBITS ideal-int
+pkg syscall (linux-arm), const PR_GET_TIMERSLACK ideal-int
+pkg syscall (linux-arm), const PR_GET_TIMING ideal-int
+pkg syscall (linux-arm), const PR_GET_TSC ideal-int
+pkg syscall (linux-arm), const PR_GET_UNALIGN ideal-int
+pkg syscall (linux-arm), const PR_MCE_KILL ideal-int
+pkg syscall (linux-arm), const PR_MCE_KILL_CLEAR ideal-int
+pkg syscall (linux-arm), const PR_MCE_KILL_DEFAULT ideal-int
+pkg syscall (linux-arm), const PR_MCE_KILL_EARLY ideal-int
+pkg syscall (linux-arm), const PR_MCE_KILL_GET ideal-int
+pkg syscall (linux-arm), const PR_MCE_KILL_LATE ideal-int
+pkg syscall (linux-arm), const PR_MCE_KILL_SET ideal-int
+pkg syscall (linux-arm), const PR_SECCOMP_FILTER_EVENT ideal-int
+pkg syscall (linux-arm), const PR_SECCOMP_FILTER_SYSCALL ideal-int
+pkg syscall (linux-arm), const PR_SET_DUMPABLE ideal-int
+pkg syscall (linux-arm), const PR_SET_ENDIAN ideal-int
+pkg syscall (linux-arm), const PR_SET_FPEMU ideal-int
+pkg syscall (linux-arm), const PR_SET_FPEXC ideal-int
+pkg syscall (linux-arm), const PR_SET_KEEPCAPS ideal-int
+pkg syscall (linux-arm), const PR_SET_NAME ideal-int
+pkg syscall (linux-arm), const PR_SET_PDEATHSIG ideal-int
+pkg syscall (linux-arm), const PR_SET_PTRACER ideal-int
+pkg syscall (linux-arm), const PR_SET_SECCOMP ideal-int
+pkg syscall (linux-arm), const PR_SET_SECCOMP_FILTER ideal-int
+pkg syscall (linux-arm), const PR_SET_SECUREBITS ideal-int
+pkg syscall (linux-arm), const PR_SET_TIMERSLACK ideal-int
+pkg syscall (linux-arm), const PR_SET_TIMING ideal-int
+pkg syscall (linux-arm), const PR_SET_TSC ideal-int
+pkg syscall (linux-arm), const PR_SET_UNALIGN ideal-int
+pkg syscall (linux-arm), const PR_TASK_PERF_EVENTS_DISABLE ideal-int
+pkg syscall (linux-arm), const PR_TASK_PERF_EVENTS_ENABLE ideal-int
+pkg syscall (linux-arm), const PR_TIMING_STATISTICAL ideal-int
+pkg syscall (linux-arm), const PR_TIMING_TIMESTAMP ideal-int
+pkg syscall (linux-arm), const PR_TSC_ENABLE ideal-int
+pkg syscall (linux-arm), const PR_TSC_SIGSEGV ideal-int
+pkg syscall (linux-arm), const PR_UNALIGN_NOPRINT ideal-int
+pkg syscall (linux-arm), const PR_UNALIGN_SIGBUS ideal-int
+pkg syscall (linux-arm), const PTRACE_ATTACH ideal-int
+pkg syscall (linux-arm), const PTRACE_CONT ideal-int
+pkg syscall (linux-arm), const PTRACE_DETACH ideal-int
+pkg syscall (linux-arm), const PTRACE_EVENT_CLONE ideal-int
+pkg syscall (linux-arm), const PTRACE_EVENT_EXEC ideal-int
+pkg syscall (linux-arm), const PTRACE_EVENT_EXIT ideal-int
+pkg syscall (linux-arm), const PTRACE_EVENT_FORK ideal-int
+pkg syscall (linux-arm), const PTRACE_EVENT_VFORK ideal-int
+pkg syscall (linux-arm), const PTRACE_EVENT_VFORK_DONE ideal-int
+pkg syscall (linux-arm), const PTRACE_GETCRUNCHREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_GETEVENTMSG ideal-int
+pkg syscall (linux-arm), const PTRACE_GETFPREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_GETHBPREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_GETREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_GETREGSET ideal-int
+pkg syscall (linux-arm), const PTRACE_GETSIGINFO ideal-int
+pkg syscall (linux-arm), const PTRACE_GETVFPREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_GETWMMXREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_GET_THREAD_AREA ideal-int
+pkg syscall (linux-arm), const PTRACE_KILL ideal-int
+pkg syscall (linux-arm), const PTRACE_OLDSETOPTIONS ideal-int
+pkg syscall (linux-arm), const PTRACE_O_MASK ideal-int
+pkg syscall (linux-arm), const PTRACE_O_TRACECLONE ideal-int
+pkg syscall (linux-arm), const PTRACE_O_TRACEEXEC ideal-int
+pkg syscall (linux-arm), const PTRACE_O_TRACEEXIT ideal-int
+pkg syscall (linux-arm), const PTRACE_O_TRACEFORK ideal-int
+pkg syscall (linux-arm), const PTRACE_O_TRACESYSGOOD ideal-int
+pkg syscall (linux-arm), const PTRACE_O_TRACEVFORK ideal-int
+pkg syscall (linux-arm), const PTRACE_O_TRACEVFORKDONE ideal-int
+pkg syscall (linux-arm), const PTRACE_PEEKDATA ideal-int
+pkg syscall (linux-arm), const PTRACE_PEEKTEXT ideal-int
+pkg syscall (linux-arm), const PTRACE_PEEKUSR ideal-int
+pkg syscall (linux-arm), const PTRACE_POKEDATA ideal-int
+pkg syscall (linux-arm), const PTRACE_POKETEXT ideal-int
+pkg syscall (linux-arm), const PTRACE_POKEUSR ideal-int
+pkg syscall (linux-arm), const PTRACE_SETCRUNCHREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_SETFPREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_SETHBPREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_SETOPTIONS ideal-int
+pkg syscall (linux-arm), const PTRACE_SETREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_SETREGSET ideal-int
+pkg syscall (linux-arm), const PTRACE_SETSIGINFO ideal-int
+pkg syscall (linux-arm), const PTRACE_SETVFPREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_SETWMMXREGS ideal-int
+pkg syscall (linux-arm), const PTRACE_SET_SYSCALL ideal-int
+pkg syscall (linux-arm), const PTRACE_SINGLESTEP ideal-int
+pkg syscall (linux-arm), const PTRACE_SYSCALL ideal-int
+pkg syscall (linux-arm), const PTRACE_TRACEME ideal-int
+pkg syscall (linux-arm), const PT_DATA_ADDR ideal-int
+pkg syscall (linux-arm), const PT_TEXT_ADDR ideal-int
+pkg syscall (linux-arm), const PT_TEXT_END_ADDR ideal-int
+pkg syscall (linux-arm), const PathMax ideal-int
+pkg syscall (linux-arm), const RLIMIT_AS ideal-int
+pkg syscall (linux-arm), const RLIMIT_CORE ideal-int
+pkg syscall (linux-arm), const RLIMIT_CPU ideal-int
+pkg syscall (linux-arm), const RLIMIT_DATA ideal-int
+pkg syscall (linux-arm), const RLIMIT_FSIZE ideal-int
+pkg syscall (linux-arm), const RLIMIT_NOFILE ideal-int
+pkg syscall (linux-arm), const RLIMIT_STACK ideal-int
+pkg syscall (linux-arm), const RLIM_INFINITY ideal-int
+pkg syscall (linux-arm), const RTAX_ADVMSS ideal-int
+pkg syscall (linux-arm), const RTAX_CWND ideal-int
+pkg syscall (linux-arm), const RTAX_FEATURES ideal-int
+pkg syscall (linux-arm), const RTAX_FEATURE_ALLFRAG ideal-int
+pkg syscall (linux-arm), const RTAX_FEATURE_ECN ideal-int
+pkg syscall (linux-arm), const RTAX_FEATURE_SACK ideal-int
+pkg syscall (linux-arm), const RTAX_FEATURE_TIMESTAMP ideal-int
+pkg syscall (linux-arm), const RTAX_HOPLIMIT ideal-int
+pkg syscall (linux-arm), const RTAX_INITCWND ideal-int
+pkg syscall (linux-arm), const RTAX_INITRWND ideal-int
+pkg syscall (linux-arm), const RTAX_LOCK ideal-int
+pkg syscall (linux-arm), const RTAX_MAX ideal-int
+pkg syscall (linux-arm), const RTAX_MTU ideal-int
+pkg syscall (linux-arm), const RTAX_REORDERING ideal-int
+pkg syscall (linux-arm), const RTAX_RTO_MIN ideal-int
+pkg syscall (linux-arm), const RTAX_RTT ideal-int
+pkg syscall (linux-arm), const RTAX_RTTVAR ideal-int
+pkg syscall (linux-arm), const RTAX_SSTHRESH ideal-int
+pkg syscall (linux-arm), const RTAX_UNSPEC ideal-int
+pkg syscall (linux-arm), const RTAX_WINDOW ideal-int
+pkg syscall (linux-arm), const RTA_ALIGNTO ideal-int
+pkg syscall (linux-arm), const RTA_CACHEINFO ideal-int
+pkg syscall (linux-arm), const RTA_DST ideal-int
+pkg syscall (linux-arm), const RTA_FLOW ideal-int
+pkg syscall (linux-arm), const RTA_GATEWAY ideal-int
+pkg syscall (linux-arm), const RTA_IIF ideal-int
+pkg syscall (linux-arm), const RTA_MAX ideal-int
+pkg syscall (linux-arm), const RTA_METRICS ideal-int
+pkg syscall (linux-arm), const RTA_MULTIPATH ideal-int
+pkg syscall (linux-arm), const RTA_OIF ideal-int
+pkg syscall (linux-arm), const RTA_PREFSRC ideal-int
+pkg syscall (linux-arm), const RTA_PRIORITY ideal-int
+pkg syscall (linux-arm), const RTA_SRC ideal-int
+pkg syscall (linux-arm), const RTA_TABLE ideal-int
+pkg syscall (linux-arm), const RTA_UNSPEC ideal-int
+pkg syscall (linux-arm), const RTCF_DIRECTSRC ideal-int
+pkg syscall (linux-arm), const RTCF_DOREDIRECT ideal-int
+pkg syscall (linux-arm), const RTCF_LOG ideal-int
+pkg syscall (linux-arm), const RTCF_MASQ ideal-int
+pkg syscall (linux-arm), const RTCF_NAT ideal-int
+pkg syscall (linux-arm), const RTCF_VALVE ideal-int
+pkg syscall (linux-arm), const RTF_ADDRCLASSMASK ideal-int
+pkg syscall (linux-arm), const RTF_ADDRCONF ideal-int
+pkg syscall (linux-arm), const RTF_ALLONLINK ideal-int
+pkg syscall (linux-arm), const RTF_BROADCAST ideal-int
+pkg syscall (linux-arm), const RTF_CACHE ideal-int
+pkg syscall (linux-arm), const RTF_DEFAULT ideal-int
+pkg syscall (linux-arm), const RTF_DYNAMIC ideal-int
+pkg syscall (linux-arm), const RTF_FLOW ideal-int
+pkg syscall (linux-arm), const RTF_GATEWAY ideal-int
+pkg syscall (linux-arm), const RTF_HOST ideal-int
+pkg syscall (linux-arm), const RTF_INTERFACE ideal-int
+pkg syscall (linux-arm), const RTF_IRTT ideal-int
+pkg syscall (linux-arm), const RTF_LINKRT ideal-int
+pkg syscall (linux-arm), const RTF_LOCAL ideal-int
+pkg syscall (linux-arm), const RTF_MODIFIED ideal-int
+pkg syscall (linux-arm), const RTF_MSS ideal-int
+pkg syscall (linux-arm), const RTF_MTU ideal-int
+pkg syscall (linux-arm), const RTF_MULTICAST ideal-int
+pkg syscall (linux-arm), const RTF_NAT ideal-int
+pkg syscall (linux-arm), const RTF_NOFORWARD ideal-int
+pkg syscall (linux-arm), const RTF_NONEXTHOP ideal-int
+pkg syscall (linux-arm), const RTF_NOPMTUDISC ideal-int
+pkg syscall (linux-arm), const RTF_POLICY ideal-int
+pkg syscall (linux-arm), const RTF_REINSTATE ideal-int
+pkg syscall (linux-arm), const RTF_REJECT ideal-int
+pkg syscall (linux-arm), const RTF_STATIC ideal-int
+pkg syscall (linux-arm), const RTF_THROW ideal-int
+pkg syscall (linux-arm), const RTF_UP ideal-int
+pkg syscall (linux-arm), const RTF_WINDOW ideal-int
+pkg syscall (linux-arm), const RTF_XRESOLVE ideal-int
+pkg syscall (linux-arm), const RTM_BASE ideal-int
+pkg syscall (linux-arm), const RTM_DELACTION ideal-int
+pkg syscall (linux-arm), const RTM_DELADDR ideal-int
+pkg syscall (linux-arm), const RTM_DELADDRLABEL ideal-int
+pkg syscall (linux-arm), const RTM_DELLINK ideal-int
+pkg syscall (linux-arm), const RTM_DELNEIGH ideal-int
+pkg syscall (linux-arm), const RTM_DELQDISC ideal-int
+pkg syscall (linux-arm), const RTM_DELROUTE ideal-int
+pkg syscall (linux-arm), const RTM_DELRULE ideal-int
+pkg syscall (linux-arm), const RTM_DELTCLASS ideal-int
+pkg syscall (linux-arm), const RTM_DELTFILTER ideal-int
+pkg syscall (linux-arm), const RTM_F_CLONED ideal-int
+pkg syscall (linux-arm), const RTM_F_EQUALIZE ideal-int
+pkg syscall (linux-arm), const RTM_F_NOTIFY ideal-int
+pkg syscall (linux-arm), const RTM_F_PREFIX ideal-int
+pkg syscall (linux-arm), const RTM_GETACTION ideal-int
+pkg syscall (linux-arm), const RTM_GETADDR ideal-int
+pkg syscall (linux-arm), const RTM_GETADDRLABEL ideal-int
+pkg syscall (linux-arm), const RTM_GETANYCAST ideal-int
+pkg syscall (linux-arm), const RTM_GETDCB ideal-int
+pkg syscall (linux-arm), const RTM_GETLINK ideal-int
+pkg syscall (linux-arm), const RTM_GETMULTICAST ideal-int
+pkg syscall (linux-arm), const RTM_GETNEIGH ideal-int
+pkg syscall (linux-arm), const RTM_GETNEIGHTBL ideal-int
+pkg syscall (linux-arm), const RTM_GETQDISC ideal-int
+pkg syscall (linux-arm), const RTM_GETROUTE ideal-int
+pkg syscall (linux-arm), const RTM_GETRULE ideal-int
+pkg syscall (linux-arm), const RTM_GETTCLASS ideal-int
+pkg syscall (linux-arm), const RTM_GETTFILTER ideal-int
+pkg syscall (linux-arm), const RTM_MAX ideal-int
+pkg syscall (linux-arm), const RTM_NEWACTION ideal-int
+pkg syscall (linux-arm), const RTM_NEWADDR ideal-int
+pkg syscall (linux-arm), const RTM_NEWADDRLABEL ideal-int
+pkg syscall (linux-arm), const RTM_NEWLINK ideal-int
+pkg syscall (linux-arm), const RTM_NEWNDUSEROPT ideal-int
+pkg syscall (linux-arm), const RTM_NEWNEIGH ideal-int
+pkg syscall (linux-arm), const RTM_NEWNEIGHTBL ideal-int
+pkg syscall (linux-arm), const RTM_NEWPREFIX ideal-int
+pkg syscall (linux-arm), const RTM_NEWQDISC ideal-int
+pkg syscall (linux-arm), const RTM_NEWROUTE ideal-int
+pkg syscall (linux-arm), const RTM_NEWRULE ideal-int
+pkg syscall (linux-arm), const RTM_NEWTCLASS ideal-int
+pkg syscall (linux-arm), const RTM_NEWTFILTER ideal-int
+pkg syscall (linux-arm), const RTM_NR_FAMILIES ideal-int
+pkg syscall (linux-arm), const RTM_NR_MSGTYPES ideal-int
+pkg syscall (linux-arm), const RTM_SETDCB ideal-int
+pkg syscall (linux-arm), const RTM_SETLINK ideal-int
+pkg syscall (linux-arm), const RTM_SETNEIGHTBL ideal-int
+pkg syscall (linux-arm), const RTNH_ALIGNTO ideal-int
+pkg syscall (linux-arm), const RTNH_F_DEAD ideal-int
+pkg syscall (linux-arm), const RTNH_F_ONLINK ideal-int
+pkg syscall (linux-arm), const RTNH_F_PERVASIVE ideal-int
+pkg syscall (linux-arm), const RTN_ANYCAST ideal-int
+pkg syscall (linux-arm), const RTN_BLACKHOLE ideal-int
+pkg syscall (linux-arm), const RTN_BROADCAST ideal-int
+pkg syscall (linux-arm), const RTN_LOCAL ideal-int
+pkg syscall (linux-arm), const RTN_MAX ideal-int
+pkg syscall (linux-arm), const RTN_MULTICAST ideal-int
+pkg syscall (linux-arm), const RTN_NAT ideal-int
+pkg syscall (linux-arm), const RTN_PROHIBIT ideal-int
+pkg syscall (linux-arm), const RTN_THROW ideal-int
+pkg syscall (linux-arm), const RTN_UNICAST ideal-int
+pkg syscall (linux-arm), const RTN_UNREACHABLE ideal-int
+pkg syscall (linux-arm), const RTN_UNSPEC ideal-int
+pkg syscall (linux-arm), const RTN_XRESOLVE ideal-int
+pkg syscall (linux-arm), const RTPROT_BIRD ideal-int
+pkg syscall (linux-arm), const RTPROT_BOOT ideal-int
+pkg syscall (linux-arm), const RTPROT_DHCP ideal-int
+pkg syscall (linux-arm), const RTPROT_DNROUTED ideal-int
+pkg syscall (linux-arm), const RTPROT_GATED ideal-int
+pkg syscall (linux-arm), const RTPROT_KERNEL ideal-int
+pkg syscall (linux-arm), const RTPROT_MRT ideal-int
+pkg syscall (linux-arm), const RTPROT_NTK ideal-int
+pkg syscall (linux-arm), const RTPROT_RA ideal-int
+pkg syscall (linux-arm), const RTPROT_REDIRECT ideal-int
+pkg syscall (linux-arm), const RTPROT_STATIC ideal-int
+pkg syscall (linux-arm), const RTPROT_UNSPEC ideal-int
+pkg syscall (linux-arm), const RTPROT_XORP ideal-int
+pkg syscall (linux-arm), const RTPROT_ZEBRA ideal-int
+pkg syscall (linux-arm), const RT_CLASS_DEFAULT ideal-int
+pkg syscall (linux-arm), const RT_CLASS_LOCAL ideal-int
+pkg syscall (linux-arm), const RT_CLASS_MAIN ideal-int
+pkg syscall (linux-arm), const RT_CLASS_MAX ideal-int
+pkg syscall (linux-arm), const RT_CLASS_UNSPEC ideal-int
+pkg syscall (linux-arm), const RT_SCOPE_HOST ideal-int
+pkg syscall (linux-arm), const RT_SCOPE_LINK ideal-int
+pkg syscall (linux-arm), const RT_SCOPE_NOWHERE ideal-int
+pkg syscall (linux-arm), const RT_SCOPE_SITE ideal-int
+pkg syscall (linux-arm), const RT_SCOPE_UNIVERSE ideal-int
+pkg syscall (linux-arm), const RT_TABLE_COMPAT ideal-int
+pkg syscall (linux-arm), const RT_TABLE_DEFAULT ideal-int
+pkg syscall (linux-arm), const RT_TABLE_LOCAL ideal-int
+pkg syscall (linux-arm), const RT_TABLE_MAIN ideal-int
+pkg syscall (linux-arm), const RT_TABLE_MAX ideal-int
+pkg syscall (linux-arm), const RT_TABLE_UNSPEC ideal-int
+pkg syscall (linux-arm), const RUSAGE_CHILDREN ideal-int
+pkg syscall (linux-arm), const RUSAGE_SELF ideal-int
+pkg syscall (linux-arm), const RUSAGE_THREAD ideal-int
+pkg syscall (linux-arm), const SCM_CREDENTIALS ideal-int
+pkg syscall (linux-arm), const SCM_RIGHTS ideal-int
+pkg syscall (linux-arm), const SCM_TIMESTAMP ideal-int
+pkg syscall (linux-arm), const SCM_TIMESTAMPING ideal-int
+pkg syscall (linux-arm), const SCM_TIMESTAMPNS ideal-int
+pkg syscall (linux-arm), const SIGCHLD Signal
+pkg syscall (linux-arm), const SIGCLD Signal
+pkg syscall (linux-arm), const SIGCONT Signal
+pkg syscall (linux-arm), const SIGIO Signal
+pkg syscall (linux-arm), const SIGIOT Signal
+pkg syscall (linux-arm), const SIGPOLL Signal
+pkg syscall (linux-arm), const SIGPROF Signal
+pkg syscall (linux-arm), const SIGPWR Signal
+pkg syscall (linux-arm), const SIGSTKFLT Signal
+pkg syscall (linux-arm), const SIGSTOP Signal
+pkg syscall (linux-arm), const SIGSYS Signal
+pkg syscall (linux-arm), const SIGTSTP Signal
+pkg syscall (linux-arm), const SIGTTIN Signal
+pkg syscall (linux-arm), const SIGTTOU Signal
+pkg syscall (linux-arm), const SIGUNUSED Signal
+pkg syscall (linux-arm), const SIGURG Signal
+pkg syscall (linux-arm), const SIGUSR1 Signal
+pkg syscall (linux-arm), const SIGUSR2 Signal
+pkg syscall (linux-arm), const SIGVTALRM Signal
+pkg syscall (linux-arm), const SIGWINCH Signal
+pkg syscall (linux-arm), const SIGXCPU Signal
+pkg syscall (linux-arm), const SIGXFSZ Signal
+pkg syscall (linux-arm), const SIOCADDDLCI ideal-int
+pkg syscall (linux-arm), const SIOCADDMULTI ideal-int
+pkg syscall (linux-arm), const SIOCADDRT ideal-int
+pkg syscall (linux-arm), const SIOCATMARK ideal-int
+pkg syscall (linux-arm), const SIOCDARP ideal-int
+pkg syscall (linux-arm), const SIOCDELDLCI ideal-int
+pkg syscall (linux-arm), const SIOCDELMULTI ideal-int
+pkg syscall (linux-arm), const SIOCDELRT ideal-int
+pkg syscall (linux-arm), const SIOCDEVPRIVATE ideal-int
+pkg syscall (linux-arm), const SIOCDIFADDR ideal-int
+pkg syscall (linux-arm), const SIOCDRARP ideal-int
+pkg syscall (linux-arm), const SIOCGARP ideal-int
+pkg syscall (linux-arm), const SIOCGIFADDR ideal-int
+pkg syscall (linux-arm), const SIOCGIFBR ideal-int
+pkg syscall (linux-arm), const SIOCGIFBRDADDR ideal-int
+pkg syscall (linux-arm), const SIOCGIFCONF ideal-int
+pkg syscall (linux-arm), const SIOCGIFCOUNT ideal-int
+pkg syscall (linux-arm), const SIOCGIFDSTADDR ideal-int
+pkg syscall (linux-arm), const SIOCGIFENCAP ideal-int
+pkg syscall (linux-arm), const SIOCGIFFLAGS ideal-int
+pkg syscall (linux-arm), const SIOCGIFHWADDR ideal-int
+pkg syscall (linux-arm), const SIOCGIFINDEX ideal-int
+pkg syscall (linux-arm), const SIOCGIFMAP ideal-int
+pkg syscall (linux-arm), const SIOCGIFMEM ideal-int
+pkg syscall (linux-arm), const SIOCGIFMETRIC ideal-int
+pkg syscall (linux-arm), const SIOCGIFMTU ideal-int
+pkg syscall (linux-arm), const SIOCGIFNAME ideal-int
+pkg syscall (linux-arm), const SIOCGIFNETMASK ideal-int
+pkg syscall (linux-arm), const SIOCGIFPFLAGS ideal-int
+pkg syscall (linux-arm), const SIOCGIFSLAVE ideal-int
+pkg syscall (linux-arm), const SIOCGIFTXQLEN ideal-int
+pkg syscall (linux-arm), const SIOCGPGRP ideal-int
+pkg syscall (linux-arm), const SIOCGRARP ideal-int
+pkg syscall (linux-arm), const SIOCGSTAMP ideal-int
+pkg syscall (linux-arm), const SIOCGSTAMPNS ideal-int
+pkg syscall (linux-arm), const SIOCPROTOPRIVATE ideal-int
+pkg syscall (linux-arm), const SIOCRTMSG ideal-int
+pkg syscall (linux-arm), const SIOCSARP ideal-int
+pkg syscall (linux-arm), const SIOCSIFADDR ideal-int
+pkg syscall (linux-arm), const SIOCSIFBR ideal-int
+pkg syscall (linux-arm), const SIOCSIFBRDADDR ideal-int
+pkg syscall (linux-arm), const SIOCSIFDSTADDR ideal-int
+pkg syscall (linux-arm), const SIOCSIFENCAP ideal-int
+pkg syscall (linux-arm), const SIOCSIFFLAGS ideal-int
+pkg syscall (linux-arm), const SIOCSIFHWADDR ideal-int
+pkg syscall (linux-arm), const SIOCSIFHWBROADCAST ideal-int
+pkg syscall (linux-arm), const SIOCSIFLINK ideal-int
+pkg syscall (linux-arm), const SIOCSIFMAP ideal-int
+pkg syscall (linux-arm), const SIOCSIFMEM ideal-int
+pkg syscall (linux-arm), const SIOCSIFMETRIC ideal-int
+pkg syscall (linux-arm), const SIOCSIFMTU ideal-int
+pkg syscall (linux-arm), const SIOCSIFNAME ideal-int
+pkg syscall (linux-arm), const SIOCSIFNETMASK ideal-int
+pkg syscall (linux-arm), const SIOCSIFPFLAGS ideal-int
+pkg syscall (linux-arm), const SIOCSIFSLAVE ideal-int
+pkg syscall (linux-arm), const SIOCSIFTXQLEN ideal-int
+pkg syscall (linux-arm), const SIOCSPGRP ideal-int
+pkg syscall (linux-arm), const SIOCSRARP ideal-int
+pkg syscall (linux-arm), const SOCK_CLOEXEC ideal-int
+pkg syscall (linux-arm), const SOCK_DCCP ideal-int
+pkg syscall (linux-arm), const SOCK_NONBLOCK ideal-int
+pkg syscall (linux-arm), const SOCK_PACKET ideal-int
+pkg syscall (linux-arm), const SOCK_RDM ideal-int
+pkg syscall (linux-arm), const SOL_AAL ideal-int
+pkg syscall (linux-arm), const SOL_ATM ideal-int
+pkg syscall (linux-arm), const SOL_DECNET ideal-int
+pkg syscall (linux-arm), const SOL_ICMPV6 ideal-int
+pkg syscall (linux-arm), const SOL_IP ideal-int
+pkg syscall (linux-arm), const SOL_IPV6 ideal-int
+pkg syscall (linux-arm), const SOL_IRDA ideal-int
+pkg syscall (linux-arm), const SOL_PACKET ideal-int
+pkg syscall (linux-arm), const SOL_RAW ideal-int
+pkg syscall (linux-arm), const SOL_TCP ideal-int
+pkg syscall (linux-arm), const SOL_X25 ideal-int
+pkg syscall (linux-arm), const SO_ACCEPTCONN ideal-int
+pkg syscall (linux-arm), const SO_ATTACH_FILTER ideal-int
+pkg syscall (linux-arm), const SO_BINDTODEVICE ideal-int
+pkg syscall (linux-arm), const SO_BSDCOMPAT ideal-int
+pkg syscall (linux-arm), const SO_DEBUG ideal-int
+pkg syscall (linux-arm), const SO_DETACH_FILTER ideal-int
+pkg syscall (linux-arm), const SO_DOMAIN ideal-int
+pkg syscall (linux-arm), const SO_ERROR ideal-int
+pkg syscall (linux-arm), const SO_MARK ideal-int
+pkg syscall (linux-arm), const SO_NO_CHECK ideal-int
+pkg syscall (linux-arm), const SO_OOBINLINE ideal-int
+pkg syscall (linux-arm), const SO_PASSCRED ideal-int
+pkg syscall (linux-arm), const SO_PASSSEC ideal-int
+pkg syscall (linux-arm), const SO_PEERCRED ideal-int
+pkg syscall (linux-arm), const SO_PEERNAME ideal-int
+pkg syscall (linux-arm), const SO_PEERSEC ideal-int
+pkg syscall (linux-arm), const SO_PRIORITY ideal-int
+pkg syscall (linux-arm), const SO_PROTOCOL ideal-int
+pkg syscall (linux-arm), const SO_RCVBUFFORCE ideal-int
+pkg syscall (linux-arm), const SO_RCVLOWAT ideal-int
+pkg syscall (linux-arm), const SO_RCVTIMEO ideal-int
+pkg syscall (linux-arm), const SO_RXQ_OVFL ideal-int
+pkg syscall (linux-arm), const SO_SECURITY_AUTHENTICATION ideal-int
+pkg syscall (linux-arm), const SO_SECURITY_ENCRYPTION_NETWORK ideal-int
+pkg syscall (linux-arm), const SO_SECURITY_ENCRYPTION_TRANSPORT ideal-int
+pkg syscall (linux-arm), const SO_SNDBUFFORCE ideal-int
+pkg syscall (linux-arm), const SO_SNDLOWAT ideal-int
+pkg syscall (linux-arm), const SO_SNDTIMEO ideal-int
+pkg syscall (linux-arm), const SO_TIMESTAMP ideal-int
+pkg syscall (linux-arm), const SO_TIMESTAMPING ideal-int
+pkg syscall (linux-arm), const SO_TIMESTAMPNS ideal-int
+pkg syscall (linux-arm), const SO_TYPE ideal-int
+pkg syscall (linux-arm), const SYS_ACCEPT ideal-int
+pkg syscall (linux-arm), const SYS_ACCEPT4 ideal-int
+pkg syscall (linux-arm), const SYS_ACCESS ideal-int
+pkg syscall (linux-arm), const SYS_ACCT ideal-int
+pkg syscall (linux-arm), const SYS_ADD_KEY ideal-int
+pkg syscall (linux-arm), const SYS_ADJTIMEX ideal-int
+pkg syscall (linux-arm), const SYS_ALARM ideal-int
+pkg syscall (linux-arm), const SYS_ARM_FADVISE64_64 ideal-int
+pkg syscall (linux-arm), const SYS_ARM_SYNC_FILE_RANGE ideal-int
+pkg syscall (linux-arm), const SYS_BDFLUSH ideal-int
+pkg syscall (linux-arm), const SYS_BIND ideal-int
+pkg syscall (linux-arm), const SYS_BRK ideal-int
+pkg syscall (linux-arm), const SYS_CAPGET ideal-int
+pkg syscall (linux-arm), const SYS_CAPSET ideal-int
+pkg syscall (linux-arm), const SYS_CHDIR ideal-int
+pkg syscall (linux-arm), const SYS_CHMOD ideal-int
+pkg syscall (linux-arm), const SYS_CHOWN ideal-int
+pkg syscall (linux-arm), const SYS_CHOWN32 ideal-int
+pkg syscall (linux-arm), const SYS_CHROOT ideal-int
+pkg syscall (linux-arm), const SYS_CLOCK_ADJTIME ideal-int
+pkg syscall (linux-arm), const SYS_CLOCK_GETRES ideal-int
+pkg syscall (linux-arm), const SYS_CLOCK_GETTIME ideal-int
+pkg syscall (linux-arm), const SYS_CLOCK_NANOSLEEP ideal-int
+pkg syscall (linux-arm), const SYS_CLOCK_SETTIME ideal-int
+pkg syscall (linux-arm), const SYS_CLONE ideal-int
+pkg syscall (linux-arm), const SYS_CLOSE ideal-int
+pkg syscall (linux-arm), const SYS_CONNECT ideal-int
+pkg syscall (linux-arm), const SYS_CREAT ideal-int
+pkg syscall (linux-arm), const SYS_DELETE_MODULE ideal-int
+pkg syscall (linux-arm), const SYS_DUP ideal-int
+pkg syscall (linux-arm), const SYS_DUP2 ideal-int
+pkg syscall (linux-arm), const SYS_DUP3 ideal-int
+pkg syscall (linux-arm), const SYS_EPOLL_CREATE ideal-int
+pkg syscall (linux-arm), const SYS_EPOLL_CREATE1 ideal-int
+pkg syscall (linux-arm), const SYS_EPOLL_CTL ideal-int
+pkg syscall (linux-arm), const SYS_EPOLL_PWAIT ideal-int
+pkg syscall (linux-arm), const SYS_EPOLL_WAIT ideal-int
+pkg syscall (linux-arm), const SYS_EVENTFD ideal-int
+pkg syscall (linux-arm), const SYS_EVENTFD2 ideal-int
+pkg syscall (linux-arm), const SYS_EXECVE ideal-int
+pkg syscall (linux-arm), const SYS_EXIT ideal-int
+pkg syscall (linux-arm), const SYS_EXIT_GROUP ideal-int
+pkg syscall (linux-arm), const SYS_FACCESSAT ideal-int
+pkg syscall (linux-arm), const SYS_FALLOCATE ideal-int
+pkg syscall (linux-arm), const SYS_FANOTIFY_INIT ideal-int
+pkg syscall (linux-arm), const SYS_FANOTIFY_MARK ideal-int
+pkg syscall (linux-arm), const SYS_FCHDIR ideal-int
+pkg syscall (linux-arm), const SYS_FCHMOD ideal-int
+pkg syscall (linux-arm), const SYS_FCHMODAT ideal-int
+pkg syscall (linux-arm), const SYS_FCHOWN ideal-int
+pkg syscall (linux-arm), const SYS_FCHOWN32 ideal-int
+pkg syscall (linux-arm), const SYS_FCHOWNAT ideal-int
+pkg syscall (linux-arm), const SYS_FCNTL ideal-int
+pkg syscall (linux-arm), const SYS_FCNTL64 ideal-int
+pkg syscall (linux-arm), const SYS_FDATASYNC ideal-int
+pkg syscall (linux-arm), const SYS_FGETXATTR ideal-int
+pkg syscall (linux-arm), const SYS_FLISTXATTR ideal-int
+pkg syscall (linux-arm), const SYS_FLOCK ideal-int
+pkg syscall (linux-arm), const SYS_FORK ideal-int
+pkg syscall (linux-arm), const SYS_FREMOVEXATTR ideal-int
+pkg syscall (linux-arm), const SYS_FSETXATTR ideal-int
+pkg syscall (linux-arm), const SYS_FSTAT ideal-int
+pkg syscall (linux-arm), const SYS_FSTAT64 ideal-int
+pkg syscall (linux-arm), const SYS_FSTATAT64 ideal-int
+pkg syscall (linux-arm), const SYS_FSTATFS ideal-int
+pkg syscall (linux-arm), const SYS_FSTATFS64 ideal-int
+pkg syscall (linux-arm), const SYS_FSYNC ideal-int
+pkg syscall (linux-arm), const SYS_FTRUNCATE ideal-int
+pkg syscall (linux-arm), const SYS_FTRUNCATE64 ideal-int
+pkg syscall (linux-arm), const SYS_FUTEX ideal-int
+pkg syscall (linux-arm), const SYS_FUTIMESAT ideal-int
+pkg syscall (linux-arm), const SYS_GETCPU ideal-int
+pkg syscall (linux-arm), const SYS_GETCWD ideal-int
+pkg syscall (linux-arm), const SYS_GETDENTS ideal-int
+pkg syscall (linux-arm), const SYS_GETDENTS64 ideal-int
+pkg syscall (linux-arm), const SYS_GETEGID ideal-int
+pkg syscall (linux-arm), const SYS_GETEGID32 ideal-int
+pkg syscall (linux-arm), const SYS_GETEUID ideal-int
+pkg syscall (linux-arm), const SYS_GETEUID32 ideal-int
+pkg syscall (linux-arm), const SYS_GETGID ideal-int
+pkg syscall (linux-arm), const SYS_GETGID32 ideal-int
+pkg syscall (linux-arm), const SYS_GETGROUPS ideal-int
+pkg syscall (linux-arm), const SYS_GETGROUPS32 ideal-int
+pkg syscall (linux-arm), const SYS_GETITIMER ideal-int
+pkg syscall (linux-arm), const SYS_GETPEERNAME ideal-int
+pkg syscall (linux-arm), const SYS_GETPGID ideal-int
+pkg syscall (linux-arm), const SYS_GETPGRP ideal-int
+pkg syscall (linux-arm), const SYS_GETPID ideal-int
+pkg syscall (linux-arm), const SYS_GETPPID ideal-int
+pkg syscall (linux-arm), const SYS_GETPRIORITY ideal-int
+pkg syscall (linux-arm), const SYS_GETRESGID ideal-int
+pkg syscall (linux-arm), const SYS_GETRESGID32 ideal-int
+pkg syscall (linux-arm), const SYS_GETRESUID ideal-int
+pkg syscall (linux-arm), const SYS_GETRESUID32 ideal-int
+pkg syscall (linux-arm), const SYS_GETRLIMIT ideal-int
+pkg syscall (linux-arm), const SYS_GETRUSAGE ideal-int
+pkg syscall (linux-arm), const SYS_GETSID ideal-int
+pkg syscall (linux-arm), const SYS_GETSOCKNAME ideal-int
+pkg syscall (linux-arm), const SYS_GETSOCKOPT ideal-int
+pkg syscall (linux-arm), const SYS_GETTID ideal-int
+pkg syscall (linux-arm), const SYS_GETTIMEOFDAY ideal-int
+pkg syscall (linux-arm), const SYS_GETUID ideal-int
+pkg syscall (linux-arm), const SYS_GETUID32 ideal-int
+pkg syscall (linux-arm), const SYS_GETXATTR ideal-int
+pkg syscall (linux-arm), const SYS_GET_MEMPOLICY ideal-int
+pkg syscall (linux-arm), const SYS_GET_ROBUST_LIST ideal-int
+pkg syscall (linux-arm), const SYS_INIT_MODULE ideal-int
+pkg syscall (linux-arm), const SYS_INOTIFY_ADD_WATCH ideal-int
+pkg syscall (linux-arm), const SYS_INOTIFY_INIT ideal-int
+pkg syscall (linux-arm), const SYS_INOTIFY_INIT1 ideal-int
+pkg syscall (linux-arm), const SYS_INOTIFY_RM_WATCH ideal-int
+pkg syscall (linux-arm), const SYS_IOCTL ideal-int
+pkg syscall (linux-arm), const SYS_IOPRIO_GET ideal-int
+pkg syscall (linux-arm), const SYS_IOPRIO_SET ideal-int
+pkg syscall (linux-arm), const SYS_IO_CANCEL ideal-int
+pkg syscall (linux-arm), const SYS_IO_DESTROY ideal-int
+pkg syscall (linux-arm), const SYS_IO_GETEVENTS ideal-int
+pkg syscall (linux-arm), const SYS_IO_SETUP ideal-int
+pkg syscall (linux-arm), const SYS_IO_SUBMIT ideal-int
+pkg syscall (linux-arm), const SYS_IPC ideal-int
+pkg syscall (linux-arm), const SYS_KEXEC_LOAD ideal-int
+pkg syscall (linux-arm), const SYS_KEYCTL ideal-int
+pkg syscall (linux-arm), const SYS_KILL ideal-int
+pkg syscall (linux-arm), const SYS_LCHOWN ideal-int
+pkg syscall (linux-arm), const SYS_LCHOWN32 ideal-int
+pkg syscall (linux-arm), const SYS_LGETXATTR ideal-int
+pkg syscall (linux-arm), const SYS_LINK ideal-int
+pkg syscall (linux-arm), const SYS_LINKAT ideal-int
+pkg syscall (linux-arm), const SYS_LISTEN ideal-int
+pkg syscall (linux-arm), const SYS_LISTXATTR ideal-int
+pkg syscall (linux-arm), const SYS_LLISTXATTR ideal-int
+pkg syscall (linux-arm), const SYS_LOOKUP_DCOOKIE ideal-int
+pkg syscall (linux-arm), const SYS_LREMOVEXATTR ideal-int
+pkg syscall (linux-arm), const SYS_LSEEK ideal-int
+pkg syscall (linux-arm), const SYS_LSETXATTR ideal-int
+pkg syscall (linux-arm), const SYS_LSTAT ideal-int
+pkg syscall (linux-arm), const SYS_LSTAT64 ideal-int
+pkg syscall (linux-arm), const SYS_MADVISE ideal-int
+pkg syscall (linux-arm), const SYS_MBIND ideal-int
+pkg syscall (linux-arm), const SYS_MINCORE ideal-int
+pkg syscall (linux-arm), const SYS_MKDIR ideal-int
+pkg syscall (linux-arm), const SYS_MKDIRAT ideal-int
+pkg syscall (linux-arm), const SYS_MKNOD ideal-int
+pkg syscall (linux-arm), const SYS_MKNODAT ideal-int
+pkg syscall (linux-arm), const SYS_MLOCK ideal-int
+pkg syscall (linux-arm), const SYS_MLOCKALL ideal-int
+pkg syscall (linux-arm), const SYS_MMAP ideal-int
+pkg syscall (linux-arm), const SYS_MMAP2 ideal-int
+pkg syscall (linux-arm), const SYS_MOUNT ideal-int
+pkg syscall (linux-arm), const SYS_MOVE_PAGES ideal-int
+pkg syscall (linux-arm), const SYS_MPROTECT ideal-int
+pkg syscall (linux-arm), const SYS_MQ_GETSETATTR ideal-int
+pkg syscall (linux-arm), const SYS_MQ_NOTIFY ideal-int
+pkg syscall (linux-arm), const SYS_MQ_OPEN ideal-int
+pkg syscall (linux-arm), const SYS_MQ_TIMEDRECEIVE ideal-int
+pkg syscall (linux-arm), const SYS_MQ_TIMEDSEND ideal-int
+pkg syscall (linux-arm), const SYS_MQ_UNLINK ideal-int
+pkg syscall (linux-arm), const SYS_MREMAP ideal-int
+pkg syscall (linux-arm), const SYS_MSGCTL ideal-int
+pkg syscall (linux-arm), const SYS_MSGGET ideal-int
+pkg syscall (linux-arm), const SYS_MSGRCV ideal-int
+pkg syscall (linux-arm), const SYS_MSGSND ideal-int
+pkg syscall (linux-arm), const SYS_MSYNC ideal-int
+pkg syscall (linux-arm), const SYS_MUNLOCK ideal-int
+pkg syscall (linux-arm), const SYS_MUNLOCKALL ideal-int
+pkg syscall (linux-arm), const SYS_MUNMAP ideal-int
+pkg syscall (linux-arm), const SYS_NAME_TO_HANDLE_AT ideal-int
+pkg syscall (linux-arm), const SYS_NANOSLEEP ideal-int
+pkg syscall (linux-arm), const SYS_NFSSERVCTL ideal-int
+pkg syscall (linux-arm), const SYS_NICE ideal-int
+pkg syscall (linux-arm), const SYS_OABI_SYSCALL_BASE ideal-int
+pkg syscall (linux-arm), const SYS_OPEN ideal-int
+pkg syscall (linux-arm), const SYS_OPENAT ideal-int
+pkg syscall (linux-arm), const SYS_OPEN_BY_HANDLE_AT ideal-int
+pkg syscall (linux-arm), const SYS_PAUSE ideal-int
+pkg syscall (linux-arm), const SYS_PCICONFIG_IOBASE ideal-int
+pkg syscall (linux-arm), const SYS_PCICONFIG_READ ideal-int
+pkg syscall (linux-arm), const SYS_PCICONFIG_WRITE ideal-int
+pkg syscall (linux-arm), const SYS_PERF_EVENT_OPEN ideal-int
+pkg syscall (linux-arm), const SYS_PERSONALITY ideal-int
+pkg syscall (linux-arm), const SYS_PIPE ideal-int
+pkg syscall (linux-arm), const SYS_PIPE2 ideal-int
+pkg syscall (linux-arm), const SYS_PIVOT_ROOT ideal-int
+pkg syscall (linux-arm), const SYS_POLL ideal-int
+pkg syscall (linux-arm), const SYS_PPOLL ideal-int
+pkg syscall (linux-arm), const SYS_PRCTL ideal-int
+pkg syscall (linux-arm), const SYS_PREAD64 ideal-int
+pkg syscall (linux-arm), const SYS_PREADV ideal-int
+pkg syscall (linux-arm), const SYS_PRLIMIT64 ideal-int
+pkg syscall (linux-arm), const SYS_PROCESS_VM_READV ideal-int
+pkg syscall (linux-arm), const SYS_PROCESS_VM_WRITEV ideal-int
+pkg syscall (linux-arm), const SYS_PSELECT6 ideal-int
+pkg syscall (linux-arm), const SYS_PTRACE ideal-int
+pkg syscall (linux-arm), const SYS_PWRITE64 ideal-int
+pkg syscall (linux-arm), const SYS_PWRITEV ideal-int
+pkg syscall (linux-arm), const SYS_QUOTACTL ideal-int
+pkg syscall (linux-arm), const SYS_READ ideal-int
+pkg syscall (linux-arm), const SYS_READAHEAD ideal-int
+pkg syscall (linux-arm), const SYS_READDIR ideal-int
+pkg syscall (linux-arm), const SYS_READLINK ideal-int
+pkg syscall (linux-arm), const SYS_READLINKAT ideal-int
+pkg syscall (linux-arm), const SYS_READV ideal-int
+pkg syscall (linux-arm), const SYS_REBOOT ideal-int
+pkg syscall (linux-arm), const SYS_RECV ideal-int
+pkg syscall (linux-arm), const SYS_RECVFROM ideal-int
+pkg syscall (linux-arm), const SYS_RECVMMSG ideal-int
+pkg syscall (linux-arm), const SYS_RECVMSG ideal-int
+pkg syscall (linux-arm), const SYS_REMAP_FILE_PAGES ideal-int
+pkg syscall (linux-arm), const SYS_REMOVEXATTR ideal-int
+pkg syscall (linux-arm), const SYS_RENAME ideal-int
+pkg syscall (linux-arm), const SYS_RENAMEAT ideal-int
+pkg syscall (linux-arm), const SYS_REQUEST_KEY ideal-int
+pkg syscall (linux-arm), const SYS_RESTART_SYSCALL ideal-int
+pkg syscall (linux-arm), const SYS_RMDIR ideal-int
+pkg syscall (linux-arm), const SYS_RT_SIGACTION ideal-int
+pkg syscall (linux-arm), const SYS_RT_SIGPENDING ideal-int
+pkg syscall (linux-arm), const SYS_RT_SIGPROCMASK ideal-int
+pkg syscall (linux-arm), const SYS_RT_SIGQUEUEINFO ideal-int
+pkg syscall (linux-arm), const SYS_RT_SIGRETURN ideal-int
+pkg syscall (linux-arm), const SYS_RT_SIGSUSPEND ideal-int
+pkg syscall (linux-arm), const SYS_RT_SIGTIMEDWAIT ideal-int
+pkg syscall (linux-arm), const SYS_RT_TGSIGQUEUEINFO ideal-int
+pkg syscall (linux-arm), const SYS_SCHED_GETAFFINITY ideal-int
+pkg syscall (linux-arm), const SYS_SCHED_GETPARAM ideal-int
+pkg syscall (linux-arm), const SYS_SCHED_GETSCHEDULER ideal-int
+pkg syscall (linux-arm), const SYS_SCHED_GET_PRIORITY_MAX ideal-int
+pkg syscall (linux-arm), const SYS_SCHED_GET_PRIORITY_MIN ideal-int
+pkg syscall (linux-arm), const SYS_SCHED_RR_GET_INTERVAL ideal-int
+pkg syscall (linux-arm), const SYS_SCHED_SETAFFINITY ideal-int
+pkg syscall (linux-arm), const SYS_SCHED_SETPARAM ideal-int
+pkg syscall (linux-arm), const SYS_SCHED_SETSCHEDULER ideal-int
+pkg syscall (linux-arm), const SYS_SCHED_YIELD ideal-int
+pkg syscall (linux-arm), const SYS_SELECT ideal-int
+pkg syscall (linux-arm), const SYS_SEMCTL ideal-int
+pkg syscall (linux-arm), const SYS_SEMGET ideal-int
+pkg syscall (linux-arm), const SYS_SEMOP ideal-int
+pkg syscall (linux-arm), const SYS_SEMTIMEDOP ideal-int
+pkg syscall (linux-arm), const SYS_SEND ideal-int
+pkg syscall (linux-arm), const SYS_SENDFILE ideal-int
+pkg syscall (linux-arm), const SYS_SENDFILE64 ideal-int
+pkg syscall (linux-arm), const SYS_SENDMMSG ideal-int
+pkg syscall (linux-arm), const SYS_SENDMSG ideal-int
+pkg syscall (linux-arm), const SYS_SENDTO ideal-int
+pkg syscall (linux-arm), const SYS_SETDOMAINNAME ideal-int
+pkg syscall (linux-arm), const SYS_SETFSGID ideal-int
+pkg syscall (linux-arm), const SYS_SETFSGID32 ideal-int
+pkg syscall (linux-arm), const SYS_SETFSUID ideal-int
+pkg syscall (linux-arm), const SYS_SETFSUID32 ideal-int
+pkg syscall (linux-arm), const SYS_SETGID ideal-int
+pkg syscall (linux-arm), const SYS_SETGID32 ideal-int
+pkg syscall (linux-arm), const SYS_SETGROUPS ideal-int
+pkg syscall (linux-arm), const SYS_SETGROUPS32 ideal-int
+pkg syscall (linux-arm), const SYS_SETHOSTNAME ideal-int
+pkg syscall (linux-arm), const SYS_SETITIMER ideal-int
+pkg syscall (linux-arm), const SYS_SETNS ideal-int
+pkg syscall (linux-arm), const SYS_SETPGID ideal-int
+pkg syscall (linux-arm), const SYS_SETPRIORITY ideal-int
+pkg syscall (linux-arm), const SYS_SETREGID ideal-int
+pkg syscall (linux-arm), const SYS_SETREGID32 ideal-int
+pkg syscall (linux-arm), const SYS_SETRESGID ideal-int
+pkg syscall (linux-arm), const SYS_SETRESGID32 ideal-int
+pkg syscall (linux-arm), const SYS_SETRESUID ideal-int
+pkg syscall (linux-arm), const SYS_SETRESUID32 ideal-int
+pkg syscall (linux-arm), const SYS_SETREUID ideal-int
+pkg syscall (linux-arm), const SYS_SETREUID32 ideal-int
+pkg syscall (linux-arm), const SYS_SETRLIMIT ideal-int
+pkg syscall (linux-arm), const SYS_SETSID ideal-int
+pkg syscall (linux-arm), const SYS_SETSOCKOPT ideal-int
+pkg syscall (linux-arm), const SYS_SETTIMEOFDAY ideal-int
+pkg syscall (linux-arm), const SYS_SETUID ideal-int
+pkg syscall (linux-arm), const SYS_SETUID32 ideal-int
+pkg syscall (linux-arm), const SYS_SETXATTR ideal-int
+pkg syscall (linux-arm), const SYS_SET_MEMPOLICY ideal-int
+pkg syscall (linux-arm), const SYS_SET_ROBUST_LIST ideal-int
+pkg syscall (linux-arm), const SYS_SET_TID_ADDRESS ideal-int
+pkg syscall (linux-arm), const SYS_SHMAT ideal-int
+pkg syscall (linux-arm), const SYS_SHMCTL ideal-int
+pkg syscall (linux-arm), const SYS_SHMDT ideal-int
+pkg syscall (linux-arm), const SYS_SHMGET ideal-int
+pkg syscall (linux-arm), const SYS_SHUTDOWN ideal-int
+pkg syscall (linux-arm), const SYS_SIGACTION ideal-int
+pkg syscall (linux-arm), const SYS_SIGALTSTACK ideal-int
+pkg syscall (linux-arm), const SYS_SIGNALFD ideal-int
+pkg syscall (linux-arm), const SYS_SIGNALFD4 ideal-int
+pkg syscall (linux-arm), const SYS_SIGPENDING ideal-int
+pkg syscall (linux-arm), const SYS_SIGPROCMASK ideal-int
+pkg syscall (linux-arm), const SYS_SIGRETURN ideal-int
+pkg syscall (linux-arm), const SYS_SIGSUSPEND ideal-int
+pkg syscall (linux-arm), const SYS_SOCKET ideal-int
+pkg syscall (linux-arm), const SYS_SOCKETCALL ideal-int
+pkg syscall (linux-arm), const SYS_SOCKETPAIR ideal-int
+pkg syscall (linux-arm), const SYS_SPLICE ideal-int
+pkg syscall (linux-arm), const SYS_STAT ideal-int
+pkg syscall (linux-arm), const SYS_STAT64 ideal-int
+pkg syscall (linux-arm), const SYS_STATFS ideal-int
+pkg syscall (linux-arm), const SYS_STATFS64 ideal-int
+pkg syscall (linux-arm), const SYS_STIME ideal-int
+pkg syscall (linux-arm), const SYS_SWAPOFF ideal-int
+pkg syscall (linux-arm), const SYS_SWAPON ideal-int
+pkg syscall (linux-arm), const SYS_SYMLINK ideal-int
+pkg syscall (linux-arm), const SYS_SYMLINKAT ideal-int
+pkg syscall (linux-arm), const SYS_SYNC ideal-int
+pkg syscall (linux-arm), const SYS_SYNCFS ideal-int
+pkg syscall (linux-arm), const SYS_SYSCALL ideal-int
+pkg syscall (linux-arm), const SYS_SYSCALL_BASE ideal-int
+pkg syscall (linux-arm), const SYS_SYSFS ideal-int
+pkg syscall (linux-arm), const SYS_SYSINFO ideal-int
+pkg syscall (linux-arm), const SYS_SYSLOG ideal-int
+pkg syscall (linux-arm), const SYS_TEE ideal-int
+pkg syscall (linux-arm), const SYS_TGKILL ideal-int
+pkg syscall (linux-arm), const SYS_TIME ideal-int
+pkg syscall (linux-arm), const SYS_TIMERFD_CREATE ideal-int
+pkg syscall (linux-arm), const SYS_TIMERFD_GETTIME ideal-int
+pkg syscall (linux-arm), const SYS_TIMERFD_SETTIME ideal-int
+pkg syscall (linux-arm), const SYS_TIMER_CREATE ideal-int
+pkg syscall (linux-arm), const SYS_TIMER_DELETE ideal-int
+pkg syscall (linux-arm), const SYS_TIMER_GETOVERRUN ideal-int
+pkg syscall (linux-arm), const SYS_TIMER_GETTIME ideal-int
+pkg syscall (linux-arm), const SYS_TIMER_SETTIME ideal-int
+pkg syscall (linux-arm), const SYS_TIMES ideal-int
+pkg syscall (linux-arm), const SYS_TKILL ideal-int
+pkg syscall (linux-arm), const SYS_TRUNCATE ideal-int
+pkg syscall (linux-arm), const SYS_TRUNCATE64 ideal-int
+pkg syscall (linux-arm), const SYS_UGETRLIMIT ideal-int
+pkg syscall (linux-arm), const SYS_UMASK ideal-int
+pkg syscall (linux-arm), const SYS_UMOUNT ideal-int
+pkg syscall (linux-arm), const SYS_UMOUNT2 ideal-int
+pkg syscall (linux-arm), const SYS_UNAME ideal-int
+pkg syscall (linux-arm), const SYS_UNLINK ideal-int
+pkg syscall (linux-arm), const SYS_UNLINKAT ideal-int
+pkg syscall (linux-arm), const SYS_UNSHARE ideal-int
+pkg syscall (linux-arm), const SYS_USELIB ideal-int
+pkg syscall (linux-arm), const SYS_USTAT ideal-int
+pkg syscall (linux-arm), const SYS_UTIME ideal-int
+pkg syscall (linux-arm), const SYS_UTIMENSAT ideal-int
+pkg syscall (linux-arm), const SYS_UTIMES ideal-int
+pkg syscall (linux-arm), const SYS_VFORK ideal-int
+pkg syscall (linux-arm), const SYS_VHANGUP ideal-int
+pkg syscall (linux-arm), const SYS_VMSPLICE ideal-int
+pkg syscall (linux-arm), const SYS_VSERVER ideal-int
+pkg syscall (linux-arm), const SYS_WAIT4 ideal-int
+pkg syscall (linux-arm), const SYS_WAITID ideal-int
+pkg syscall (linux-arm), const SYS_WRITE ideal-int
+pkg syscall (linux-arm), const SYS_WRITEV ideal-int
+pkg syscall (linux-arm), const SYS__LLSEEK ideal-int
+pkg syscall (linux-arm), const SYS__NEWSELECT ideal-int
+pkg syscall (linux-arm), const SYS__SYSCTL ideal-int
+pkg syscall (linux-arm), const S_BLKSIZE ideal-int
+pkg syscall (linux-arm), const S_IEXEC ideal-int
+pkg syscall (linux-arm), const S_IREAD ideal-int
+pkg syscall (linux-arm), const S_IRGRP ideal-int
+pkg syscall (linux-arm), const S_IROTH ideal-int
+pkg syscall (linux-arm), const S_IRWXG ideal-int
+pkg syscall (linux-arm), const S_IRWXO ideal-int
+pkg syscall (linux-arm), const S_IRWXU ideal-int
+pkg syscall (linux-arm), const S_IWGRP ideal-int
+pkg syscall (linux-arm), const S_IWOTH ideal-int
+pkg syscall (linux-arm), const S_IWRITE ideal-int
+pkg syscall (linux-arm), const S_IXGRP ideal-int
+pkg syscall (linux-arm), const S_IXOTH ideal-int
+pkg syscall (linux-arm), const SizeofCmsghdr ideal-int
+pkg syscall (linux-arm), const SizeofIPMreq ideal-int
+pkg syscall (linux-arm), const SizeofIPMreqn ideal-int
+pkg syscall (linux-arm), const SizeofIPv6Mreq ideal-int
+pkg syscall (linux-arm), const SizeofIfAddrmsg ideal-int
+pkg syscall (linux-arm), const SizeofIfInfomsg ideal-int
+pkg syscall (linux-arm), const SizeofInet4Pktinfo ideal-int
+pkg syscall (linux-arm), const SizeofInet6Pktinfo ideal-int
+pkg syscall (linux-arm), const SizeofInotifyEvent ideal-int
+pkg syscall (linux-arm), const SizeofLinger ideal-int
+pkg syscall (linux-arm), const SizeofMsghdr ideal-int
+pkg syscall (linux-arm), const SizeofNlAttr ideal-int
+pkg syscall (linux-arm), const SizeofNlMsgerr ideal-int
+pkg syscall (linux-arm), const SizeofNlMsghdr ideal-int
+pkg syscall (linux-arm), const SizeofRtAttr ideal-int
+pkg syscall (linux-arm), const SizeofRtGenmsg ideal-int
+pkg syscall (linux-arm), const SizeofRtMsg ideal-int
+pkg syscall (linux-arm), const SizeofRtNexthop ideal-int
+pkg syscall (linux-arm), const SizeofSockFilter ideal-int
+pkg syscall (linux-arm), const SizeofSockFprog ideal-int
+pkg syscall (linux-arm), const SizeofSockaddrAny ideal-int
+pkg syscall (linux-arm), const SizeofSockaddrInet4 ideal-int
+pkg syscall (linux-arm), const SizeofSockaddrInet6 ideal-int
+pkg syscall (linux-arm), const SizeofSockaddrLinklayer ideal-int
+pkg syscall (linux-arm), const SizeofSockaddrNetlink ideal-int
+pkg syscall (linux-arm), const SizeofSockaddrUnix ideal-int
+pkg syscall (linux-arm), const SizeofUcred ideal-int
+pkg syscall (linux-arm), const TCGETS ideal-int
+pkg syscall (linux-arm), const TCP_CONGESTION ideal-int
+pkg syscall (linux-arm), const TCP_CORK ideal-int
+pkg syscall (linux-arm), const TCP_DEFER_ACCEPT ideal-int
+pkg syscall (linux-arm), const TCP_INFO ideal-int
+pkg syscall (linux-arm), const TCP_KEEPCNT ideal-int
+pkg syscall (linux-arm), const TCP_KEEPIDLE ideal-int
+pkg syscall (linux-arm), const TCP_KEEPINTVL ideal-int
+pkg syscall (linux-arm), const TCP_LINGER2 ideal-int
+pkg syscall (linux-arm), const TCP_MAXSEG ideal-int
+pkg syscall (linux-arm), const TCP_MAXWIN ideal-int
+pkg syscall (linux-arm), const TCP_MAX_WINSHIFT ideal-int
+pkg syscall (linux-arm), const TCP_MD5SIG ideal-int
+pkg syscall (linux-arm), const TCP_MD5SIG_MAXKEYLEN ideal-int
+pkg syscall (linux-arm), const TCP_MSS ideal-int
+pkg syscall (linux-arm), const TCP_QUICKACK ideal-int
+pkg syscall (linux-arm), const TCP_SYNCNT ideal-int
+pkg syscall (linux-arm), const TCP_WINDOW_CLAMP ideal-int
+pkg syscall (linux-arm), const TCSETS ideal-int
+pkg syscall (linux-arm), const TIOCCBRK ideal-int
+pkg syscall (linux-arm), const TIOCCONS ideal-int
+pkg syscall (linux-arm), const TIOCEXCL ideal-int
+pkg syscall (linux-arm), const TIOCGDEV ideal-int
+pkg syscall (linux-arm), const TIOCGETD ideal-int
+pkg syscall (linux-arm), const TIOCGICOUNT ideal-int
+pkg syscall (linux-arm), const TIOCGLCKTRMIOS ideal-int
+pkg syscall (linux-arm), const TIOCGPGRP ideal-int
+pkg syscall (linux-arm), const TIOCGPTN ideal-int
+pkg syscall (linux-arm), const TIOCGRS485 ideal-int
+pkg syscall (linux-arm), const TIOCGSERIAL ideal-int
+pkg syscall (linux-arm), const TIOCGSID ideal-int
+pkg syscall (linux-arm), const TIOCGSOFTCAR ideal-int
+pkg syscall (linux-arm), const TIOCGWINSZ ideal-int
+pkg syscall (linux-arm), const TIOCINQ ideal-int
+pkg syscall (linux-arm), const TIOCLINUX ideal-int
+pkg syscall (linux-arm), const TIOCMBIC ideal-int
+pkg syscall (linux-arm), const TIOCMBIS ideal-int
+pkg syscall (linux-arm), const TIOCMGET ideal-int
+pkg syscall (linux-arm), const TIOCMIWAIT ideal-int
+pkg syscall (linux-arm), const TIOCMSET ideal-int
+pkg syscall (linux-arm), const TIOCM_CAR ideal-int
+pkg syscall (linux-arm), const TIOCM_CD ideal-int
+pkg syscall (linux-arm), const TIOCM_CTS ideal-int
+pkg syscall (linux-arm), const TIOCM_DSR ideal-int
+pkg syscall (linux-arm), const TIOCM_DTR ideal-int
+pkg syscall (linux-arm), const TIOCM_LE ideal-int
+pkg syscall (linux-arm), const TIOCM_RI ideal-int
+pkg syscall (linux-arm), const TIOCM_RNG ideal-int
+pkg syscall (linux-arm), const TIOCM_RTS ideal-int
+pkg syscall (linux-arm), const TIOCM_SR ideal-int
+pkg syscall (linux-arm), const TIOCM_ST ideal-int
+pkg syscall (linux-arm), const TIOCNOTTY ideal-int
+pkg syscall (linux-arm), const TIOCNXCL ideal-int
+pkg syscall (linux-arm), const TIOCOUTQ ideal-int
+pkg syscall (linux-arm), const TIOCPKT ideal-int
+pkg syscall (linux-arm), const TIOCPKT_DATA ideal-int
+pkg syscall (linux-arm), const TIOCPKT_DOSTOP ideal-int
+pkg syscall (linux-arm), const TIOCPKT_FLUSHREAD ideal-int
+pkg syscall (linux-arm), const TIOCPKT_FLUSHWRITE ideal-int
+pkg syscall (linux-arm), const TIOCPKT_IOCTL ideal-int
+pkg syscall (linux-arm), const TIOCPKT_NOSTOP ideal-int
+pkg syscall (linux-arm), const TIOCPKT_START ideal-int
+pkg syscall (linux-arm), const TIOCPKT_STOP ideal-int
+pkg syscall (linux-arm), const TIOCSBRK ideal-int
+pkg syscall (linux-arm), const TIOCSCTTY ideal-int
+pkg syscall (linux-arm), const TIOCSERCONFIG ideal-int
+pkg syscall (linux-arm), const TIOCSERGETLSR ideal-int
+pkg syscall (linux-arm), const TIOCSERGETMULTI ideal-int
+pkg syscall (linux-arm), const TIOCSERGSTRUCT ideal-int
+pkg syscall (linux-arm), const TIOCSERGWILD ideal-int
+pkg syscall (linux-arm), const TIOCSERSETMULTI ideal-int
+pkg syscall (linux-arm), const TIOCSERSWILD ideal-int
+pkg syscall (linux-arm), const TIOCSER_TEMT ideal-int
+pkg syscall (linux-arm), const TIOCSETD ideal-int
+pkg syscall (linux-arm), const TIOCSIG ideal-int
+pkg syscall (linux-arm), const TIOCSLCKTRMIOS ideal-int
+pkg syscall (linux-arm), const TIOCSPGRP ideal-int
+pkg syscall (linux-arm), const TIOCSPTLCK ideal-int
+pkg syscall (linux-arm), const TIOCSRS485 ideal-int
+pkg syscall (linux-arm), const TIOCSSERIAL ideal-int
+pkg syscall (linux-arm), const TIOCSSOFTCAR ideal-int
+pkg syscall (linux-arm), const TIOCSTI ideal-int
+pkg syscall (linux-arm), const TIOCSWINSZ ideal-int
+pkg syscall (linux-arm), const TIOCVHANGUP ideal-int
+pkg syscall (linux-arm), const TOSTOP ideal-int
+pkg syscall (linux-arm), const TUNATTACHFILTER ideal-int
+pkg syscall (linux-arm), const TUNDETACHFILTER ideal-int
+pkg syscall (linux-arm), const TUNGETFEATURES ideal-int
+pkg syscall (linux-arm), const TUNGETIFF ideal-int
+pkg syscall (linux-arm), const TUNGETSNDBUF ideal-int
+pkg syscall (linux-arm), const TUNGETVNETHDRSZ ideal-int
+pkg syscall (linux-arm), const TUNSETDEBUG ideal-int
+pkg syscall (linux-arm), const TUNSETGROUP ideal-int
+pkg syscall (linux-arm), const TUNSETIFF ideal-int
+pkg syscall (linux-arm), const TUNSETLINK ideal-int
+pkg syscall (linux-arm), const TUNSETNOCSUM ideal-int
+pkg syscall (linux-arm), const TUNSETOFFLOAD ideal-int
+pkg syscall (linux-arm), const TUNSETOWNER ideal-int
+pkg syscall (linux-arm), const TUNSETPERSIST ideal-int
+pkg syscall (linux-arm), const TUNSETSNDBUF ideal-int
+pkg syscall (linux-arm), const TUNSETTXFILTER ideal-int
+pkg syscall (linux-arm), const TUNSETVNETHDRSZ ideal-int
+pkg syscall (linux-arm), const VDISCARD ideal-int
+pkg syscall (linux-arm), const VEOF ideal-int
+pkg syscall (linux-arm), const VEOL ideal-int
+pkg syscall (linux-arm), const VEOL2 ideal-int
+pkg syscall (linux-arm), const VERASE ideal-int
+pkg syscall (linux-arm), const VINTR ideal-int
+pkg syscall (linux-arm), const VKILL ideal-int
+pkg syscall (linux-arm), const VLNEXT ideal-int
+pkg syscall (linux-arm), const VMIN ideal-int
+pkg syscall (linux-arm), const VQUIT ideal-int
+pkg syscall (linux-arm), const VREPRINT ideal-int
+pkg syscall (linux-arm), const VSTART ideal-int
+pkg syscall (linux-arm), const VSTOP ideal-int
+pkg syscall (linux-arm), const VSUSP ideal-int
+pkg syscall (linux-arm), const VSWTC ideal-int
+pkg syscall (linux-arm), const VTIME ideal-int
+pkg syscall (linux-arm), const VWERASE ideal-int
+pkg syscall (linux-arm), const WALL ideal-int
+pkg syscall (linux-arm), const WCLONE ideal-int
+pkg syscall (linux-arm), const WCONTINUED ideal-int
+pkg syscall (linux-arm), const WEXITED ideal-int
+pkg syscall (linux-arm), const WNOHANG ideal-int
+pkg syscall (linux-arm), const WNOTHREAD ideal-int
+pkg syscall (linux-arm), const WNOWAIT ideal-int
+pkg syscall (linux-arm), const WORDSIZE ideal-int
+pkg syscall (linux-arm), const WSTOPPED ideal-int
+pkg syscall (linux-arm), const WUNTRACED ideal-int
+pkg syscall (linux-arm), const XCASE ideal-int
+pkg syscall (linux-arm), func Accept(int) (int, Sockaddr, error)
+pkg syscall (linux-arm), func Access(string, uint32) error
+pkg syscall (linux-arm), func Acct(string) error
+pkg syscall (linux-arm), func Adjtimex(*Timex) (int, error)
+pkg syscall (linux-arm), func AttachLsf(int, []SockFilter) error
+pkg syscall (linux-arm), func Bind(int, Sockaddr) error
+pkg syscall (linux-arm), func BindToDevice(int, string) error
+pkg syscall (linux-arm), func Chroot(string) error
+pkg syscall (linux-arm), func Close(int) error
+pkg syscall (linux-arm), func CloseOnExec(int)
+pkg syscall (linux-arm), func CmsgLen(int) int
+pkg syscall (linux-arm), func CmsgSpace(int) int
+pkg syscall (linux-arm), func Connect(int, Sockaddr) error
+pkg syscall (linux-arm), func Creat(string, uint32) (int, error)
+pkg syscall (linux-arm), func DetachLsf(int) error
+pkg syscall (linux-arm), func Dup(int) (int, error)
+pkg syscall (linux-arm), func Dup2(int, int) error
+pkg syscall (linux-arm), func EpollCreate(int) (int, error)
+pkg syscall (linux-arm), func EpollCreate1(int) (int, error)
+pkg syscall (linux-arm), func EpollCtl(int, int, int, *EpollEvent) error
+pkg syscall (linux-arm), func EpollWait(int, []EpollEvent, int) (int, error)
+pkg syscall (linux-arm), func Faccessat(int, string, uint32, int) error
+pkg syscall (linux-arm), func Fallocate(int, uint32, int64, int64) error
+pkg syscall (linux-arm), func Fchdir(int) error
+pkg syscall (linux-arm), func Fchmod(int, uint32) error
+pkg syscall (linux-arm), func Fchmodat(int, string, uint32, int) error
+pkg syscall (linux-arm), func Fchown(int, int, int) error
+pkg syscall (linux-arm), func Fchownat(int, string, int, int, int) error
+pkg syscall (linux-arm), func Fdatasync(int) error
+pkg syscall (linux-arm), func Flock(int, int) error
+pkg syscall (linux-arm), func ForkExec(string, []string, *ProcAttr) (int, error)
+pkg syscall (linux-arm), func Fstat(int, *Stat_t) error
+pkg syscall (linux-arm), func Fstatfs(int, *Statfs_t) error
+pkg syscall (linux-arm), func Fsync(int) error
+pkg syscall (linux-arm), func Ftruncate(int, int64) error
+pkg syscall (linux-arm), func Futimes(int, []Timeval) error
+pkg syscall (linux-arm), func Futimesat(int, string, []Timeval) error
+pkg syscall (linux-arm), func Getcwd([]uint8) (int, error)
+pkg syscall (linux-arm), func Getdents(int, []uint8) (int, error)
+pkg syscall (linux-arm), func Getpeername(int) (Sockaddr, error)
+pkg syscall (linux-arm), func Getpgid(int) (int, error)
+pkg syscall (linux-arm), func Getpgrp() int
+pkg syscall (linux-arm), func Getrlimit(int, *Rlimit) error
+pkg syscall (linux-arm), func Getrusage(int, *Rusage) error
+pkg syscall (linux-arm), func Getsockname(int) (Sockaddr, error)
+pkg syscall (linux-arm), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
+pkg syscall (linux-arm), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error)
+pkg syscall (linux-arm), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
+pkg syscall (linux-arm), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
+pkg syscall (linux-arm), func GetsockoptInt(int, int, int) (int, error)
+pkg syscall (linux-arm), func Gettid() int
+pkg syscall (linux-arm), func InotifyAddWatch(int, string, uint32) (int, error)
+pkg syscall (linux-arm), func InotifyInit() (int, error)
+pkg syscall (linux-arm), func InotifyInit1(int) (int, error)
+pkg syscall (linux-arm), func InotifyRmWatch(int, uint32) (int, error)
+pkg syscall (linux-arm), func Kill(int, Signal) error
+pkg syscall (linux-arm), func Klogctl(int, []uint8) (int, error)
+pkg syscall (linux-arm), func Listen(int, int) error
+pkg syscall (linux-arm), func LsfJump(int, int, int, int) *SockFilter
+pkg syscall (linux-arm), func LsfSocket(int, int) (int, error)
+pkg syscall (linux-arm), func LsfStmt(int, int) *SockFilter
+pkg syscall (linux-arm), func Lstat(string, *Stat_t) error
+pkg syscall (linux-arm), func Madvise([]uint8, int) error
+pkg syscall (linux-arm), func Mkdirat(int, string, uint32) error
+pkg syscall (linux-arm), func Mkfifo(string, uint32) error
+pkg syscall (linux-arm), func Mknod(string, uint32, int) error
+pkg syscall (linux-arm), func Mknodat(int, string, uint32, int) error
+pkg syscall (linux-arm), func Mlock([]uint8) error
+pkg syscall (linux-arm), func Mlockall(int) error
+pkg syscall (linux-arm), func Mmap(int, int64, int, int, int) ([]uint8, error)
+pkg syscall (linux-arm), func Mount(string, string, string, uintptr, string) error
+pkg syscall (linux-arm), func Mprotect([]uint8, int) error
+pkg syscall (linux-arm), func Munlock([]uint8) error
+pkg syscall (linux-arm), func Munlockall() error
+pkg syscall (linux-arm), func Munmap([]uint8) error
+pkg syscall (linux-arm), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (linux-arm), func NetlinkRIB(int, int) ([]uint8, error)
+pkg syscall (linux-arm), func NsecToTimespec(int64) Timespec
+pkg syscall (linux-arm), func Open(string, int, uint32) (int, error)
+pkg syscall (linux-arm), func Openat(int, string, int, uint32) (int, error)
+pkg syscall (linux-arm), func ParseDirent([]uint8, int, []string) (int, int, []string)
+pkg syscall (linux-arm), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error)
+pkg syscall (linux-arm), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error)
+pkg syscall (linux-arm), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
+pkg syscall (linux-arm), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error)
+pkg syscall (linux-arm), func ParseUnixRights(*SocketControlMessage) ([]int, error)
+pkg syscall (linux-arm), func Pause() error
+pkg syscall (linux-arm), func Pipe([]int) error
+pkg syscall (linux-arm), func PivotRoot(string, string) error
+pkg syscall (linux-arm), func Pread(int, []uint8, int64) (int, error)
+pkg syscall (linux-arm), func PtraceAttach(int) error
+pkg syscall (linux-arm), func PtraceCont(int, int) error
+pkg syscall (linux-arm), func PtraceDetach(int) error
+pkg syscall (linux-arm), func PtraceGetEventMsg(int) (uint, error)
+pkg syscall (linux-arm), func PtraceGetRegs(int, *PtraceRegs) error
+pkg syscall (linux-arm), func PtracePeekData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-arm), func PtracePeekText(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-arm), func PtracePokeData(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-arm), func PtracePokeText(int, uintptr, []uint8) (int, error)
+pkg syscall (linux-arm), func PtraceSetOptions(int, int) error
+pkg syscall (linux-arm), func PtraceSetRegs(int, *PtraceRegs) error
+pkg syscall (linux-arm), func PtraceSingleStep(int) error
+pkg syscall (linux-arm), func Pwrite(int, []uint8, int64) (int, error)
+pkg syscall (linux-arm), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-arm), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-arm), func Read(int, []uint8) (int, error)
+pkg syscall (linux-arm), func ReadDirent(int, []uint8) (int, error)
+pkg syscall (linux-arm), func Reboot(int) error
+pkg syscall (linux-arm), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
+pkg syscall (linux-arm), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
+pkg syscall (linux-arm), func Renameat(int, string, int, string) error
+pkg syscall (linux-arm), func Seek(int, int64, int) (int64, error)
+pkg syscall (linux-arm), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error)
+pkg syscall (linux-arm), func Sendfile(int, int, *int64, int) (int, error)
+pkg syscall (linux-arm), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
+pkg syscall (linux-arm), func Sendto(int, []uint8, int, Sockaddr) error
+pkg syscall (linux-arm), func SetLsfPromisc(string, bool) error
+pkg syscall (linux-arm), func SetNonblock(int, bool) error
+pkg syscall (linux-arm), func Setdomainname([]uint8) error
+pkg syscall (linux-arm), func Setfsgid(int) error
+pkg syscall (linux-arm), func Setfsuid(int) error
+pkg syscall (linux-arm), func Setgid(int) error
+pkg syscall (linux-arm), func Setgroups([]int) error
+pkg syscall (linux-arm), func Sethostname([]uint8) error
+pkg syscall (linux-arm), func Setpgid(int, int) error
+pkg syscall (linux-arm), func Setregid(int, int) error
+pkg syscall (linux-arm), func Setresgid(int, int, int) error
+pkg syscall (linux-arm), func Setresuid(int, int, int) error
+pkg syscall (linux-arm), func Setreuid(int, int) error
+pkg syscall (linux-arm), func Setrlimit(int, *Rlimit) error
+pkg syscall (linux-arm), func Setsid() (int, error)
+pkg syscall (linux-arm), func SetsockoptIPMreq(int, int, int, *IPMreq) error
+pkg syscall (linux-arm), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error
+pkg syscall (linux-arm), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
+pkg syscall (linux-arm), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
+pkg syscall (linux-arm), func SetsockoptInt(int, int, int, int) error
+pkg syscall (linux-arm), func SetsockoptLinger(int, int, int, *Linger) error
+pkg syscall (linux-arm), func SetsockoptString(int, int, int, string) error
+pkg syscall (linux-arm), func SetsockoptTimeval(int, int, int, *Timeval) error
+pkg syscall (linux-arm), func Settimeofday(*Timeval) error
+pkg syscall (linux-arm), func Setuid(int) error
+pkg syscall (linux-arm), func Shutdown(int, int) error
+pkg syscall (linux-arm), func Socket(int, int, int) (int, error)
+pkg syscall (linux-arm), func Socketpair(int, int, int) ([2]int, error)
+pkg syscall (linux-arm), func Splice(int, *int64, int, *int64, int, int) (int, error)
+pkg syscall (linux-arm), func Stat(string, *Stat_t) error
+pkg syscall (linux-arm), func Statfs(string, *Statfs_t) error
+pkg syscall (linux-arm), func StringSlicePtr([]string) []*uint8
+pkg syscall (linux-arm), func Sync()
+pkg syscall (linux-arm), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-arm), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (linux-arm), func Sysinfo(*Sysinfo_t) error
+pkg syscall (linux-arm), func Tee(int, int, int, int) (int64, error)
+pkg syscall (linux-arm), func Tgkill(int, int, Signal) error
+pkg syscall (linux-arm), func Time(*Time_t) (Time_t, error)
+pkg syscall (linux-arm), func Times(*Tms) (uintptr, error)
+pkg syscall (linux-arm), func TimespecToNsec(Timespec) int64
+pkg syscall (linux-arm), func Truncate(string, int64) error
+pkg syscall (linux-arm), func Umask(int) int
+pkg syscall (linux-arm), func Uname(*Utsname) error
+pkg syscall (linux-arm), func UnixCredentials(*Ucred) []uint8
+pkg syscall (linux-arm), func UnixRights(...int) []uint8
+pkg syscall (linux-arm), func Unlinkat(int, string) error
+pkg syscall (linux-arm), func Unmount(string, int) error
+pkg syscall (linux-arm), func Unshare(int) error
+pkg syscall (linux-arm), func Ustat(int, *Ustat_t) error
+pkg syscall (linux-arm), func Utime(string, *Utimbuf) error
+pkg syscall (linux-arm), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
+pkg syscall (linux-arm), func Write(int, []uint8) (int, error)
+pkg syscall (linux-arm), method (*Cmsghdr) SetLen(int)
+pkg syscall (linux-arm), method (*Iovec) SetLen(int)
+pkg syscall (linux-arm), method (*Msghdr) SetControllen(int)
+pkg syscall (linux-arm), method (*PtraceRegs) PC() uint64
+pkg syscall (linux-arm), method (*PtraceRegs) SetPC(uint64)
+pkg syscall (linux-arm), type Cmsghdr struct
+pkg syscall (linux-arm), type Cmsghdr struct, Len uint32
+pkg syscall (linux-arm), type Cmsghdr struct, Level int32
+pkg syscall (linux-arm), type Cmsghdr struct, Type int32
+pkg syscall (linux-arm), type Cmsghdr struct, X__cmsg_data [0]uint8
+pkg syscall (linux-arm), type Credential struct
+pkg syscall (linux-arm), type Credential struct, Gid uint32
+pkg syscall (linux-arm), type Credential struct, Groups []uint32
+pkg syscall (linux-arm), type Credential struct, Uid uint32
+pkg syscall (linux-arm), type Dirent struct
+pkg syscall (linux-arm), type Dirent struct, Ino uint64
+pkg syscall (linux-arm), type Dirent struct, Name [256]uint8
+pkg syscall (linux-arm), type Dirent struct, Off int64
+pkg syscall (linux-arm), type Dirent struct, Pad_cgo_0 [5]uint8
+pkg syscall (linux-arm), type Dirent struct, Reclen uint16
+pkg syscall (linux-arm), type Dirent struct, Type uint8
+pkg syscall (linux-arm), type EpollEvent struct
+pkg syscall (linux-arm), type EpollEvent struct, Events uint32
+pkg syscall (linux-arm), type EpollEvent struct, Fd int32
+pkg syscall (linux-arm), type EpollEvent struct, Pad int32
+pkg syscall (linux-arm), type EpollEvent struct, PadFd int32
+pkg syscall (linux-arm), type FdSet struct
+pkg syscall (linux-arm), type FdSet struct, Bits [32]int32
+pkg syscall (linux-arm), type Fsid struct
+pkg syscall (linux-arm), type Fsid struct, X__val [2]int32
+pkg syscall (linux-arm), type IPMreqn struct
+pkg syscall (linux-arm), type IPMreqn struct, Address [4]uint8
+pkg syscall (linux-arm), type IPMreqn struct, Ifindex int32
+pkg syscall (linux-arm), type IPMreqn struct, Multiaddr [4]uint8
+pkg syscall (linux-arm), type IfAddrmsg struct
+pkg syscall (linux-arm), type IfAddrmsg struct, Family uint8
+pkg syscall (linux-arm), type IfAddrmsg struct, Flags uint8
+pkg syscall (linux-arm), type IfAddrmsg struct, Index uint32
+pkg syscall (linux-arm), type IfAddrmsg struct, Prefixlen uint8
+pkg syscall (linux-arm), type IfAddrmsg struct, Scope uint8
+pkg syscall (linux-arm), type IfInfomsg struct
+pkg syscall (linux-arm), type IfInfomsg struct, Change uint32
+pkg syscall (linux-arm), type IfInfomsg struct, Family uint8
+pkg syscall (linux-arm), type IfInfomsg struct, Flags uint32
+pkg syscall (linux-arm), type IfInfomsg struct, Index int32
+pkg syscall (linux-arm), type IfInfomsg struct, Type uint16
+pkg syscall (linux-arm), type IfInfomsg struct, X__ifi_pad uint8
+pkg syscall (linux-arm), type Inet4Pktinfo struct
+pkg syscall (linux-arm), type Inet4Pktinfo struct, Addr [4]uint8
+pkg syscall (linux-arm), type Inet4Pktinfo struct, Ifindex int32
+pkg syscall (linux-arm), type Inet4Pktinfo struct, Spec_dst [4]uint8
+pkg syscall (linux-arm), type Inet6Pktinfo struct
+pkg syscall (linux-arm), type Inet6Pktinfo struct, Addr [16]uint8
+pkg syscall (linux-arm), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (linux-arm), type InotifyEvent struct
+pkg syscall (linux-arm), type InotifyEvent struct, Cookie uint32
+pkg syscall (linux-arm), type InotifyEvent struct, Len uint32
+pkg syscall (linux-arm), type InotifyEvent struct, Mask uint32
+pkg syscall (linux-arm), type InotifyEvent struct, Name [0]uint8
+pkg syscall (linux-arm), type InotifyEvent struct, Wd int32
+pkg syscall (linux-arm), type Iovec struct
+pkg syscall (linux-arm), type Iovec struct, Base *uint8
+pkg syscall (linux-arm), type Iovec struct, Len uint32
+pkg syscall (linux-arm), type Msghdr struct
+pkg syscall (linux-arm), type Msghdr struct, Control *uint8
+pkg syscall (linux-arm), type Msghdr struct, Controllen uint32
+pkg syscall (linux-arm), type Msghdr struct, Flags int32
+pkg syscall (linux-arm), type Msghdr struct, Iov *Iovec
+pkg syscall (linux-arm), type Msghdr struct, Iovlen uint32
+pkg syscall (linux-arm), type Msghdr struct, Name *uint8
+pkg syscall (linux-arm), type Msghdr struct, Namelen uint32
+pkg syscall (linux-arm), type NetlinkMessage struct
+pkg syscall (linux-arm), type NetlinkMessage struct, Data []uint8
+pkg syscall (linux-arm), type NetlinkMessage struct, Header NlMsghdr
+pkg syscall (linux-arm), type NetlinkRouteAttr struct
+pkg syscall (linux-arm), type NetlinkRouteAttr struct, Attr RtAttr
+pkg syscall (linux-arm), type NetlinkRouteAttr struct, Value []uint8
+pkg syscall (linux-arm), type NetlinkRouteRequest struct
+pkg syscall (linux-arm), type NetlinkRouteRequest struct, Data RtGenmsg
+pkg syscall (linux-arm), type NetlinkRouteRequest struct, Header NlMsghdr
+pkg syscall (linux-arm), type NlAttr struct
+pkg syscall (linux-arm), type NlAttr struct, Len uint16
+pkg syscall (linux-arm), type NlAttr struct, Type uint16
+pkg syscall (linux-arm), type NlMsgerr struct
+pkg syscall (linux-arm), type NlMsgerr struct, Error int32
+pkg syscall (linux-arm), type NlMsgerr struct, Msg NlMsghdr
+pkg syscall (linux-arm), type NlMsghdr struct
+pkg syscall (linux-arm), type NlMsghdr struct, Flags uint16
+pkg syscall (linux-arm), type NlMsghdr struct, Len uint32
+pkg syscall (linux-arm), type NlMsghdr struct, Pid uint32
+pkg syscall (linux-arm), type NlMsghdr struct, Seq uint32
+pkg syscall (linux-arm), type NlMsghdr struct, Type uint16
+pkg syscall (linux-arm), type PtraceRegs struct
+pkg syscall (linux-arm), type PtraceRegs struct, Uregs [18]uint32
+pkg syscall (linux-arm), type RawSockaddr struct, Data [14]uint8
+pkg syscall (linux-arm), type RawSockaddr struct, Family uint16
+pkg syscall (linux-arm), type RawSockaddrAny struct, Pad [96]uint8
+pkg syscall (linux-arm), type RawSockaddrInet4 struct, Family uint16
+pkg syscall (linux-arm), type RawSockaddrInet4 struct, Zero [8]uint8
+pkg syscall (linux-arm), type RawSockaddrInet6 struct
+pkg syscall (linux-arm), type RawSockaddrInet6 struct, Addr [16]uint8
+pkg syscall (linux-arm), type RawSockaddrInet6 struct, Family uint16
+pkg syscall (linux-arm), type RawSockaddrInet6 struct, Flowinfo uint32
+pkg syscall (linux-arm), type RawSockaddrInet6 struct, Port uint16
+pkg syscall (linux-arm), type RawSockaddrInet6 struct, Scope_id uint32
+pkg syscall (linux-arm), type RawSockaddrLinklayer struct
+pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Addr [8]uint8
+pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Family uint16
+pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Halen uint8
+pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Hatype uint16
+pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Ifindex int32
+pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Pkttype uint8
+pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Protocol uint16
+pkg syscall (linux-arm), type RawSockaddrNetlink struct
+pkg syscall (linux-arm), type RawSockaddrNetlink struct, Family uint16
+pkg syscall (linux-arm), type RawSockaddrNetlink struct, Groups uint32
+pkg syscall (linux-arm), type RawSockaddrNetlink struct, Pad uint16
+pkg syscall (linux-arm), type RawSockaddrNetlink struct, Pid uint32
+pkg syscall (linux-arm), type RawSockaddrUnix struct
+pkg syscall (linux-arm), type RawSockaddrUnix struct, Family uint16
+pkg syscall (linux-arm), type RawSockaddrUnix struct, Path [108]int8
+pkg syscall (linux-arm), type Rlimit struct
+pkg syscall (linux-arm), type Rlimit struct, Cur uint64
+pkg syscall (linux-arm), type Rlimit struct, Max uint64
+pkg syscall (linux-arm), type RtAttr struct
+pkg syscall (linux-arm), type RtAttr struct, Len uint16
+pkg syscall (linux-arm), type RtAttr struct, Type uint16
+pkg syscall (linux-arm), type RtGenmsg struct
+pkg syscall (linux-arm), type RtGenmsg struct, Family uint8
+pkg syscall (linux-arm), type RtMsg struct
+pkg syscall (linux-arm), type RtMsg struct, Dst_len uint8
+pkg syscall (linux-arm), type RtMsg struct, Family uint8
+pkg syscall (linux-arm), type RtMsg struct, Flags uint32
+pkg syscall (linux-arm), type RtMsg struct, Protocol uint8
+pkg syscall (linux-arm), type RtMsg struct, Scope uint8
+pkg syscall (linux-arm), type RtMsg struct, Src_len uint8
+pkg syscall (linux-arm), type RtMsg struct, Table uint8
+pkg syscall (linux-arm), type RtMsg struct, Tos uint8
+pkg syscall (linux-arm), type RtMsg struct, Type uint8
+pkg syscall (linux-arm), type RtNexthop struct
+pkg syscall (linux-arm), type RtNexthop struct, Flags uint8
+pkg syscall (linux-arm), type RtNexthop struct, Hops uint8
+pkg syscall (linux-arm), type RtNexthop struct, Ifindex int32
+pkg syscall (linux-arm), type RtNexthop struct, Len uint16
+pkg syscall (linux-arm), type Rusage struct, Idrss int32
+pkg syscall (linux-arm), type Rusage struct, Inblock int32
+pkg syscall (linux-arm), type Rusage struct, Isrss int32
+pkg syscall (linux-arm), type Rusage struct, Ixrss int32
+pkg syscall (linux-arm), type Rusage struct, Majflt int32
+pkg syscall (linux-arm), type Rusage struct, Maxrss int32
+pkg syscall (linux-arm), type Rusage struct, Minflt int32
+pkg syscall (linux-arm), type Rusage struct, Msgrcv int32
+pkg syscall (linux-arm), type Rusage struct, Msgsnd int32
+pkg syscall (linux-arm), type Rusage struct, Nivcsw int32
+pkg syscall (linux-arm), type Rusage struct, Nsignals int32
+pkg syscall (linux-arm), type Rusage struct, Nswap int32
+pkg syscall (linux-arm), type Rusage struct, Nvcsw int32
+pkg syscall (linux-arm), type Rusage struct, Oublock int32
+pkg syscall (linux-arm), type Rusage struct, Stime Timeval
+pkg syscall (linux-arm), type Rusage struct, Utime Timeval
+pkg syscall (linux-arm), type SockFilter struct
+pkg syscall (linux-arm), type SockFilter struct, Code uint16
+pkg syscall (linux-arm), type SockFilter struct, Jf uint8
+pkg syscall (linux-arm), type SockFilter struct, Jt uint8
+pkg syscall (linux-arm), type SockFilter struct, K uint32
+pkg syscall (linux-arm), type SockFprog struct
+pkg syscall (linux-arm), type SockFprog struct, Filter *SockFilter
+pkg syscall (linux-arm), type SockFprog struct, Len uint16
+pkg syscall (linux-arm), type SockFprog struct, Pad_cgo_0 [2]uint8
+pkg syscall (linux-arm), type SockaddrLinklayer struct
+pkg syscall (linux-arm), type SockaddrLinklayer struct, Addr [8]uint8
+pkg syscall (linux-arm), type SockaddrLinklayer struct, Halen uint8
+pkg syscall (linux-arm), type SockaddrLinklayer struct, Hatype uint16
+pkg syscall (linux-arm), type SockaddrLinklayer struct, Ifindex int
+pkg syscall (linux-arm), type SockaddrLinklayer struct, Pkttype uint8
+pkg syscall (linux-arm), type SockaddrLinklayer struct, Protocol uint16
+pkg syscall (linux-arm), type SockaddrNetlink struct
+pkg syscall (linux-arm), type SockaddrNetlink struct, Family uint16
+pkg syscall (linux-arm), type SockaddrNetlink struct, Groups uint32
+pkg syscall (linux-arm), type SockaddrNetlink struct, Pad uint16
+pkg syscall (linux-arm), type SockaddrNetlink struct, Pid uint32
+pkg syscall (linux-arm), type SocketControlMessage struct
+pkg syscall (linux-arm), type SocketControlMessage struct, Data []uint8
+pkg syscall (linux-arm), type SocketControlMessage struct, Header Cmsghdr
+pkg syscall (linux-arm), type Stat_t struct
+pkg syscall (linux-arm), type Stat_t struct, Atim Timespec
+pkg syscall (linux-arm), type Stat_t struct, Blksize int32
+pkg syscall (linux-arm), type Stat_t struct, Blocks int64
+pkg syscall (linux-arm), type Stat_t struct, Ctim Timespec
+pkg syscall (linux-arm), type Stat_t struct, Dev uint64
+pkg syscall (linux-arm), type Stat_t struct, Gid uint32
+pkg syscall (linux-arm), type Stat_t struct, Ino uint64
+pkg syscall (linux-arm), type Stat_t struct, Mode uint32
+pkg syscall (linux-arm), type Stat_t struct, Mtim Timespec
+pkg syscall (linux-arm), type Stat_t struct, Nlink uint32
+pkg syscall (linux-arm), type Stat_t struct, Pad_cgo_0 [2]uint8
+pkg syscall (linux-arm), type Stat_t struct, Pad_cgo_1 [6]uint8
+pkg syscall (linux-arm), type Stat_t struct, Pad_cgo_2 [4]uint8
+pkg syscall (linux-arm), type Stat_t struct, Rdev uint64
+pkg syscall (linux-arm), type Stat_t struct, Size int64
+pkg syscall (linux-arm), type Stat_t struct, Uid uint32
+pkg syscall (linux-arm), type Stat_t struct, X__pad1 uint16
+pkg syscall (linux-arm), type Stat_t struct, X__pad2 uint16
+pkg syscall (linux-arm), type Stat_t struct, X__st_ino uint32
+pkg syscall (linux-arm), type Statfs_t struct
+pkg syscall (linux-arm), type Statfs_t struct, Bavail uint64
+pkg syscall (linux-arm), type Statfs_t struct, Bfree uint64
+pkg syscall (linux-arm), type Statfs_t struct, Blocks uint64
+pkg syscall (linux-arm), type Statfs_t struct, Bsize int32
+pkg syscall (linux-arm), type Statfs_t struct, Ffree uint64
+pkg syscall (linux-arm), type Statfs_t struct, Files uint64
+pkg syscall (linux-arm), type Statfs_t struct, Flags int32
+pkg syscall (linux-arm), type Statfs_t struct, Frsize int32
+pkg syscall (linux-arm), type Statfs_t struct, Fsid Fsid
+pkg syscall (linux-arm), type Statfs_t struct, Namelen int32
+pkg syscall (linux-arm), type Statfs_t struct, Pad_cgo_0 [4]uint8
+pkg syscall (linux-arm), type Statfs_t struct, Spare [4]int32
+pkg syscall (linux-arm), type Statfs_t struct, Type int32
+pkg syscall (linux-arm), type SysProcAttr struct, Chroot string
+pkg syscall (linux-arm), type SysProcAttr struct, Credential *Credential
+pkg syscall (linux-arm), type SysProcAttr struct, Noctty bool
+pkg syscall (linux-arm), type SysProcAttr struct, Pdeathsig Signal
+pkg syscall (linux-arm), type SysProcAttr struct, Ptrace bool
+pkg syscall (linux-arm), type SysProcAttr struct, Setctty bool
+pkg syscall (linux-arm), type SysProcAttr struct, Setpgid bool
+pkg syscall (linux-arm), type SysProcAttr struct, Setsid bool
+pkg syscall (linux-arm), type Sysinfo_t struct
+pkg syscall (linux-arm), type Sysinfo_t struct, Bufferram uint32
+pkg syscall (linux-arm), type Sysinfo_t struct, Freehigh uint32
+pkg syscall (linux-arm), type Sysinfo_t struct, Freeram uint32
+pkg syscall (linux-arm), type Sysinfo_t struct, Freeswap uint32
+pkg syscall (linux-arm), type Sysinfo_t struct, Loads [3]uint32
+pkg syscall (linux-arm), type Sysinfo_t struct, Pad uint16
+pkg syscall (linux-arm), type Sysinfo_t struct, Procs uint16
+pkg syscall (linux-arm), type Sysinfo_t struct, Sharedram uint32
+pkg syscall (linux-arm), type Sysinfo_t struct, Totalhigh uint32
+pkg syscall (linux-arm), type Sysinfo_t struct, Totalram uint32
+pkg syscall (linux-arm), type Sysinfo_t struct, Totalswap uint32
+pkg syscall (linux-arm), type Sysinfo_t struct, Unit uint32
+pkg syscall (linux-arm), type Sysinfo_t struct, Uptime int32
+pkg syscall (linux-arm), type Sysinfo_t struct, X_f [8]uint8
+pkg syscall (linux-arm), type Termios struct
+pkg syscall (linux-arm), type Termios struct, Cc [32]uint8
+pkg syscall (linux-arm), type Termios struct, Cflag uint32
+pkg syscall (linux-arm), type Termios struct, Iflag uint32
+pkg syscall (linux-arm), type Termios struct, Ispeed uint32
+pkg syscall (linux-arm), type Termios struct, Lflag uint32
+pkg syscall (linux-arm), type Termios struct, Line uint8
+pkg syscall (linux-arm), type Termios struct, Oflag uint32
+pkg syscall (linux-arm), type Termios struct, Ospeed uint32
+pkg syscall (linux-arm), type Termios struct, Pad_cgo_0 [3]uint8
+pkg syscall (linux-arm), type Time_t int32
+pkg syscall (linux-arm), type Timespec struct, Nsec int32
+pkg syscall (linux-arm), type Timespec struct, Sec int32
+pkg syscall (linux-arm), type Timeval struct, Sec int32
+pkg syscall (linux-arm), type Timeval struct, Usec int32
+pkg syscall (linux-arm), type Timex struct
+pkg syscall (linux-arm), type Timex struct, Calcnt int32
+pkg syscall (linux-arm), type Timex struct, Constant int32
+pkg syscall (linux-arm), type Timex struct, Errcnt int32
+pkg syscall (linux-arm), type Timex struct, Esterror int32
+pkg syscall (linux-arm), type Timex struct, Freq int32
+pkg syscall (linux-arm), type Timex struct, Jitcnt int32
+pkg syscall (linux-arm), type Timex struct, Jitter int32
+pkg syscall (linux-arm), type Timex struct, Maxerror int32
+pkg syscall (linux-arm), type Timex struct, Modes uint32
+pkg syscall (linux-arm), type Timex struct, Offset int32
+pkg syscall (linux-arm), type Timex struct, Pad_cgo_0 [44]uint8
+pkg syscall (linux-arm), type Timex struct, Ppsfreq int32
+pkg syscall (linux-arm), type Timex struct, Precision int32
+pkg syscall (linux-arm), type Timex struct, Shift int32
+pkg syscall (linux-arm), type Timex struct, Stabil int32
+pkg syscall (linux-arm), type Timex struct, Status int32
+pkg syscall (linux-arm), type Timex struct, Stbcnt int32
+pkg syscall (linux-arm), type Timex struct, Tai int32
+pkg syscall (linux-arm), type Timex struct, Tick int32
+pkg syscall (linux-arm), type Timex struct, Time Timeval
+pkg syscall (linux-arm), type Timex struct, Tolerance int32
+pkg syscall (linux-arm), type Tms struct
+pkg syscall (linux-arm), type Tms struct, Cstime int32
+pkg syscall (linux-arm), type Tms struct, Cutime int32
+pkg syscall (linux-arm), type Tms struct, Stime int32
+pkg syscall (linux-arm), type Tms struct, Utime int32
+pkg syscall (linux-arm), type Ucred struct
+pkg syscall (linux-arm), type Ucred struct, Gid uint32
+pkg syscall (linux-arm), type Ucred struct, Pid int32
+pkg syscall (linux-arm), type Ucred struct, Uid uint32
+pkg syscall (linux-arm), type Ustat_t struct
+pkg syscall (linux-arm), type Ustat_t struct, Fname [6]uint8
+pkg syscall (linux-arm), type Ustat_t struct, Fpack [6]uint8
+pkg syscall (linux-arm), type Ustat_t struct, Tfree int32
+pkg syscall (linux-arm), type Ustat_t struct, Tinode uint32
+pkg syscall (linux-arm), type Utimbuf struct
+pkg syscall (linux-arm), type Utimbuf struct, Actime int32
+pkg syscall (linux-arm), type Utimbuf struct, Modtime int32
+pkg syscall (linux-arm), type Utsname struct
+pkg syscall (linux-arm), type Utsname struct, Domainname [65]uint8
+pkg syscall (linux-arm), type Utsname struct, Machine [65]uint8
+pkg syscall (linux-arm), type Utsname struct, Nodename [65]uint8
+pkg syscall (linux-arm), type Utsname struct, Release [65]uint8
+pkg syscall (linux-arm), type Utsname struct, Sysname [65]uint8
+pkg syscall (linux-arm), type Utsname struct, Version [65]uint8
+pkg syscall (linux-arm), type WaitStatus uint32
+pkg syscall (linux-arm), var Stderr int
+pkg syscall (linux-arm), var Stdin int
+pkg syscall (linux-arm), var Stdout int
 pkg syscall (windows-386), const AF_NETBIOS ideal-int
 pkg syscall (windows-386), const APPLICATION_ERROR ideal-int
 pkg syscall (windows-386), const AUTHTYPE_CLIENT ideal-int
@@ -21869,6 +28208,7 @@ pkg syscall (windows-386), const DUPLICATE_SAME_ACCESS ideal-int
 pkg syscall (windows-386), const EADV Errno
 pkg syscall (windows-386), const EBADE Errno
 pkg syscall (windows-386), const EBADFD Errno
+pkg syscall (windows-386), const EBADMSG Errno
 pkg syscall (windows-386), const EBADR Errno
 pkg syscall (windows-386), const EBADRQC Errno
 pkg syscall (windows-386), const EBADSLT Errno
@@ -21892,15 +28232,23 @@ pkg syscall (windows-386), const ELIBMAX Errno
 pkg syscall (windows-386), const ELIBSCN Errno
 pkg syscall (windows-386), const ELNRNG Errno
 pkg syscall (windows-386), const EMEDIUMTYPE Errno
+pkg syscall (windows-386), const EMULTIHOP Errno
 pkg syscall (windows-386), const ENAVAIL Errno
 pkg syscall (windows-386), const ENOANO Errno
 pkg syscall (windows-386), const ENOCSI Errno
+pkg syscall (windows-386), const ENODATA Errno
 pkg syscall (windows-386), const ENOKEY Errno
+pkg syscall (windows-386), const ENOLINK Errno
 pkg syscall (windows-386), const ENOMEDIUM Errno
 pkg syscall (windows-386), const ENONET Errno
 pkg syscall (windows-386), const ENOPKG Errno
+pkg syscall (windows-386), const ENOSR Errno
+pkg syscall (windows-386), const ENOSTR Errno
 pkg syscall (windows-386), const ENOTNAM Errno
+pkg syscall (windows-386), const ENOTRECOVERABLE Errno
 pkg syscall (windows-386), const ENOTUNIQ Errno
+pkg syscall (windows-386), const EOWNERDEAD Errno
+pkg syscall (windows-386), const EPROTO Errno
 pkg syscall (windows-386), const EREMCHG Errno
 pkg syscall (windows-386), const EREMOTEIO Errno
 pkg syscall (windows-386), const ERESTART Errno
@@ -21920,6 +28268,7 @@ pkg syscall (windows-386), const ERROR_PATH_NOT_FOUND Errno
 pkg syscall (windows-386), const ERROR_PROC_NOT_FOUND Errno
 pkg syscall (windows-386), const ESRMNT Errno
 pkg syscall (windows-386), const ESTRPIPE Errno
+pkg syscall (windows-386), const ETIME Errno
 pkg syscall (windows-386), const EUCLEAN Errno
 pkg syscall (windows-386), const EUNATCH Errno
 pkg syscall (windows-386), const EWINDOWS Errno
@@ -22091,6 +28440,7 @@ pkg syscall (windows-386), const SW_SHOWNA ideal-int
 pkg syscall (windows-386), const SW_SHOWNOACTIVATE ideal-int
 pkg syscall (windows-386), const SW_SHOWNORMAL ideal-int
 pkg syscall (windows-386), const SYNCHRONIZE ideal-int
+pkg syscall (windows-386), const S_IWRITE ideal-int
 pkg syscall (windows-386), const SidTypeAlias ideal-int
 pkg syscall (windows-386), const SidTypeComputer ideal-int
 pkg syscall (windows-386), const SidTypeDeletedAccount ideal-int
@@ -22161,12 +28511,12 @@ pkg syscall (windows-386), const WSADESCRIPTION_LEN ideal-int
 pkg syscall (windows-386), const WSASYS_STATUS_LEN ideal-int
 pkg syscall (windows-386), const X509_ASN_ENCODING ideal-int
 pkg syscall (windows-386), func Accept(Handle) (Handle, Sockaddr, error)
-pkg syscall (windows-386), func AcceptEx(Handle, Handle, *byte, uint32, uint32, uint32, *uint32, *Overlapped) error
+pkg syscall (windows-386), func AcceptEx(Handle, Handle, *uint8, uint32, uint32, uint32, *uint32, *Overlapped) error
 pkg syscall (windows-386), func Bind(Handle, Sockaddr) error
 pkg syscall (windows-386), func CancelIo(Handle) error
 pkg syscall (windows-386), func CertAddCertificateContextToStore(Handle, *CertContext, uint32, **CertContext) error
 pkg syscall (windows-386), func CertCloseStore(Handle, uint32) error
-pkg syscall (windows-386), func CertCreateCertificateContext(uint32, *byte, uint32) (*CertContext, error)
+pkg syscall (windows-386), func CertCreateCertificateContext(uint32, *uint8, uint32) (*CertContext, error)
 pkg syscall (windows-386), func CertEnumCertificatesInStore(Handle, *CertContext) (*CertContext, error)
 pkg syscall (windows-386), func CertFreeCertificateChain(*CertChainContext)
 pkg syscall (windows-386), func CertFreeCertificateContext(*CertContext) error
@@ -22191,10 +28541,10 @@ pkg syscall (windows-386), func CreateIoCompletionPort(Handle, Handle, uint32, u
 pkg syscall (windows-386), func CreatePipe(*Handle, *Handle, *SecurityAttributes, uint32) error
 pkg syscall (windows-386), func CreateProcess(*uint16, *uint16, *SecurityAttributes, *SecurityAttributes, bool, uint32, *uint16, *uint16, *StartupInfo, *ProcessInformation) error
 pkg syscall (windows-386), func CryptAcquireContext(*Handle, *uint16, *uint16, uint32, uint32) error
-pkg syscall (windows-386), func CryptGenRandom(Handle, uint32, *byte) error
+pkg syscall (windows-386), func CryptGenRandom(Handle, uint32, *uint8) error
 pkg syscall (windows-386), func CryptReleaseContext(Handle, uint32) error
 pkg syscall (windows-386), func DeleteFile(*uint16) error
-pkg syscall (windows-386), func DnsQuery(string, uint16, uint32, *byte, **DNSRecord, *byte) error
+pkg syscall (windows-386), func DnsQuery(string, uint16, uint32, *uint8, **DNSRecord, *uint8) error
 pkg syscall (windows-386), func DnsRecordListFree(*DNSRecord, uint32)
 pkg syscall (windows-386), func DuplicateHandle(Handle, Handle, Handle, *Handle, uint32, bool, uint32) error
 pkg syscall (windows-386), func EscapeArg(string) string
@@ -22207,12 +28557,12 @@ pkg syscall (windows-386), func FindFirstFile(*uint16, *Win32finddata) (Handle,
 pkg syscall (windows-386), func FindNextFile(Handle, *Win32finddata) error
 pkg syscall (windows-386), func FlushFileBuffers(Handle) error
 pkg syscall (windows-386), func FlushViewOfFile(uintptr, uintptr) error
-pkg syscall (windows-386), func FormatMessage(uint32, uint32, uint32, uint32, []uint16, *byte) (uint32, error)
+pkg syscall (windows-386), func FormatMessage(uint32, uint32, uint32, uint32, []uint16, *uint8) (uint32, error)
 pkg syscall (windows-386), func FreeEnvironmentStrings(*uint16) error
 pkg syscall (windows-386), func FreeLibrary(Handle) error
 pkg syscall (windows-386), func Fsync(Handle) error
 pkg syscall (windows-386), func Ftruncate(Handle, int64) error
-pkg syscall (windows-386), func GetAcceptExSockaddrs(*byte, uint32, uint32, uint32, **RawSockaddrAny, *int32, **RawSockaddrAny, *int32)
+pkg syscall (windows-386), func GetAcceptExSockaddrs(*uint8, uint32, uint32, uint32, **RawSockaddrAny, *int32, **RawSockaddrAny, *int32)
 pkg syscall (windows-386), func GetAdaptersInfo(*IpAdapterInfo, *uint32) error
 pkg syscall (windows-386), func GetCommandLine() *uint16
 pkg syscall (windows-386), func GetComputerName(*uint16, *uint32) error
@@ -22222,7 +28572,7 @@ pkg syscall (windows-386), func GetEnvironmentStrings() (*uint16, error)
 pkg syscall (windows-386), func GetEnvironmentVariable(*uint16, *uint16, uint32) (uint32, error)
 pkg syscall (windows-386), func GetExitCodeProcess(Handle, *uint32) error
 pkg syscall (windows-386), func GetFileAttributes(*uint16) (uint32, error)
-pkg syscall (windows-386), func GetFileAttributesEx(*uint16, uint32, *byte) error
+pkg syscall (windows-386), func GetFileAttributesEx(*uint16, uint32, *uint8) error
 pkg syscall (windows-386), func GetFileInformationByHandle(Handle, *ByHandleFileInformation) error
 pkg syscall (windows-386), func GetFileType(Handle) (uint32, error)
 pkg syscall (windows-386), func GetFullPathName(*uint16, uint32, *uint16, **uint16) (uint32, error)
@@ -22236,31 +28586,31 @@ pkg syscall (windows-386), func GetProcessTimes(Handle, *Filetime, *Filetime, *F
 pkg syscall (windows-386), func GetProtoByName(string) (*Protoent, error)
 pkg syscall (windows-386), func GetQueuedCompletionStatus(Handle, *uint32, *uint32, **Overlapped, uint32) error
 pkg syscall (windows-386), func GetServByName(string, string) (*Servent, error)
+pkg syscall (windows-386), func GetShortPathName(*uint16, *uint16, uint32) (uint32, error)
 pkg syscall (windows-386), func GetStartupInfo(*StartupInfo) error
 pkg syscall (windows-386), func GetStdHandle(int) (Handle, error)
 pkg syscall (windows-386), func GetSystemTimeAsFileTime(*Filetime)
 pkg syscall (windows-386), func GetTempPath(uint32, *uint16) (uint32, error)
 pkg syscall (windows-386), func GetTimeZoneInformation(*Timezoneinformation) (uint32, error)
-pkg syscall (windows-386), func GetTokenInformation(Token, uint32, *byte, uint32, *uint32) error
+pkg syscall (windows-386), func GetTokenInformation(Token, uint32, *uint8, uint32, *uint32) error
 pkg syscall (windows-386), func GetUserNameEx(uint32, *uint16, *uint32) error
 pkg syscall (windows-386), func GetUserProfileDirectory(Token, *uint16, *uint32) error
 pkg syscall (windows-386), func GetVersion() (uint32, error)
 pkg syscall (windows-386), func Getpeername(Handle) (Sockaddr, error)
 pkg syscall (windows-386), func Getsockname(Handle) (Sockaddr, error)
-pkg syscall (windows-386), func GetsockoptInt(Handle, int) (int, error)
-pkg syscall (windows-386), func Link(string) error
+pkg syscall (windows-386), func GetsockoptInt(Handle, int, int) (int, error)
 pkg syscall (windows-386), func Listen(Handle, int) error
 pkg syscall (windows-386), func LoadDLL(string) (*DLL, error)
 pkg syscall (windows-386), func LoadLibrary(string) (Handle, error)
 pkg syscall (windows-386), func LocalFree(Handle) (Handle, error)
 pkg syscall (windows-386), func LookupAccountName(*uint16, *uint16, *SID, *uint32, *uint16, *uint32, *uint32) error
 pkg syscall (windows-386), func LookupAccountSid(*uint16, *SID, *uint16, *uint32, *uint16, *uint32, *uint32) error
-pkg syscall (windows-386), func LookupSID(string) (*SID, string, uint32, error)
+pkg syscall (windows-386), func LookupSID(string, string) (*SID, string, uint32, error)
 pkg syscall (windows-386), func MapViewOfFile(Handle, uint32, uint32, uint32, uintptr) (uintptr, error)
 pkg syscall (windows-386), func MoveFile(*uint16, *uint16) error
 pkg syscall (windows-386), func MustLoadDLL(string) *DLL
-pkg syscall (windows-386), func NetApiBufferFree(*byte) error
-pkg syscall (windows-386), func NetUserGetInfo(*uint16, *uint16, uint32, **byte) error
+pkg syscall (windows-386), func NetApiBufferFree(*uint8) error
+pkg syscall (windows-386), func NetUserGetInfo(*uint16, *uint16, uint32, **uint8) error
 pkg syscall (windows-386), func NewCallback(interface{}) uintptr
 pkg syscall (windows-386), func NewLazyDLL(string) *LazyDLL
 pkg syscall (windows-386), func NsecToFiletime(int64) Filetime
@@ -22271,19 +28621,18 @@ pkg syscall (windows-386), func OpenProcess(uint32, bool, uint32) (Handle, error
 pkg syscall (windows-386), func OpenProcessToken(Handle, uint32, *Token) error
 pkg syscall (windows-386), func Pipe([]Handle) error
 pkg syscall (windows-386), func PostQueuedCompletionStatus(Handle, uint32, uint32, *Overlapped) error
-pkg syscall (windows-386), func Read(Handle, []byte) (int, error)
-pkg syscall (windows-386), func ReadDirectoryChanges(Handle, *byte, uint32, bool, uint32, *uint32, *Overlapped, uintptr) error
-pkg syscall (windows-386), func ReadFile(Handle, []byte, *uint32, *Overlapped) error
-pkg syscall (windows-386), func Recvfrom(Handle, []byte, int) (int, Sockaddr, error)
+pkg syscall (windows-386), func Read(Handle, []uint8) (int, error)
+pkg syscall (windows-386), func ReadDirectoryChanges(Handle, *uint8, uint32, bool, uint32, *uint32, *Overlapped, uintptr) error
+pkg syscall (windows-386), func ReadFile(Handle, []uint8, *uint32, *Overlapped) error
+pkg syscall (windows-386), func Recvfrom(Handle, []uint8, int) (int, Sockaddr, error)
 pkg syscall (windows-386), func RegCloseKey(Handle) error
 pkg syscall (windows-386), func RegEnumKeyEx(Handle, uint32, *uint16, *uint32, *uint32, *uint16, *uint32, *Filetime) error
 pkg syscall (windows-386), func RegOpenKeyEx(Handle, *uint16, uint32, uint32, *Handle) error
 pkg syscall (windows-386), func RegQueryInfoKey(Handle, *uint16, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *Filetime) error
-pkg syscall (windows-386), func RegQueryValueEx(Handle, *uint16, *uint32, *uint32, *byte, *uint32) error
+pkg syscall (windows-386), func RegQueryValueEx(Handle, *uint16, *uint32, *uint32, *uint8, *uint32) error
 pkg syscall (windows-386), func RemoveDirectory(*uint16) error
-pkg syscall (windows-386), func Rename(string) error
 pkg syscall (windows-386), func Seek(Handle, int64, int) (int64, error)
-pkg syscall (windows-386), func Sendto(Handle, []byte, int, Sockaddr) error
+pkg syscall (windows-386), func Sendto(Handle, []uint8, int, Sockaddr) error
 pkg syscall (windows-386), func SetCurrentDirectory(*uint16) error
 pkg syscall (windows-386), func SetEndOfFile(Handle) error
 pkg syscall (windows-386), func SetEnvironmentVariable(*uint16, *uint16) error
@@ -22292,24 +28641,25 @@ pkg syscall (windows-386), func SetFilePointer(Handle, int32, *int32, uint32) (u
 pkg syscall (windows-386), func SetFileTime(Handle, *Filetime, *Filetime, *Filetime) error
 pkg syscall (windows-386), func SetHandleInformation(Handle, uint32, uint32) error
 pkg syscall (windows-386), func SetNonblock(Handle, bool) error
-pkg syscall (windows-386), func Setsockopt(Handle, int32, int32, *byte, int32) error
-pkg syscall (windows-386), func SetsockoptIPMreq(Handle, int, *IPMreq) error
-pkg syscall (windows-386), func SetsockoptIPv6Mreq(Handle, int, *IPv6Mreq) error
-pkg syscall (windows-386), func SetsockoptInet4Addr(Handle, int, [4]byte) error
-pkg syscall (windows-386), func SetsockoptInt(Handle, int, int) error
-pkg syscall (windows-386), func SetsockoptLinger(Handle, int, *Linger) error
-pkg syscall (windows-386), func SetsockoptTimeval(Handle, int, *Timeval) error
+pkg syscall (windows-386), func Setsockopt(Handle, int32, int32, *uint8, int32) error
+pkg syscall (windows-386), func SetsockoptIPMreq(Handle, int, int, *IPMreq) error
+pkg syscall (windows-386), func SetsockoptIPv6Mreq(Handle, int, int, *IPv6Mreq) error
+pkg syscall (windows-386), func SetsockoptInet4Addr(Handle, int, int, [4]uint8) error
+pkg syscall (windows-386), func SetsockoptInt(Handle, int, int, int) error
+pkg syscall (windows-386), func SetsockoptLinger(Handle, int, int, *Linger) error
+pkg syscall (windows-386), func SetsockoptTimeval(Handle, int, int, *Timeval) error
 pkg syscall (windows-386), func Shutdown(Handle, int) error
-pkg syscall (windows-386), func Socket(int) (Handle, error)
+pkg syscall (windows-386), func Socket(int, int, int) (Handle, error)
 pkg syscall (windows-386), func StringToSid(string) (*SID, error)
 pkg syscall (windows-386), func StringToUTF16(string) []uint16
 pkg syscall (windows-386), func StringToUTF16Ptr(string) *uint16
-pkg syscall (windows-386), func Symlink(string) error
-pkg syscall (windows-386), func Syscall12(uintptr) (uintptr, Errno)
-pkg syscall (windows-386), func Syscall15(uintptr) (uintptr, Errno)
-pkg syscall (windows-386), func Syscall9(uintptr) (uintptr, Errno)
+pkg syscall (windows-386), func Syscall(uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (windows-386), func Syscall12(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (windows-386), func Syscall15(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (windows-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (windows-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
 pkg syscall (windows-386), func TerminateProcess(Handle, uint32) error
-pkg syscall (windows-386), func TranslateAccountName(string, uint32, int) (string, error)
+pkg syscall (windows-386), func TranslateAccountName(string, uint32, uint32, int) (string, error)
 pkg syscall (windows-386), func TranslateName(*uint16, uint32, uint32, *uint16, *uint32) error
 pkg syscall (windows-386), func TransmitFile(Handle, Handle, uint32, uint32, *Overlapped, *TransmitFileBuffers, uint32) error
 pkg syscall (windows-386), func UTF16ToString([]uint16) string
@@ -22317,16 +28667,16 @@ pkg syscall (windows-386), func UnmapViewOfFile(uintptr) error
 pkg syscall (windows-386), func VirtualLock(uintptr, uintptr) error
 pkg syscall (windows-386), func VirtualUnlock(uintptr, uintptr) error
 pkg syscall (windows-386), func WSACleanup() error
-pkg syscall (windows-386), func WSAIoctl(Handle, uint32, *byte, uint32, *byte, uint32, *uint32, *Overlapped, uintptr) error
-pkg syscall (windows-386), func WSARecv(Handle, *WSABuf, uint32, *uint32, *uint32, *Overlapped, *byte) error
-pkg syscall (windows-386), func WSARecvFrom(Handle, *WSABuf, uint32, *uint32, *uint32, *RawSockaddrAny, *int32, *Overlapped, *byte) error
-pkg syscall (windows-386), func WSASend(Handle, *WSABuf, uint32, *uint32, uint32, *Overlapped, *byte) error
-pkg syscall (windows-386), func WSASendTo(Handle, *WSABuf, uint32, *uint32, uint32, *RawSockaddrAny, int32, *Overlapped, *byte) error
-pkg syscall (windows-386), func WSASendto(Handle, *WSABuf, uint32, *uint32, uint32, Sockaddr, *Overlapped, *byte) error
+pkg syscall (windows-386), func WSAIoctl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped, uintptr) error
+pkg syscall (windows-386), func WSARecv(Handle, *WSABuf, uint32, *uint32, *uint32, *Overlapped, *uint8) error
+pkg syscall (windows-386), func WSARecvFrom(Handle, *WSABuf, uint32, *uint32, *uint32, *RawSockaddrAny, *int32, *Overlapped, *uint8) error
+pkg syscall (windows-386), func WSASend(Handle, *WSABuf, uint32, *uint32, uint32, *Overlapped, *uint8) error
+pkg syscall (windows-386), func WSASendTo(Handle, *WSABuf, uint32, *uint32, uint32, *RawSockaddrAny, int32, *Overlapped, *uint8) error
+pkg syscall (windows-386), func WSASendto(Handle, *WSABuf, uint32, *uint32, uint32, Sockaddr, *Overlapped, *uint8) error
 pkg syscall (windows-386), func WSAStartup(uint32, *WSAData) error
 pkg syscall (windows-386), func WaitForSingleObject(Handle, uint32) (uint32, error)
-pkg syscall (windows-386), func Write(Handle, []byte) (int, error)
-pkg syscall (windows-386), func WriteFile(Handle, []byte, *uint32, *Overlapped) error
+pkg syscall (windows-386), func Write(Handle, []uint8) (int, error)
+pkg syscall (windows-386), func WriteFile(Handle, []uint8, *uint32, *Overlapped) error
 pkg syscall (windows-386), method (*DLL) FindProc(string) (*Proc, error)
 pkg syscall (windows-386), method (*DLL) MustFindProc(string) *Proc
 pkg syscall (windows-386), method (*DLL) Release() error
@@ -22336,14 +28686,14 @@ pkg syscall (windows-386), method (*LazyDLL) Handle() uintptr
 pkg syscall (windows-386), method (*LazyDLL) Load() error
 pkg syscall (windows-386), method (*LazyDLL) NewProc(string) *LazyProc
 pkg syscall (windows-386), method (*LazyProc) Addr() uintptr
-pkg syscall (windows-386), method (*LazyProc) Call(...uintptr) (uintptr, error)
+pkg syscall (windows-386), method (*LazyProc) Call(...uintptr) (uintptr, uintptr, error)
 pkg syscall (windows-386), method (*LazyProc) Find() error
 pkg syscall (windows-386), method (*Proc) Addr() uintptr
-pkg syscall (windows-386), method (*Proc) Call(...uintptr) (uintptr, error)
+pkg syscall (windows-386), method (*Proc) Call(...uintptr) (uintptr, uintptr, error)
 pkg syscall (windows-386), method (*RawSockaddrAny) Sockaddr() (Sockaddr, error)
 pkg syscall (windows-386), method (*SID) Copy() (*SID, error)
 pkg syscall (windows-386), method (*SID) Len() int
-pkg syscall (windows-386), method (*SID) LookupAccount(string) (string, uint32, error)
+pkg syscall (windows-386), method (*SID) LookupAccount(string) (string, string, uint32, error)
 pkg syscall (windows-386), method (*SID) String() (string, error)
 pkg syscall (windows-386), method (*Timeval) Nanoseconds() int64
 pkg syscall (windows-386), method (Token) Close() error
@@ -22398,19 +28748,19 @@ pkg syscall (windows-386), type CertChainPolicyStatus struct, ExtraPolicyStatus
 pkg syscall (windows-386), type CertChainPolicyStatus struct, Size uint32
 pkg syscall (windows-386), type CertContext struct
 pkg syscall (windows-386), type CertContext struct, CertInfo uintptr
-pkg syscall (windows-386), type CertContext struct, EncodedCert *byte
+pkg syscall (windows-386), type CertContext struct, EncodedCert *uint8
 pkg syscall (windows-386), type CertContext struct, EncodingType uint32
 pkg syscall (windows-386), type CertContext struct, Length uint32
 pkg syscall (windows-386), type CertContext struct, Store Handle
 pkg syscall (windows-386), type CertEnhKeyUsage struct
 pkg syscall (windows-386), type CertEnhKeyUsage struct, Length uint32
-pkg syscall (windows-386), type CertEnhKeyUsage struct, UsageIdentifiers **byte
+pkg syscall (windows-386), type CertEnhKeyUsage struct, UsageIdentifiers **uint8
 pkg syscall (windows-386), type CertRevocationInfo struct
 pkg syscall (windows-386), type CertRevocationInfo struct, CrlInfo uintptr
 pkg syscall (windows-386), type CertRevocationInfo struct, FreshnessTime uint32
 pkg syscall (windows-386), type CertRevocationInfo struct, HasFreshnessTime uint32
 pkg syscall (windows-386), type CertRevocationInfo struct, OidSpecificInfo uintptr
-pkg syscall (windows-386), type CertRevocationInfo struct, RevocationOid *byte
+pkg syscall (windows-386), type CertRevocationInfo struct, RevocationOid *uint8
 pkg syscall (windows-386), type CertRevocationInfo struct, RevocationResult uint32
 pkg syscall (windows-386), type CertRevocationInfo struct, Size uint32
 pkg syscall (windows-386), type CertSimpleChain struct
@@ -22441,7 +28791,7 @@ pkg syscall (windows-386), type DNSMXData struct, Preference uint16
 pkg syscall (windows-386), type DNSPTRData struct
 pkg syscall (windows-386), type DNSPTRData struct, Host *uint16
 pkg syscall (windows-386), type DNSRecord struct
-pkg syscall (windows-386), type DNSRecord struct, Data [40]byte
+pkg syscall (windows-386), type DNSRecord struct, Data [40]uint8
 pkg syscall (windows-386), type DNSRecord struct, Dw uint32
 pkg syscall (windows-386), type DNSRecord struct, Length uint16
 pkg syscall (windows-386), type DNSRecord struct, Name *uint16
@@ -22468,23 +28818,23 @@ pkg syscall (windows-386), type Filetime struct, HighDateTime uint32
 pkg syscall (windows-386), type Filetime struct, LowDateTime uint32
 pkg syscall (windows-386), type Handle uintptr
 pkg syscall (windows-386), type Hostent struct
-pkg syscall (windows-386), type Hostent struct, AddrList **byte
+pkg syscall (windows-386), type Hostent struct, AddrList **uint8
 pkg syscall (windows-386), type Hostent struct, AddrType uint16
-pkg syscall (windows-386), type Hostent struct, Aliases **byte
+pkg syscall (windows-386), type Hostent struct, Aliases **uint8
 pkg syscall (windows-386), type Hostent struct, Length uint16
-pkg syscall (windows-386), type Hostent struct, Name *byte
+pkg syscall (windows-386), type Hostent struct, Name *uint8
 pkg syscall (windows-386), type InterfaceInfo struct
 pkg syscall (windows-386), type InterfaceInfo struct, Address SockaddrGen
 pkg syscall (windows-386), type InterfaceInfo struct, BroadcastAddress SockaddrGen
 pkg syscall (windows-386), type InterfaceInfo struct, Flags uint32
 pkg syscall (windows-386), type InterfaceInfo struct, Netmask SockaddrGen
 pkg syscall (windows-386), type IpAdapterInfo struct
-pkg syscall (windows-386), type IpAdapterInfo struct, AdapterName [MAX_ADAPTER_NAME_LENGTH + 4]byte
-pkg syscall (windows-386), type IpAdapterInfo struct, Address [MAX_ADAPTER_ADDRESS_LENGTH]byte
+pkg syscall (windows-386), type IpAdapterInfo struct, AdapterName [260]uint8
+pkg syscall (windows-386), type IpAdapterInfo struct, Address [8]uint8
 pkg syscall (windows-386), type IpAdapterInfo struct, AddressLength uint32
 pkg syscall (windows-386), type IpAdapterInfo struct, ComboIndex uint32
 pkg syscall (windows-386), type IpAdapterInfo struct, CurrentIpAddress *IpAddrString
-pkg syscall (windows-386), type IpAdapterInfo struct, Description [MAX_ADAPTER_DESCRIPTION_LENGTH + 4]byte
+pkg syscall (windows-386), type IpAdapterInfo struct, Description [132]uint8
 pkg syscall (windows-386), type IpAdapterInfo struct, DhcpEnabled uint32
 pkg syscall (windows-386), type IpAdapterInfo struct, DhcpServer IpAddrString
 pkg syscall (windows-386), type IpAdapterInfo struct, GatewayList IpAddrString
@@ -22503,15 +28853,15 @@ pkg syscall (windows-386), type IpAddrString struct, IpAddress IpAddressString
 pkg syscall (windows-386), type IpAddrString struct, IpMask IpMaskString
 pkg syscall (windows-386), type IpAddrString struct, Next *IpAddrString
 pkg syscall (windows-386), type IpAddressString struct
-pkg syscall (windows-386), type IpAddressString struct, String [16]byte
-pkg syscall (windows-386), type IpMaskString IpAddressString
+pkg syscall (windows-386), type IpAddressString struct, String [16]uint8
+pkg syscall (windows-386), type IpMaskString struct
 pkg syscall (windows-386), type LazyDLL struct
 pkg syscall (windows-386), type LazyDLL struct, Name string
 pkg syscall (windows-386), type LazyProc struct
 pkg syscall (windows-386), type LazyProc struct, Name string
 pkg syscall (windows-386), type MibIfRow struct
 pkg syscall (windows-386), type MibIfRow struct, AdminStatus uint32
-pkg syscall (windows-386), type MibIfRow struct, Descr [MAXLEN_IFDESCR]byte
+pkg syscall (windows-386), type MibIfRow struct, Descr [256]uint8
 pkg syscall (windows-386), type MibIfRow struct, DescrLen uint32
 pkg syscall (windows-386), type MibIfRow struct, InDiscards uint32
 pkg syscall (windows-386), type MibIfRow struct, InErrors uint32
@@ -22522,7 +28872,7 @@ pkg syscall (windows-386), type MibIfRow struct, InUnknownProtos uint32
 pkg syscall (windows-386), type MibIfRow struct, Index uint32
 pkg syscall (windows-386), type MibIfRow struct, LastChange uint32
 pkg syscall (windows-386), type MibIfRow struct, Mtu uint32
-pkg syscall (windows-386), type MibIfRow struct, Name [MAX_INTERFACE_NAME_LEN]uint16
+pkg syscall (windows-386), type MibIfRow struct, Name [256]uint16
 pkg syscall (windows-386), type MibIfRow struct, OperStatus uint32
 pkg syscall (windows-386), type MibIfRow struct, OutDiscards uint32
 pkg syscall (windows-386), type MibIfRow struct, OutErrors uint32
@@ -22530,7 +28880,7 @@ pkg syscall (windows-386), type MibIfRow struct, OutNUcastPkts uint32
 pkg syscall (windows-386), type MibIfRow struct, OutOctets uint32
 pkg syscall (windows-386), type MibIfRow struct, OutQLen uint32
 pkg syscall (windows-386), type MibIfRow struct, OutUcastPkts uint32
-pkg syscall (windows-386), type MibIfRow struct, PhysAddr [MAXLEN_PHYSADDR]byte
+pkg syscall (windows-386), type MibIfRow struct, PhysAddr [8]uint8
 pkg syscall (windows-386), type MibIfRow struct, PhysAddrLen uint32
 pkg syscall (windows-386), type MibIfRow struct, Speed uint32
 pkg syscall (windows-386), type MibIfRow struct, Type uint32
@@ -22549,9 +28899,10 @@ pkg syscall (windows-386), type ProcessInformation struct, ProcessId uint32
 pkg syscall (windows-386), type ProcessInformation struct, Thread Handle
 pkg syscall (windows-386), type ProcessInformation struct, ThreadId uint32
 pkg syscall (windows-386), type Protoent struct
-pkg syscall (windows-386), type Protoent struct, Aliases **byte
-pkg syscall (windows-386), type Protoent struct, Name *byte
+pkg syscall (windows-386), type Protoent struct, Aliases **uint8
+pkg syscall (windows-386), type Protoent struct, Name *uint8
 pkg syscall (windows-386), type Protoent struct, Proto uint16
+pkg syscall (windows-386), type RawSockaddr struct, Data [14]int8
 pkg syscall (windows-386), type RawSockaddr struct, Family uint16
 pkg syscall (windows-386), type RawSockaddrAny struct, Pad [96]int8
 pkg syscall (windows-386), type RawSockaddrInet4 struct, Family uint16
@@ -22574,11 +28925,11 @@ pkg syscall (windows-386), type SecurityAttributes struct, InheritHandle uint32
 pkg syscall (windows-386), type SecurityAttributes struct, Length uint32
 pkg syscall (windows-386), type SecurityAttributes struct, SecurityDescriptor uintptr
 pkg syscall (windows-386), type Servent struct
-pkg syscall (windows-386), type Servent struct, Aliases **byte
-pkg syscall (windows-386), type Servent struct, Name *byte
+pkg syscall (windows-386), type Servent struct, Aliases **uint8
+pkg syscall (windows-386), type Servent struct, Name *uint8
 pkg syscall (windows-386), type Servent struct, Port uint16
-pkg syscall (windows-386), type Servent struct, Proto *byte
-pkg syscall (windows-386), type SockaddrGen [24]byte
+pkg syscall (windows-386), type Servent struct, Proto *uint8
+pkg syscall (windows-386), type SockaddrGen [24]uint8
 pkg syscall (windows-386), type StartupInfo struct
 pkg syscall (windows-386), type StartupInfo struct, Cb uint32
 pkg syscall (windows-386), type StartupInfo struct, Desktop *uint16
@@ -22618,7 +28969,7 @@ pkg syscall (windows-386), type Timezoneinformation struct, DaylightName [32]uin
 pkg syscall (windows-386), type Timezoneinformation struct, StandardBias int32
 pkg syscall (windows-386), type Timezoneinformation struct, StandardDate Systemtime
 pkg syscall (windows-386), type Timezoneinformation struct, StandardName [32]uint16
-pkg syscall (windows-386), type Token Handle
+pkg syscall (windows-386), type Token uintptr
 pkg syscall (windows-386), type Tokenprimarygroup struct
 pkg syscall (windows-386), type Tokenprimarygroup struct, PrimaryGroup *SID
 pkg syscall (windows-386), type Tokenuser struct
@@ -22634,15 +28985,15 @@ pkg syscall (windows-386), type UserInfo10 struct, FullName *uint16
 pkg syscall (windows-386), type UserInfo10 struct, Name *uint16
 pkg syscall (windows-386), type UserInfo10 struct, UsrComment *uint16
 pkg syscall (windows-386), type WSABuf struct
-pkg syscall (windows-386), type WSABuf struct, Buf *byte
+pkg syscall (windows-386), type WSABuf struct, Buf *uint8
 pkg syscall (windows-386), type WSABuf struct, Len uint32
 pkg syscall (windows-386), type WSAData struct
-pkg syscall (windows-386), type WSAData struct, Description [WSADESCRIPTION_LEN + 1]byte
+pkg syscall (windows-386), type WSAData struct, Description [257]uint8
 pkg syscall (windows-386), type WSAData struct, HighVersion uint16
 pkg syscall (windows-386), type WSAData struct, MaxSockets uint16
 pkg syscall (windows-386), type WSAData struct, MaxUdpDg uint16
-pkg syscall (windows-386), type WSAData struct, SystemStatus [WSASYS_STATUS_LEN + 1]byte
-pkg syscall (windows-386), type WSAData struct, VendorInfo *byte
+pkg syscall (windows-386), type WSAData struct, SystemStatus [129]uint8
+pkg syscall (windows-386), type WSAData struct, VendorInfo *uint8
 pkg syscall (windows-386), type WSAData struct, Version uint16
 pkg syscall (windows-386), type WaitStatus struct
 pkg syscall (windows-386), type WaitStatus struct, ExitCode uint32
@@ -22657,16 +29008,16 @@ pkg syscall (windows-386), type Win32finddata struct
 pkg syscall (windows-386), type Win32finddata struct, AlternateFileName [13]uint16
 pkg syscall (windows-386), type Win32finddata struct, CreationTime Filetime
 pkg syscall (windows-386), type Win32finddata struct, FileAttributes uint32
-pkg syscall (windows-386), type Win32finddata struct, FileName [MAX_PATH - 1]uint16
+pkg syscall (windows-386), type Win32finddata struct, FileName [259]uint16
 pkg syscall (windows-386), type Win32finddata struct, FileSizeHigh uint32
 pkg syscall (windows-386), type Win32finddata struct, FileSizeLow uint32
 pkg syscall (windows-386), type Win32finddata struct, LastAccessTime Filetime
 pkg syscall (windows-386), type Win32finddata struct, LastWriteTime Filetime
 pkg syscall (windows-386), type Win32finddata struct, Reserved0 uint32
 pkg syscall (windows-386), type Win32finddata struct, Reserved1 uint32
-pkg syscall (windows-386), var OID_PKIX_KP_SERVER_AUTH []byte
-pkg syscall (windows-386), var OID_SERVER_GATED_CRYPTO []byte
-pkg syscall (windows-386), var OID_SGC_NETSCAPE []byte
+pkg syscall (windows-386), var OID_PKIX_KP_SERVER_AUTH []uint8
+pkg syscall (windows-386), var OID_SERVER_GATED_CRYPTO []uint8
+pkg syscall (windows-386), var OID_SGC_NETSCAPE []uint8
 pkg syscall (windows-386), var Stderr Handle
 pkg syscall (windows-386), var Stdin Handle
 pkg syscall (windows-386), var Stdout Handle
@@ -22786,6 +29137,7 @@ pkg syscall (windows-amd64), const DUPLICATE_SAME_ACCESS ideal-int
 pkg syscall (windows-amd64), const EADV Errno
 pkg syscall (windows-amd64), const EBADE Errno
 pkg syscall (windows-amd64), const EBADFD Errno
+pkg syscall (windows-amd64), const EBADMSG Errno
 pkg syscall (windows-amd64), const EBADR Errno
 pkg syscall (windows-amd64), const EBADRQC Errno
 pkg syscall (windows-amd64), const EBADSLT Errno
@@ -22809,15 +29161,23 @@ pkg syscall (windows-amd64), const ELIBMAX Errno
 pkg syscall (windows-amd64), const ELIBSCN Errno
 pkg syscall (windows-amd64), const ELNRNG Errno
 pkg syscall (windows-amd64), const EMEDIUMTYPE Errno
+pkg syscall (windows-amd64), const EMULTIHOP Errno
 pkg syscall (windows-amd64), const ENAVAIL Errno
 pkg syscall (windows-amd64), const ENOANO Errno
 pkg syscall (windows-amd64), const ENOCSI Errno
+pkg syscall (windows-amd64), const ENODATA Errno
 pkg syscall (windows-amd64), const ENOKEY Errno
+pkg syscall (windows-amd64), const ENOLINK Errno
 pkg syscall (windows-amd64), const ENOMEDIUM Errno
 pkg syscall (windows-amd64), const ENONET Errno
 pkg syscall (windows-amd64), const ENOPKG Errno
+pkg syscall (windows-amd64), const ENOSR Errno
+pkg syscall (windows-amd64), const ENOSTR Errno
 pkg syscall (windows-amd64), const ENOTNAM Errno
+pkg syscall (windows-amd64), const ENOTRECOVERABLE Errno
 pkg syscall (windows-amd64), const ENOTUNIQ Errno
+pkg syscall (windows-amd64), const EOWNERDEAD Errno
+pkg syscall (windows-amd64), const EPROTO Errno
 pkg syscall (windows-amd64), const EREMCHG Errno
 pkg syscall (windows-amd64), const EREMOTEIO Errno
 pkg syscall (windows-amd64), const ERESTART Errno
@@ -22837,6 +29197,7 @@ pkg syscall (windows-amd64), const ERROR_PATH_NOT_FOUND Errno
 pkg syscall (windows-amd64), const ERROR_PROC_NOT_FOUND Errno
 pkg syscall (windows-amd64), const ESRMNT Errno
 pkg syscall (windows-amd64), const ESTRPIPE Errno
+pkg syscall (windows-amd64), const ETIME Errno
 pkg syscall (windows-amd64), const EUCLEAN Errno
 pkg syscall (windows-amd64), const EUNATCH Errno
 pkg syscall (windows-amd64), const EWINDOWS Errno
@@ -23008,6 +29369,7 @@ pkg syscall (windows-amd64), const SW_SHOWNA ideal-int
 pkg syscall (windows-amd64), const SW_SHOWNOACTIVATE ideal-int
 pkg syscall (windows-amd64), const SW_SHOWNORMAL ideal-int
 pkg syscall (windows-amd64), const SYNCHRONIZE ideal-int
+pkg syscall (windows-amd64), const S_IWRITE ideal-int
 pkg syscall (windows-amd64), const SidTypeAlias ideal-int
 pkg syscall (windows-amd64), const SidTypeComputer ideal-int
 pkg syscall (windows-amd64), const SidTypeDeletedAccount ideal-int
@@ -23078,12 +29440,12 @@ pkg syscall (windows-amd64), const WSADESCRIPTION_LEN ideal-int
 pkg syscall (windows-amd64), const WSASYS_STATUS_LEN ideal-int
 pkg syscall (windows-amd64), const X509_ASN_ENCODING ideal-int
 pkg syscall (windows-amd64), func Accept(Handle) (Handle, Sockaddr, error)
-pkg syscall (windows-amd64), func AcceptEx(Handle, Handle, *byte, uint32, uint32, uint32, *uint32, *Overlapped) error
+pkg syscall (windows-amd64), func AcceptEx(Handle, Handle, *uint8, uint32, uint32, uint32, *uint32, *Overlapped) error
 pkg syscall (windows-amd64), func Bind(Handle, Sockaddr) error
 pkg syscall (windows-amd64), func CancelIo(Handle) error
 pkg syscall (windows-amd64), func CertAddCertificateContextToStore(Handle, *CertContext, uint32, **CertContext) error
 pkg syscall (windows-amd64), func CertCloseStore(Handle, uint32) error
-pkg syscall (windows-amd64), func CertCreateCertificateContext(uint32, *byte, uint32) (*CertContext, error)
+pkg syscall (windows-amd64), func CertCreateCertificateContext(uint32, *uint8, uint32) (*CertContext, error)
 pkg syscall (windows-amd64), func CertEnumCertificatesInStore(Handle, *CertContext) (*CertContext, error)
 pkg syscall (windows-amd64), func CertFreeCertificateChain(*CertChainContext)
 pkg syscall (windows-amd64), func CertFreeCertificateContext(*CertContext) error
@@ -23108,10 +29470,10 @@ pkg syscall (windows-amd64), func CreateIoCompletionPort(Handle, Handle, uint32,
 pkg syscall (windows-amd64), func CreatePipe(*Handle, *Handle, *SecurityAttributes, uint32) error
 pkg syscall (windows-amd64), func CreateProcess(*uint16, *uint16, *SecurityAttributes, *SecurityAttributes, bool, uint32, *uint16, *uint16, *StartupInfo, *ProcessInformation) error
 pkg syscall (windows-amd64), func CryptAcquireContext(*Handle, *uint16, *uint16, uint32, uint32) error
-pkg syscall (windows-amd64), func CryptGenRandom(Handle, uint32, *byte) error
+pkg syscall (windows-amd64), func CryptGenRandom(Handle, uint32, *uint8) error
 pkg syscall (windows-amd64), func CryptReleaseContext(Handle, uint32) error
 pkg syscall (windows-amd64), func DeleteFile(*uint16) error
-pkg syscall (windows-amd64), func DnsQuery(string, uint16, uint32, *byte, **DNSRecord, *byte) error
+pkg syscall (windows-amd64), func DnsQuery(string, uint16, uint32, *uint8, **DNSRecord, *uint8) error
 pkg syscall (windows-amd64), func DnsRecordListFree(*DNSRecord, uint32)
 pkg syscall (windows-amd64), func DuplicateHandle(Handle, Handle, Handle, *Handle, uint32, bool, uint32) error
 pkg syscall (windows-amd64), func EscapeArg(string) string
@@ -23124,12 +29486,12 @@ pkg syscall (windows-amd64), func FindFirstFile(*uint16, *Win32finddata) (Handle
 pkg syscall (windows-amd64), func FindNextFile(Handle, *Win32finddata) error
 pkg syscall (windows-amd64), func FlushFileBuffers(Handle) error
 pkg syscall (windows-amd64), func FlushViewOfFile(uintptr, uintptr) error
-pkg syscall (windows-amd64), func FormatMessage(uint32, uint32, uint32, uint32, []uint16, *byte) (uint32, error)
+pkg syscall (windows-amd64), func FormatMessage(uint32, uint32, uint32, uint32, []uint16, *uint8) (uint32, error)
 pkg syscall (windows-amd64), func FreeEnvironmentStrings(*uint16) error
 pkg syscall (windows-amd64), func FreeLibrary(Handle) error
 pkg syscall (windows-amd64), func Fsync(Handle) error
 pkg syscall (windows-amd64), func Ftruncate(Handle, int64) error
-pkg syscall (windows-amd64), func GetAcceptExSockaddrs(*byte, uint32, uint32, uint32, **RawSockaddrAny, *int32, **RawSockaddrAny, *int32)
+pkg syscall (windows-amd64), func GetAcceptExSockaddrs(*uint8, uint32, uint32, uint32, **RawSockaddrAny, *int32, **RawSockaddrAny, *int32)
 pkg syscall (windows-amd64), func GetAdaptersInfo(*IpAdapterInfo, *uint32) error
 pkg syscall (windows-amd64), func GetCommandLine() *uint16
 pkg syscall (windows-amd64), func GetComputerName(*uint16, *uint32) error
@@ -23139,7 +29501,7 @@ pkg syscall (windows-amd64), func GetEnvironmentStrings() (*uint16, error)
 pkg syscall (windows-amd64), func GetEnvironmentVariable(*uint16, *uint16, uint32) (uint32, error)
 pkg syscall (windows-amd64), func GetExitCodeProcess(Handle, *uint32) error
 pkg syscall (windows-amd64), func GetFileAttributes(*uint16) (uint32, error)
-pkg syscall (windows-amd64), func GetFileAttributesEx(*uint16, uint32, *byte) error
+pkg syscall (windows-amd64), func GetFileAttributesEx(*uint16, uint32, *uint8) error
 pkg syscall (windows-amd64), func GetFileInformationByHandle(Handle, *ByHandleFileInformation) error
 pkg syscall (windows-amd64), func GetFileType(Handle) (uint32, error)
 pkg syscall (windows-amd64), func GetFullPathName(*uint16, uint32, *uint16, **uint16) (uint32, error)
@@ -23153,31 +29515,31 @@ pkg syscall (windows-amd64), func GetProcessTimes(Handle, *Filetime, *Filetime,
 pkg syscall (windows-amd64), func GetProtoByName(string) (*Protoent, error)
 pkg syscall (windows-amd64), func GetQueuedCompletionStatus(Handle, *uint32, *uint32, **Overlapped, uint32) error
 pkg syscall (windows-amd64), func GetServByName(string, string) (*Servent, error)
+pkg syscall (windows-amd64), func GetShortPathName(*uint16, *uint16, uint32) (uint32, error)
 pkg syscall (windows-amd64), func GetStartupInfo(*StartupInfo) error
 pkg syscall (windows-amd64), func GetStdHandle(int) (Handle, error)
 pkg syscall (windows-amd64), func GetSystemTimeAsFileTime(*Filetime)
 pkg syscall (windows-amd64), func GetTempPath(uint32, *uint16) (uint32, error)
 pkg syscall (windows-amd64), func GetTimeZoneInformation(*Timezoneinformation) (uint32, error)
-pkg syscall (windows-amd64), func GetTokenInformation(Token, uint32, *byte, uint32, *uint32) error
+pkg syscall (windows-amd64), func GetTokenInformation(Token, uint32, *uint8, uint32, *uint32) error
 pkg syscall (windows-amd64), func GetUserNameEx(uint32, *uint16, *uint32) error
 pkg syscall (windows-amd64), func GetUserProfileDirectory(Token, *uint16, *uint32) error
 pkg syscall (windows-amd64), func GetVersion() (uint32, error)
 pkg syscall (windows-amd64), func Getpeername(Handle) (Sockaddr, error)
 pkg syscall (windows-amd64), func Getsockname(Handle) (Sockaddr, error)
-pkg syscall (windows-amd64), func GetsockoptInt(Handle, int) (int, error)
-pkg syscall (windows-amd64), func Link(string) error
+pkg syscall (windows-amd64), func GetsockoptInt(Handle, int, int) (int, error)
 pkg syscall (windows-amd64), func Listen(Handle, int) error
 pkg syscall (windows-amd64), func LoadDLL(string) (*DLL, error)
 pkg syscall (windows-amd64), func LoadLibrary(string) (Handle, error)
 pkg syscall (windows-amd64), func LocalFree(Handle) (Handle, error)
 pkg syscall (windows-amd64), func LookupAccountName(*uint16, *uint16, *SID, *uint32, *uint16, *uint32, *uint32) error
 pkg syscall (windows-amd64), func LookupAccountSid(*uint16, *SID, *uint16, *uint32, *uint16, *uint32, *uint32) error
-pkg syscall (windows-amd64), func LookupSID(string) (*SID, string, uint32, error)
+pkg syscall (windows-amd64), func LookupSID(string, string) (*SID, string, uint32, error)
 pkg syscall (windows-amd64), func MapViewOfFile(Handle, uint32, uint32, uint32, uintptr) (uintptr, error)
 pkg syscall (windows-amd64), func MoveFile(*uint16, *uint16) error
 pkg syscall (windows-amd64), func MustLoadDLL(string) *DLL
-pkg syscall (windows-amd64), func NetApiBufferFree(*byte) error
-pkg syscall (windows-amd64), func NetUserGetInfo(*uint16, *uint16, uint32, **byte) error
+pkg syscall (windows-amd64), func NetApiBufferFree(*uint8) error
+pkg syscall (windows-amd64), func NetUserGetInfo(*uint16, *uint16, uint32, **uint8) error
 pkg syscall (windows-amd64), func NewCallback(interface{}) uintptr
 pkg syscall (windows-amd64), func NewLazyDLL(string) *LazyDLL
 pkg syscall (windows-amd64), func NsecToFiletime(int64) Filetime
@@ -23188,19 +29550,18 @@ pkg syscall (windows-amd64), func OpenProcess(uint32, bool, uint32) (Handle, err
 pkg syscall (windows-amd64), func OpenProcessToken(Handle, uint32, *Token) error
 pkg syscall (windows-amd64), func Pipe([]Handle) error
 pkg syscall (windows-amd64), func PostQueuedCompletionStatus(Handle, uint32, uint32, *Overlapped) error
-pkg syscall (windows-amd64), func Read(Handle, []byte) (int, error)
-pkg syscall (windows-amd64), func ReadDirectoryChanges(Handle, *byte, uint32, bool, uint32, *uint32, *Overlapped, uintptr) error
-pkg syscall (windows-amd64), func ReadFile(Handle, []byte, *uint32, *Overlapped) error
-pkg syscall (windows-amd64), func Recvfrom(Handle, []byte, int) (int, Sockaddr, error)
+pkg syscall (windows-amd64), func Read(Handle, []uint8) (int, error)
+pkg syscall (windows-amd64), func ReadDirectoryChanges(Handle, *uint8, uint32, bool, uint32, *uint32, *Overlapped, uintptr) error
+pkg syscall (windows-amd64), func ReadFile(Handle, []uint8, *uint32, *Overlapped) error
+pkg syscall (windows-amd64), func Recvfrom(Handle, []uint8, int) (int, Sockaddr, error)
 pkg syscall (windows-amd64), func RegCloseKey(Handle) error
 pkg syscall (windows-amd64), func RegEnumKeyEx(Handle, uint32, *uint16, *uint32, *uint32, *uint16, *uint32, *Filetime) error
 pkg syscall (windows-amd64), func RegOpenKeyEx(Handle, *uint16, uint32, uint32, *Handle) error
 pkg syscall (windows-amd64), func RegQueryInfoKey(Handle, *uint16, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *Filetime) error
-pkg syscall (windows-amd64), func RegQueryValueEx(Handle, *uint16, *uint32, *uint32, *byte, *uint32) error
+pkg syscall (windows-amd64), func RegQueryValueEx(Handle, *uint16, *uint32, *uint32, *uint8, *uint32) error
 pkg syscall (windows-amd64), func RemoveDirectory(*uint16) error
-pkg syscall (windows-amd64), func Rename(string) error
 pkg syscall (windows-amd64), func Seek(Handle, int64, int) (int64, error)
-pkg syscall (windows-amd64), func Sendto(Handle, []byte, int, Sockaddr) error
+pkg syscall (windows-amd64), func Sendto(Handle, []uint8, int, Sockaddr) error
 pkg syscall (windows-amd64), func SetCurrentDirectory(*uint16) error
 pkg syscall (windows-amd64), func SetEndOfFile(Handle) error
 pkg syscall (windows-amd64), func SetEnvironmentVariable(*uint16, *uint16) error
@@ -23209,24 +29570,25 @@ pkg syscall (windows-amd64), func SetFilePointer(Handle, int32, *int32, uint32)
 pkg syscall (windows-amd64), func SetFileTime(Handle, *Filetime, *Filetime, *Filetime) error
 pkg syscall (windows-amd64), func SetHandleInformation(Handle, uint32, uint32) error
 pkg syscall (windows-amd64), func SetNonblock(Handle, bool) error
-pkg syscall (windows-amd64), func Setsockopt(Handle, int32, int32, *byte, int32) error
-pkg syscall (windows-amd64), func SetsockoptIPMreq(Handle, int, *IPMreq) error
-pkg syscall (windows-amd64), func SetsockoptIPv6Mreq(Handle, int, *IPv6Mreq) error
-pkg syscall (windows-amd64), func SetsockoptInet4Addr(Handle, int, [4]byte) error
-pkg syscall (windows-amd64), func SetsockoptInt(Handle, int, int) error
-pkg syscall (windows-amd64), func SetsockoptLinger(Handle, int, *Linger) error
-pkg syscall (windows-amd64), func SetsockoptTimeval(Handle, int, *Timeval) error
+pkg syscall (windows-amd64), func Setsockopt(Handle, int32, int32, *uint8, int32) error
+pkg syscall (windows-amd64), func SetsockoptIPMreq(Handle, int, int, *IPMreq) error
+pkg syscall (windows-amd64), func SetsockoptIPv6Mreq(Handle, int, int, *IPv6Mreq) error
+pkg syscall (windows-amd64), func SetsockoptInet4Addr(Handle, int, int, [4]uint8) error
+pkg syscall (windows-amd64), func SetsockoptInt(Handle, int, int, int) error
+pkg syscall (windows-amd64), func SetsockoptLinger(Handle, int, int, *Linger) error
+pkg syscall (windows-amd64), func SetsockoptTimeval(Handle, int, int, *Timeval) error
 pkg syscall (windows-amd64), func Shutdown(Handle, int) error
-pkg syscall (windows-amd64), func Socket(int) (Handle, error)
+pkg syscall (windows-amd64), func Socket(int, int, int) (Handle, error)
 pkg syscall (windows-amd64), func StringToSid(string) (*SID, error)
 pkg syscall (windows-amd64), func StringToUTF16(string) []uint16
 pkg syscall (windows-amd64), func StringToUTF16Ptr(string) *uint16
-pkg syscall (windows-amd64), func Symlink(string) error
-pkg syscall (windows-amd64), func Syscall12(uintptr) (uintptr, Errno)
-pkg syscall (windows-amd64), func Syscall15(uintptr) (uintptr, Errno)
-pkg syscall (windows-amd64), func Syscall9(uintptr) (uintptr, Errno)
+pkg syscall (windows-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (windows-amd64), func Syscall12(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (windows-amd64), func Syscall15(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (windows-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
+pkg syscall (windows-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
 pkg syscall (windows-amd64), func TerminateProcess(Handle, uint32) error
-pkg syscall (windows-amd64), func TranslateAccountName(string, uint32, int) (string, error)
+pkg syscall (windows-amd64), func TranslateAccountName(string, uint32, uint32, int) (string, error)
 pkg syscall (windows-amd64), func TranslateName(*uint16, uint32, uint32, *uint16, *uint32) error
 pkg syscall (windows-amd64), func TransmitFile(Handle, Handle, uint32, uint32, *Overlapped, *TransmitFileBuffers, uint32) error
 pkg syscall (windows-amd64), func UTF16ToString([]uint16) string
@@ -23234,16 +29596,16 @@ pkg syscall (windows-amd64), func UnmapViewOfFile(uintptr) error
 pkg syscall (windows-amd64), func VirtualLock(uintptr, uintptr) error
 pkg syscall (windows-amd64), func VirtualUnlock(uintptr, uintptr) error
 pkg syscall (windows-amd64), func WSACleanup() error
-pkg syscall (windows-amd64), func WSAIoctl(Handle, uint32, *byte, uint32, *byte, uint32, *uint32, *Overlapped, uintptr) error
-pkg syscall (windows-amd64), func WSARecv(Handle, *WSABuf, uint32, *uint32, *uint32, *Overlapped, *byte) error
-pkg syscall (windows-amd64), func WSARecvFrom(Handle, *WSABuf, uint32, *uint32, *uint32, *RawSockaddrAny, *int32, *Overlapped, *byte) error
-pkg syscall (windows-amd64), func WSASend(Handle, *WSABuf, uint32, *uint32, uint32, *Overlapped, *byte) error
-pkg syscall (windows-amd64), func WSASendTo(Handle, *WSABuf, uint32, *uint32, uint32, *RawSockaddrAny, int32, *Overlapped, *byte) error
-pkg syscall (windows-amd64), func WSASendto(Handle, *WSABuf, uint32, *uint32, uint32, Sockaddr, *Overlapped, *byte) error
+pkg syscall (windows-amd64), func WSAIoctl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped, uintptr) error
+pkg syscall (windows-amd64), func WSARecv(Handle, *WSABuf, uint32, *uint32, *uint32, *Overlapped, *uint8) error
+pkg syscall (windows-amd64), func WSARecvFrom(Handle, *WSABuf, uint32, *uint32, *uint32, *RawSockaddrAny, *int32, *Overlapped, *uint8) error
+pkg syscall (windows-amd64), func WSASend(Handle, *WSABuf, uint32, *uint32, uint32, *Overlapped, *uint8) error
+pkg syscall (windows-amd64), func WSASendTo(Handle, *WSABuf, uint32, *uint32, uint32, *RawSockaddrAny, int32, *Overlapped, *uint8) error
+pkg syscall (windows-amd64), func WSASendto(Handle, *WSABuf, uint32, *uint32, uint32, Sockaddr, *Overlapped, *uint8) error
 pkg syscall (windows-amd64), func WSAStartup(uint32, *WSAData) error
 pkg syscall (windows-amd64), func WaitForSingleObject(Handle, uint32) (uint32, error)
-pkg syscall (windows-amd64), func Write(Handle, []byte) (int, error)
-pkg syscall (windows-amd64), func WriteFile(Handle, []byte, *uint32, *Overlapped) error
+pkg syscall (windows-amd64), func Write(Handle, []uint8) (int, error)
+pkg syscall (windows-amd64), func WriteFile(Handle, []uint8, *uint32, *Overlapped) error
 pkg syscall (windows-amd64), method (*DLL) FindProc(string) (*Proc, error)
 pkg syscall (windows-amd64), method (*DLL) MustFindProc(string) *Proc
 pkg syscall (windows-amd64), method (*DLL) Release() error
@@ -23253,14 +29615,14 @@ pkg syscall (windows-amd64), method (*LazyDLL) Handle() uintptr
 pkg syscall (windows-amd64), method (*LazyDLL) Load() error
 pkg syscall (windows-amd64), method (*LazyDLL) NewProc(string) *LazyProc
 pkg syscall (windows-amd64), method (*LazyProc) Addr() uintptr
-pkg syscall (windows-amd64), method (*LazyProc) Call(...uintptr) (uintptr, error)
+pkg syscall (windows-amd64), method (*LazyProc) Call(...uintptr) (uintptr, uintptr, error)
 pkg syscall (windows-amd64), method (*LazyProc) Find() error
 pkg syscall (windows-amd64), method (*Proc) Addr() uintptr
-pkg syscall (windows-amd64), method (*Proc) Call(...uintptr) (uintptr, error)
+pkg syscall (windows-amd64), method (*Proc) Call(...uintptr) (uintptr, uintptr, error)
 pkg syscall (windows-amd64), method (*RawSockaddrAny) Sockaddr() (Sockaddr, error)
 pkg syscall (windows-amd64), method (*SID) Copy() (*SID, error)
 pkg syscall (windows-amd64), method (*SID) Len() int
-pkg syscall (windows-amd64), method (*SID) LookupAccount(string) (string, uint32, error)
+pkg syscall (windows-amd64), method (*SID) LookupAccount(string) (string, string, uint32, error)
 pkg syscall (windows-amd64), method (*SID) String() (string, error)
 pkg syscall (windows-amd64), method (*Timeval) Nanoseconds() int64
 pkg syscall (windows-amd64), method (Token) Close() error
@@ -23315,19 +29677,19 @@ pkg syscall (windows-amd64), type CertChainPolicyStatus struct, ExtraPolicyStatu
 pkg syscall (windows-amd64), type CertChainPolicyStatus struct, Size uint32
 pkg syscall (windows-amd64), type CertContext struct
 pkg syscall (windows-amd64), type CertContext struct, CertInfo uintptr
-pkg syscall (windows-amd64), type CertContext struct, EncodedCert *byte
+pkg syscall (windows-amd64), type CertContext struct, EncodedCert *uint8
 pkg syscall (windows-amd64), type CertContext struct, EncodingType uint32
 pkg syscall (windows-amd64), type CertContext struct, Length uint32
 pkg syscall (windows-amd64), type CertContext struct, Store Handle
 pkg syscall (windows-amd64), type CertEnhKeyUsage struct
 pkg syscall (windows-amd64), type CertEnhKeyUsage struct, Length uint32
-pkg syscall (windows-amd64), type CertEnhKeyUsage struct, UsageIdentifiers **byte
+pkg syscall (windows-amd64), type CertEnhKeyUsage struct, UsageIdentifiers **uint8
 pkg syscall (windows-amd64), type CertRevocationInfo struct
 pkg syscall (windows-amd64), type CertRevocationInfo struct, CrlInfo uintptr
 pkg syscall (windows-amd64), type CertRevocationInfo struct, FreshnessTime uint32
 pkg syscall (windows-amd64), type CertRevocationInfo struct, HasFreshnessTime uint32
 pkg syscall (windows-amd64), type CertRevocationInfo struct, OidSpecificInfo uintptr
-pkg syscall (windows-amd64), type CertRevocationInfo struct, RevocationOid *byte
+pkg syscall (windows-amd64), type CertRevocationInfo struct, RevocationOid *uint8
 pkg syscall (windows-amd64), type CertRevocationInfo struct, RevocationResult uint32
 pkg syscall (windows-amd64), type CertRevocationInfo struct, Size uint32
 pkg syscall (windows-amd64), type CertSimpleChain struct
@@ -23358,7 +29720,7 @@ pkg syscall (windows-amd64), type DNSMXData struct, Preference uint16
 pkg syscall (windows-amd64), type DNSPTRData struct
 pkg syscall (windows-amd64), type DNSPTRData struct, Host *uint16
 pkg syscall (windows-amd64), type DNSRecord struct
-pkg syscall (windows-amd64), type DNSRecord struct, Data [40]byte
+pkg syscall (windows-amd64), type DNSRecord struct, Data [40]uint8
 pkg syscall (windows-amd64), type DNSRecord struct, Dw uint32
 pkg syscall (windows-amd64), type DNSRecord struct, Length uint16
 pkg syscall (windows-amd64), type DNSRecord struct, Name *uint16
@@ -23385,23 +29747,23 @@ pkg syscall (windows-amd64), type Filetime struct, HighDateTime uint32
 pkg syscall (windows-amd64), type Filetime struct, LowDateTime uint32
 pkg syscall (windows-amd64), type Handle uintptr
 pkg syscall (windows-amd64), type Hostent struct
-pkg syscall (windows-amd64), type Hostent struct, AddrList **byte
+pkg syscall (windows-amd64), type Hostent struct, AddrList **uint8
 pkg syscall (windows-amd64), type Hostent struct, AddrType uint16
-pkg syscall (windows-amd64), type Hostent struct, Aliases **byte
+pkg syscall (windows-amd64), type Hostent struct, Aliases **uint8
 pkg syscall (windows-amd64), type Hostent struct, Length uint16
-pkg syscall (windows-amd64), type Hostent struct, Name *byte
+pkg syscall (windows-amd64), type Hostent struct, Name *uint8
 pkg syscall (windows-amd64), type InterfaceInfo struct
 pkg syscall (windows-amd64), type InterfaceInfo struct, Address SockaddrGen
 pkg syscall (windows-amd64), type InterfaceInfo struct, BroadcastAddress SockaddrGen
 pkg syscall (windows-amd64), type InterfaceInfo struct, Flags uint32
 pkg syscall (windows-amd64), type InterfaceInfo struct, Netmask SockaddrGen
 pkg syscall (windows-amd64), type IpAdapterInfo struct
-pkg syscall (windows-amd64), type IpAdapterInfo struct, AdapterName [MAX_ADAPTER_NAME_LENGTH + 4]byte
-pkg syscall (windows-amd64), type IpAdapterInfo struct, Address [MAX_ADAPTER_ADDRESS_LENGTH]byte
+pkg syscall (windows-amd64), type IpAdapterInfo struct, AdapterName [260]uint8
+pkg syscall (windows-amd64), type IpAdapterInfo struct, Address [8]uint8
 pkg syscall (windows-amd64), type IpAdapterInfo struct, AddressLength uint32
 pkg syscall (windows-amd64), type IpAdapterInfo struct, ComboIndex uint32
 pkg syscall (windows-amd64), type IpAdapterInfo struct, CurrentIpAddress *IpAddrString
-pkg syscall (windows-amd64), type IpAdapterInfo struct, Description [MAX_ADAPTER_DESCRIPTION_LENGTH + 4]byte
+pkg syscall (windows-amd64), type IpAdapterInfo struct, Description [132]uint8
 pkg syscall (windows-amd64), type IpAdapterInfo struct, DhcpEnabled uint32
 pkg syscall (windows-amd64), type IpAdapterInfo struct, DhcpServer IpAddrString
 pkg syscall (windows-amd64), type IpAdapterInfo struct, GatewayList IpAddrString
@@ -23420,15 +29782,15 @@ pkg syscall (windows-amd64), type IpAddrString struct, IpAddress IpAddressString
 pkg syscall (windows-amd64), type IpAddrString struct, IpMask IpMaskString
 pkg syscall (windows-amd64), type IpAddrString struct, Next *IpAddrString
 pkg syscall (windows-amd64), type IpAddressString struct
-pkg syscall (windows-amd64), type IpAddressString struct, String [16]byte
-pkg syscall (windows-amd64), type IpMaskString IpAddressString
+pkg syscall (windows-amd64), type IpAddressString struct, String [16]uint8
+pkg syscall (windows-amd64), type IpMaskString struct
 pkg syscall (windows-amd64), type LazyDLL struct
 pkg syscall (windows-amd64), type LazyDLL struct, Name string
 pkg syscall (windows-amd64), type LazyProc struct
 pkg syscall (windows-amd64), type LazyProc struct, Name string
 pkg syscall (windows-amd64), type MibIfRow struct
 pkg syscall (windows-amd64), type MibIfRow struct, AdminStatus uint32
-pkg syscall (windows-amd64), type MibIfRow struct, Descr [MAXLEN_IFDESCR]byte
+pkg syscall (windows-amd64), type MibIfRow struct, Descr [256]uint8
 pkg syscall (windows-amd64), type MibIfRow struct, DescrLen uint32
 pkg syscall (windows-amd64), type MibIfRow struct, InDiscards uint32
 pkg syscall (windows-amd64), type MibIfRow struct, InErrors uint32
@@ -23439,7 +29801,7 @@ pkg syscall (windows-amd64), type MibIfRow struct, InUnknownProtos uint32
 pkg syscall (windows-amd64), type MibIfRow struct, Index uint32
 pkg syscall (windows-amd64), type MibIfRow struct, LastChange uint32
 pkg syscall (windows-amd64), type MibIfRow struct, Mtu uint32
-pkg syscall (windows-amd64), type MibIfRow struct, Name [MAX_INTERFACE_NAME_LEN]uint16
+pkg syscall (windows-amd64), type MibIfRow struct, Name [256]uint16
 pkg syscall (windows-amd64), type MibIfRow struct, OperStatus uint32
 pkg syscall (windows-amd64), type MibIfRow struct, OutDiscards uint32
 pkg syscall (windows-amd64), type MibIfRow struct, OutErrors uint32
@@ -23447,7 +29809,7 @@ pkg syscall (windows-amd64), type MibIfRow struct, OutNUcastPkts uint32
 pkg syscall (windows-amd64), type MibIfRow struct, OutOctets uint32
 pkg syscall (windows-amd64), type MibIfRow struct, OutQLen uint32
 pkg syscall (windows-amd64), type MibIfRow struct, OutUcastPkts uint32
-pkg syscall (windows-amd64), type MibIfRow struct, PhysAddr [MAXLEN_PHYSADDR]byte
+pkg syscall (windows-amd64), type MibIfRow struct, PhysAddr [8]uint8
 pkg syscall (windows-amd64), type MibIfRow struct, PhysAddrLen uint32
 pkg syscall (windows-amd64), type MibIfRow struct, Speed uint32
 pkg syscall (windows-amd64), type MibIfRow struct, Type uint32
@@ -23466,9 +29828,10 @@ pkg syscall (windows-amd64), type ProcessInformation struct, ProcessId uint32
 pkg syscall (windows-amd64), type ProcessInformation struct, Thread Handle
 pkg syscall (windows-amd64), type ProcessInformation struct, ThreadId uint32
 pkg syscall (windows-amd64), type Protoent struct
-pkg syscall (windows-amd64), type Protoent struct, Aliases **byte
-pkg syscall (windows-amd64), type Protoent struct, Name *byte
+pkg syscall (windows-amd64), type Protoent struct, Aliases **uint8
+pkg syscall (windows-amd64), type Protoent struct, Name *uint8
 pkg syscall (windows-amd64), type Protoent struct, Proto uint16
+pkg syscall (windows-amd64), type RawSockaddr struct, Data [14]int8
 pkg syscall (windows-amd64), type RawSockaddr struct, Family uint16
 pkg syscall (windows-amd64), type RawSockaddrAny struct, Pad [96]int8
 pkg syscall (windows-amd64), type RawSockaddrInet4 struct, Family uint16
@@ -23491,11 +29854,11 @@ pkg syscall (windows-amd64), type SecurityAttributes struct, InheritHandle uint3
 pkg syscall (windows-amd64), type SecurityAttributes struct, Length uint32
 pkg syscall (windows-amd64), type SecurityAttributes struct, SecurityDescriptor uintptr
 pkg syscall (windows-amd64), type Servent struct
-pkg syscall (windows-amd64), type Servent struct, Aliases **byte
-pkg syscall (windows-amd64), type Servent struct, Name *byte
+pkg syscall (windows-amd64), type Servent struct, Aliases **uint8
+pkg syscall (windows-amd64), type Servent struct, Name *uint8
 pkg syscall (windows-amd64), type Servent struct, Port uint16
-pkg syscall (windows-amd64), type Servent struct, Proto *byte
-pkg syscall (windows-amd64), type SockaddrGen [24]byte
+pkg syscall (windows-amd64), type Servent struct, Proto *uint8
+pkg syscall (windows-amd64), type SockaddrGen [24]uint8
 pkg syscall (windows-amd64), type StartupInfo struct
 pkg syscall (windows-amd64), type StartupInfo struct, Cb uint32
 pkg syscall (windows-amd64), type StartupInfo struct, Desktop *uint16
@@ -23535,7 +29898,7 @@ pkg syscall (windows-amd64), type Timezoneinformation struct, DaylightName [32]u
 pkg syscall (windows-amd64), type Timezoneinformation struct, StandardBias int32
 pkg syscall (windows-amd64), type Timezoneinformation struct, StandardDate Systemtime
 pkg syscall (windows-amd64), type Timezoneinformation struct, StandardName [32]uint16
-pkg syscall (windows-amd64), type Token Handle
+pkg syscall (windows-amd64), type Token uintptr
 pkg syscall (windows-amd64), type Tokenprimarygroup struct
 pkg syscall (windows-amd64), type Tokenprimarygroup struct, PrimaryGroup *SID
 pkg syscall (windows-amd64), type Tokenuser struct
@@ -23551,15 +29914,15 @@ pkg syscall (windows-amd64), type UserInfo10 struct, FullName *uint16
 pkg syscall (windows-amd64), type UserInfo10 struct, Name *uint16
 pkg syscall (windows-amd64), type UserInfo10 struct, UsrComment *uint16
 pkg syscall (windows-amd64), type WSABuf struct
-pkg syscall (windows-amd64), type WSABuf struct, Buf *byte
+pkg syscall (windows-amd64), type WSABuf struct, Buf *uint8
 pkg syscall (windows-amd64), type WSABuf struct, Len uint32
 pkg syscall (windows-amd64), type WSAData struct
-pkg syscall (windows-amd64), type WSAData struct, Description [WSADESCRIPTION_LEN + 1]byte
+pkg syscall (windows-amd64), type WSAData struct, Description [257]uint8
 pkg syscall (windows-amd64), type WSAData struct, HighVersion uint16
 pkg syscall (windows-amd64), type WSAData struct, MaxSockets uint16
 pkg syscall (windows-amd64), type WSAData struct, MaxUdpDg uint16
-pkg syscall (windows-amd64), type WSAData struct, SystemStatus [WSASYS_STATUS_LEN + 1]byte
-pkg syscall (windows-amd64), type WSAData struct, VendorInfo *byte
+pkg syscall (windows-amd64), type WSAData struct, SystemStatus [129]uint8
+pkg syscall (windows-amd64), type WSAData struct, VendorInfo *uint8
 pkg syscall (windows-amd64), type WSAData struct, Version uint16
 pkg syscall (windows-amd64), type WaitStatus struct
 pkg syscall (windows-amd64), type WaitStatus struct, ExitCode uint32
@@ -23574,16 +29937,16 @@ pkg syscall (windows-amd64), type Win32finddata struct
 pkg syscall (windows-amd64), type Win32finddata struct, AlternateFileName [13]uint16
 pkg syscall (windows-amd64), type Win32finddata struct, CreationTime Filetime
 pkg syscall (windows-amd64), type Win32finddata struct, FileAttributes uint32
-pkg syscall (windows-amd64), type Win32finddata struct, FileName [MAX_PATH - 1]uint16
+pkg syscall (windows-amd64), type Win32finddata struct, FileName [259]uint16
 pkg syscall (windows-amd64), type Win32finddata struct, FileSizeHigh uint32
 pkg syscall (windows-amd64), type Win32finddata struct, FileSizeLow uint32
 pkg syscall (windows-amd64), type Win32finddata struct, LastAccessTime Filetime
 pkg syscall (windows-amd64), type Win32finddata struct, LastWriteTime Filetime
 pkg syscall (windows-amd64), type Win32finddata struct, Reserved0 uint32
 pkg syscall (windows-amd64), type Win32finddata struct, Reserved1 uint32
-pkg syscall (windows-amd64), var OID_PKIX_KP_SERVER_AUTH []byte
-pkg syscall (windows-amd64), var OID_SERVER_GATED_CRYPTO []byte
-pkg syscall (windows-amd64), var OID_SGC_NETSCAPE []byte
+pkg syscall (windows-amd64), var OID_PKIX_KP_SERVER_AUTH []uint8
+pkg syscall (windows-amd64), var OID_SERVER_GATED_CRYPTO []uint8
+pkg syscall (windows-amd64), var OID_SGC_NETSCAPE []uint8
 pkg syscall (windows-amd64), var Stderr Handle
 pkg syscall (windows-amd64), var Stdin Handle
 pkg syscall (windows-amd64), var Stdout Handle
@@ -23599,7 +29962,6 @@ pkg syscall, const EAFNOSUPPORT Errno
 pkg syscall, const EAGAIN Errno
 pkg syscall, const EALREADY Errno
 pkg syscall, const EBADF Errno
-pkg syscall, const EBADMSG Errno
 pkg syscall, const EBUSY Errno
 pkg syscall, const ECANCELED Errno
 pkg syscall, const ECHILD Errno
@@ -23627,42 +29989,34 @@ pkg syscall, const ELOOP Errno
 pkg syscall, const EMFILE Errno
 pkg syscall, const EMLINK Errno
 pkg syscall, const EMSGSIZE Errno
-pkg syscall, const EMULTIHOP Errno
 pkg syscall, const ENAMETOOLONG Errno
 pkg syscall, const ENETDOWN Errno
 pkg syscall, const ENETRESET Errno
 pkg syscall, const ENETUNREACH Errno
 pkg syscall, const ENFILE Errno
 pkg syscall, const ENOBUFS Errno
-pkg syscall, const ENODATA Errno
 pkg syscall, const ENODEV Errno
 pkg syscall, const ENOENT Errno
 pkg syscall, const ENOEXEC Errno
 pkg syscall, const ENOLCK Errno
-pkg syscall, const ENOLINK Errno
 pkg syscall, const ENOMEM Errno
 pkg syscall, const ENOMSG Errno
 pkg syscall, const ENOPROTOOPT Errno
 pkg syscall, const ENOSPC Errno
-pkg syscall, const ENOSR Errno
-pkg syscall, const ENOSTR Errno
 pkg syscall, const ENOSYS Errno
 pkg syscall, const ENOTBLK Errno
 pkg syscall, const ENOTCONN Errno
 pkg syscall, const ENOTDIR Errno
 pkg syscall, const ENOTEMPTY Errno
-pkg syscall, const ENOTRECOVERABLE Errno
 pkg syscall, const ENOTSOCK Errno
 pkg syscall, const ENOTSUP Errno
 pkg syscall, const ENOTTY Errno
 pkg syscall, const ENXIO Errno
 pkg syscall, const EOPNOTSUPP Errno
 pkg syscall, const EOVERFLOW Errno
-pkg syscall, const EOWNERDEAD Errno
 pkg syscall, const EPERM Errno
 pkg syscall, const EPFNOSUPPORT Errno
 pkg syscall, const EPIPE Errno
-pkg syscall, const EPROTO Errno
 pkg syscall, const EPROTONOSUPPORT Errno
 pkg syscall, const EPROTOTYPE Errno
 pkg syscall, const ERANGE Errno
@@ -23673,7 +30027,6 @@ pkg syscall, const ESOCKTNOSUPPORT Errno
 pkg syscall, const ESPIPE Errno
 pkg syscall, const ESRCH Errno
 pkg syscall, const ESTALE Errno
-pkg syscall, const ETIME Errno
 pkg syscall, const ETIMEDOUT Errno
 pkg syscall, const ETOOMANYREFS Errno
 pkg syscall, const ETXTBSY Errno
@@ -23702,7 +30055,7 @@ pkg syscall, const IP_MULTICAST_LOOP ideal-int
 pkg syscall, const IP_MULTICAST_TTL ideal-int
 pkg syscall, const IP_TOS ideal-int
 pkg syscall, const IP_TTL ideal-int
-pkg syscall, const ImplementsGetwd bool
+pkg syscall, const ImplementsGetwd ideal-bool
 pkg syscall, const O_APPEND ideal-int
 pkg syscall, const O_ASYNC ideal-int
 pkg syscall, const O_CLOEXEC ideal-int
@@ -23756,7 +30109,6 @@ pkg syscall, const S_IRUSR ideal-int
 pkg syscall, const S_ISGID ideal-int
 pkg syscall, const S_ISUID ideal-int
 pkg syscall, const S_ISVTX ideal-int
-pkg syscall, const S_IWRITE ideal-int
 pkg syscall, const S_IWUSR ideal-int
 pkg syscall, const S_IXUSR ideal-int
 pkg syscall, const TCP_NODELAY ideal-int
@@ -23779,16 +30131,17 @@ pkg syscall, func Gettimeofday(*Timeval) error
 pkg syscall, func Getuid() int
 pkg syscall, func Getwd() (string, error)
 pkg syscall, func Lchown(string, int, int) error
+pkg syscall, func Link(string, string) error
 pkg syscall, func Mkdir(string, uint32) error
 pkg syscall, func NsecToTimeval(int64) Timeval
-pkg syscall, func Readlink(string, []byte) (int, error)
+pkg syscall, func Readlink(string, []uint8) (int, error)
+pkg syscall, func Rename(string, string) error
 pkg syscall, func Rmdir(string) error
-pkg syscall, func Setenv(string) error
+pkg syscall, func Setenv(string, string) error
 pkg syscall, func StartProcess(string, []string, *ProcAttr) (int, uintptr, error)
-pkg syscall, func StringBytePtr(string) *byte
-pkg syscall, func StringByteSlice(string) []byte
-pkg syscall, func Syscall(uintptr) (uintptr, Errno)
-pkg syscall, func Syscall6(uintptr) (uintptr, Errno)
+pkg syscall, func StringBytePtr(string) *uint8
+pkg syscall, func StringByteSlice(string) []uint8
+pkg syscall, func Symlink(string, string) error
 pkg syscall, func Unlink(string) error
 pkg syscall, func Utimes(string, []Timeval) error
 pkg syscall, method (*Timespec) Nano() int64
@@ -23811,11 +30164,11 @@ pkg syscall, method (WaitStatus) Stopped() bool
 pkg syscall, method (WaitStatus) TrapCause() int
 pkg syscall, type Errno uintptr
 pkg syscall, type IPMreq struct
-pkg syscall, type IPMreq struct, Interface [4]byte
-pkg syscall, type IPMreq struct, Multiaddr [4]byte
+pkg syscall, type IPMreq struct, Interface [4]uint8
+pkg syscall, type IPMreq struct, Multiaddr [4]uint8
 pkg syscall, type IPv6Mreq struct
 pkg syscall, type IPv6Mreq struct, Interface uint32
-pkg syscall, type IPv6Mreq struct, Multiaddr [16]byte
+pkg syscall, type IPv6Mreq struct, Multiaddr [16]uint8
 pkg syscall, type Linger struct
 pkg syscall, type Linger struct, Linger int32
 pkg syscall, type Linger struct, Onoff int32
@@ -23825,20 +30178,19 @@ pkg syscall, type ProcAttr struct, Env []string
 pkg syscall, type ProcAttr struct, Files []uintptr
 pkg syscall, type ProcAttr struct, Sys *SysProcAttr
 pkg syscall, type RawSockaddr struct
-pkg syscall, type RawSockaddr struct, Data [14]int8
 pkg syscall, type RawSockaddrAny struct
 pkg syscall, type RawSockaddrAny struct, Addr RawSockaddr
 pkg syscall, type RawSockaddrInet4 struct
-pkg syscall, type RawSockaddrInet4 struct, Addr [4]byte
+pkg syscall, type RawSockaddrInet4 struct, Addr [4]uint8
 pkg syscall, type RawSockaddrInet4 struct, Port uint16
 pkg syscall, type Rusage struct
 pkg syscall, type Signal int
-pkg syscall, type Sockaddr interface {}
+pkg syscall, type Sockaddr interface, unexported methods
 pkg syscall, type SockaddrInet4 struct
-pkg syscall, type SockaddrInet4 struct, Addr [4]byte
+pkg syscall, type SockaddrInet4 struct, Addr [4]uint8
 pkg syscall, type SockaddrInet4 struct, Port int
 pkg syscall, type SockaddrInet6 struct
-pkg syscall, type SockaddrInet6 struct, Addr [16]byte
+pkg syscall, type SockaddrInet6 struct, Addr [16]uint8
 pkg syscall, type SockaddrInet6 struct, Port int
 pkg syscall, type SockaddrInet6 struct, ZoneId uint32
 pkg syscall, type SockaddrUnix struct
@@ -23849,10 +30201,10 @@ pkg syscall, type Timeval struct
 pkg syscall, var ForkLock sync.RWMutex
 pkg syscall, var SocketDisableIPv6 bool
 pkg testing, func Benchmark(func(*B)) BenchmarkResult
-pkg testing, func Main(func(string) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample)
-pkg testing, func RunBenchmarks(func(string) (bool, error), []InternalBenchmark)
-pkg testing, func RunExamples(func(string) (bool, error), []InternalExample) bool
-pkg testing, func RunTests(func(string) (bool, error), []InternalTest) bool
+pkg testing, func Main(func(string, string) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample)
+pkg testing, func RunBenchmarks(func(string, string) (bool, error), []InternalBenchmark)
+pkg testing, func RunExamples(func(string, string) (bool, error), []InternalExample) bool
+pkg testing, func RunTests(func(string, string) (bool, error), []InternalTest) bool
 pkg testing, func Short() bool
 pkg testing, method (*B) Error(...interface{})
 pkg testing, method (*B) Errorf(string, ...interface{})
@@ -23905,7 +30257,7 @@ pkg testing/iotest, func TimeoutReader(io.Reader) io.Reader
 pkg testing/iotest, func TruncateWriter(io.Writer, int64) io.Writer
 pkg testing/iotest, var ErrTimeout error
 pkg testing/quick, func Check(interface{}, *Config) error
-pkg testing/quick, func CheckEqual(interface{}, *Config) error
+pkg testing/quick, func CheckEqual(interface{}, interface{}, *Config) error
 pkg testing/quick, func Value(reflect.Type, *rand.Rand) (reflect.Value, bool)
 pkg testing/quick, method (*CheckEqualError) Error() string
 pkg testing/quick, method (*CheckError) Error() string
@@ -23943,14 +30295,14 @@ pkg text/scanner, const ScanRawStrings ideal-int
 pkg text/scanner, const ScanStrings ideal-int
 pkg text/scanner, const SkipComments ideal-int
 pkg text/scanner, const String ideal-int
-pkg text/scanner, func TokenString(rune) string
+pkg text/scanner, func TokenString(int32) string
 pkg text/scanner, method (*Position) IsValid() bool
 pkg text/scanner, method (*Scanner) Init(io.Reader) *Scanner
 pkg text/scanner, method (*Scanner) IsValid() bool
-pkg text/scanner, method (*Scanner) Next() rune
-pkg text/scanner, method (*Scanner) Peek() rune
+pkg text/scanner, method (*Scanner) Next() int32
+pkg text/scanner, method (*Scanner) Peek() int32
 pkg text/scanner, method (*Scanner) Pos() Position
-pkg text/scanner, method (*Scanner) Scan() rune
+pkg text/scanner, method (*Scanner) Scan() int32
 pkg text/scanner, method (*Scanner) TokenText() string
 pkg text/scanner, method (Position) String() string
 pkg text/scanner, method (Scanner) String() string
@@ -23972,15 +30324,15 @@ pkg text/tabwriter, const Escape ideal-char
 pkg text/tabwriter, const FilterHTML uint
 pkg text/tabwriter, const StripEscape uint
 pkg text/tabwriter, const TabIndent uint
-pkg text/tabwriter, func NewWriter(io.Writer, int, byte, uint) *Writer
+pkg text/tabwriter, func NewWriter(io.Writer, int, int, int, uint8, uint) *Writer
 pkg text/tabwriter, method (*Writer) Flush() error
-pkg text/tabwriter, method (*Writer) Init(io.Writer, int, byte, uint) *Writer
-pkg text/tabwriter, method (*Writer) Write([]byte) (int, error)
+pkg text/tabwriter, method (*Writer) Init(io.Writer, int, int, int, uint8, uint) *Writer
+pkg text/tabwriter, method (*Writer) Write([]uint8) (int, error)
 pkg text/tabwriter, type Writer struct
-pkg text/template, func HTMLEscape(io.Writer, []byte)
+pkg text/template, func HTMLEscape(io.Writer, []uint8)
 pkg text/template, func HTMLEscapeString(string) string
 pkg text/template, func HTMLEscaper(...interface{}) string
-pkg text/template, func JSEscape(io.Writer, []byte)
+pkg text/template, func JSEscape(io.Writer, []uint8)
 pkg text/template, func JSEscapeString(string) string
 pkg text/template, func JSEscaper(...interface{}) string
 pkg text/template, func Must(*Template, error) *Template
@@ -23990,7 +30342,7 @@ pkg text/template, func ParseGlob(string) (*Template, error)
 pkg text/template, func URLQueryEscaper(...interface{}) string
 pkg text/template, method (*Template) AddParseTree(string, *parse.Tree) (*Template, error)
 pkg text/template, method (*Template) Clone() (*Template, error)
-pkg text/template, method (*Template) Delims(string) *Template
+pkg text/template, method (*Template) Delims(string, string) *Template
 pkg text/template, method (*Template) Execute(io.Writer, interface{}) error
 pkg text/template, method (*Template) ExecuteTemplate(io.Writer, string, interface{}) error
 pkg text/template, method (*Template) Funcs(FuncMap) *Template
@@ -24023,7 +30375,7 @@ pkg text/template/parse, const NodeWith NodeType
 pkg text/template/parse, func IsEmptyTree(Node) bool
 pkg text/template/parse, func New(string, ...map[string]interface{}) *Tree
 pkg text/template/parse, func NewIdentifier(string) *IdentifierNode
-pkg text/template/parse, func Parse(string, ...map[string]interface{}) (map[string]*Tree, error)
+pkg text/template/parse, func Parse(string, string, string, string, ...map[string]interface{}) (map[string]*Tree, error)
 pkg text/template/parse, method (*ActionNode) Copy() Node
 pkg text/template/parse, method (*ActionNode) String() string
 pkg text/template/parse, method (*BoolNode) Copy() Node
@@ -24056,7 +30408,7 @@ pkg text/template/parse, method (*TemplateNode) Copy() Node
 pkg text/template/parse, method (*TemplateNode) String() string
 pkg text/template/parse, method (*TextNode) Copy() Node
 pkg text/template/parse, method (*TextNode) String() string
-pkg text/template/parse, method (*Tree) Parse(string, map[string]*Tree, ...map[string]interface{}) (*Tree, error)
+pkg text/template/parse, method (*Tree) Parse(string, string, string, map[string]*Tree, ...map[string]interface{}) (*Tree, error)
 pkg text/template/parse, method (*VariableNode) Copy() Node
 pkg text/template/parse, method (*VariableNode) String() string
 pkg text/template/parse, method (*WithNode) Copy() Node
@@ -24139,7 +30491,7 @@ pkg text/template/parse, type TemplateNode struct, Name string
 pkg text/template/parse, type TemplateNode struct, Pipe *PipeNode
 pkg text/template/parse, type TemplateNode struct, embedded NodeType
 pkg text/template/parse, type TextNode struct
-pkg text/template/parse, type TextNode struct, Text []byte
+pkg text/template/parse, type TextNode struct, Text []uint8
 pkg text/template/parse, type TextNode struct, embedded NodeType
 pkg text/template/parse, type Tree struct
 pkg text/template/parse, type Tree struct, Name string
@@ -24191,13 +30543,13 @@ pkg time, const UnixDate ideal-string
 pkg time, const Wednesday Weekday
 pkg time, func After(Duration) <-chan Time
 pkg time, func AfterFunc(Duration, func()) *Timer
-pkg time, func Date(int, Month, int, *Location) Time
+pkg time, func Date(int, Month, int, int, int, int, int, *Location) Time
 pkg time, func FixedZone(string, int) *Location
 pkg time, func LoadLocation(string) (*Location, error)
 pkg time, func NewTicker(Duration) *Ticker
 pkg time, func NewTimer(Duration) *Timer
 pkg time, func Now() Time
-pkg time, func Parse(string) (Time, error)
+pkg time, func Parse(string, string) (Time, error)
 pkg time, func ParseDuration(string) (Duration, error)
 pkg time, func Since(Time) Duration
 pkg time, func Sleep(Duration)
@@ -24206,8 +30558,8 @@ pkg time, func Unix(int64, int64) Time
 pkg time, method (*Location) String() string
 pkg time, method (*ParseError) Error() string
 pkg time, method (*Ticker) Stop()
-pkg time, method (*Time) GobDecode([]byte) error
-pkg time, method (*Time) UnmarshalJSON([]byte) error
+pkg time, method (*Time) GobDecode([]uint8) error
+pkg time, method (*Time) UnmarshalJSON([]uint8) error
 pkg time, method (*Timer) Stop() bool
 pkg time, method (Duration) Hours() float64
 pkg time, method (Duration) Minutes() float64
@@ -24219,19 +30571,19 @@ pkg time, method (Time) Add(Duration) Time
 pkg time, method (Time) AddDate(int, int, int) Time
 pkg time, method (Time) After(Time) bool
 pkg time, method (Time) Before(Time) bool
-pkg time, method (Time) Clock() int
+pkg time, method (Time) Clock() (int, int, int)
 pkg time, method (Time) Date() (int, Month, int)
 pkg time, method (Time) Day() int
 pkg time, method (Time) Equal(Time) bool
 pkg time, method (Time) Format(string) string
-pkg time, method (Time) GobEncode() ([]byte, error)
+pkg time, method (Time) GobEncode() ([]uint8, error)
 pkg time, method (Time) Hour() int
-pkg time, method (Time) ISOWeek() int
+pkg time, method (Time) ISOWeek() (int, int)
 pkg time, method (Time) In(*Location) Time
 pkg time, method (Time) IsZero() bool
 pkg time, method (Time) Local() Time
 pkg time, method (Time) Location() *Location
-pkg time, method (Time) MarshalJSON() ([]byte, error)
+pkg time, method (Time) MarshalJSON() ([]uint8, error)
 pkg time, method (Time) Minute() int
 pkg time, method (Time) Month() Month
 pkg time, method (Time) Nanosecond() int
@@ -24270,31 +30622,31 @@ pkg unicode, const MaxRune ideal-char
 pkg unicode, const ReplacementChar ideal-char
 pkg unicode, const TitleCase ideal-int
 pkg unicode, const UpperCase ideal-int
-pkg unicode, const UpperLower ideal-int
+pkg unicode, const UpperLower ideal-char
 pkg unicode, const Version ideal-string
-pkg unicode, func Is(*RangeTable, rune) bool
-pkg unicode, func IsControl(rune) bool
-pkg unicode, func IsDigit(rune) bool
-pkg unicode, func IsGraphic(rune) bool
-pkg unicode, func IsLetter(rune) bool
-pkg unicode, func IsLower(rune) bool
-pkg unicode, func IsMark(rune) bool
-pkg unicode, func IsNumber(rune) bool
-pkg unicode, func IsOneOf([]*RangeTable, rune) bool
-pkg unicode, func IsPrint(rune) bool
-pkg unicode, func IsPunct(rune) bool
-pkg unicode, func IsSpace(rune) bool
-pkg unicode, func IsSymbol(rune) bool
-pkg unicode, func IsTitle(rune) bool
-pkg unicode, func IsUpper(rune) bool
-pkg unicode, func SimpleFold(rune) rune
-pkg unicode, func To(int, rune) rune
-pkg unicode, func ToLower(rune) rune
-pkg unicode, func ToTitle(rune) rune
-pkg unicode, func ToUpper(rune) rune
-pkg unicode, method (SpecialCase) ToLower(rune) rune
-pkg unicode, method (SpecialCase) ToTitle(rune) rune
-pkg unicode, method (SpecialCase) ToUpper(rune) rune
+pkg unicode, func Is(*RangeTable, int32) bool
+pkg unicode, func IsControl(int32) bool
+pkg unicode, func IsDigit(int32) bool
+pkg unicode, func IsGraphic(int32) bool
+pkg unicode, func IsLetter(int32) bool
+pkg unicode, func IsLower(int32) bool
+pkg unicode, func IsMark(int32) bool
+pkg unicode, func IsNumber(int32) bool
+pkg unicode, func IsOneOf([]*RangeTable, int32) bool
+pkg unicode, func IsPrint(int32) bool
+pkg unicode, func IsPunct(int32) bool
+pkg unicode, func IsSpace(int32) bool
+pkg unicode, func IsSymbol(int32) bool
+pkg unicode, func IsTitle(int32) bool
+pkg unicode, func IsUpper(int32) bool
+pkg unicode, func SimpleFold(int32) int32
+pkg unicode, func To(int, int32) int32
+pkg unicode, func ToLower(int32) int32
+pkg unicode, func ToTitle(int32) int32
+pkg unicode, func ToUpper(int32) int32
+pkg unicode, method (SpecialCase) ToLower(int32) int32
+pkg unicode, method (SpecialCase) ToTitle(int32) int32
+pkg unicode, method (SpecialCase) ToUpper(int32) int32
 pkg unicode, type CaseRange struct
 pkg unicode, type CaseRange struct, Delta d
 pkg unicode, type CaseRange struct, Hi uint32
@@ -24495,30 +30847,25 @@ pkg unicode, var Z *RangeTable
 pkg unicode, var Zl *RangeTable
 pkg unicode, var Zp *RangeTable
 pkg unicode, var Zs *RangeTable
-pkg unicode/utf16, func Decode([]uint16) []rune
-pkg unicode/utf16, func DecodeRune(rune) rune
-pkg unicode/utf16, func Encode([]rune) []uint16
-pkg unicode/utf16, func EncodeRune(rune) rune
-pkg unicode/utf16, func IsSurrogate(rune) bool
+pkg unicode/utf16, func Decode([]uint16) []int32
+pkg unicode/utf16, func DecodeRune(int32, int32) int32
+pkg unicode/utf16, func Encode([]int32) []uint16
+pkg unicode/utf16, func EncodeRune(int32) (int32, int32)
+pkg unicode/utf16, func IsSurrogate(int32) bool
 pkg unicode/utf8, const MaxRune ideal-char
 pkg unicode/utf8, const RuneError ideal-char
 pkg unicode/utf8, const RuneSelf ideal-int
 pkg unicode/utf8, const UTFMax ideal-int
-pkg unicode/utf8, func DecodeLastRune([]byte) (rune, int)
-pkg unicode/utf8, func DecodeLastRuneInString(string) (rune, int)
-pkg unicode/utf8, func DecodeRune([]byte) (rune, int)
-pkg unicode/utf8, func DecodeRuneInString(string) (rune, int)
-pkg unicode/utf8, func EncodeRune([]byte, rune) int
-pkg unicode/utf8, func FullRune([]byte) bool
+pkg unicode/utf8, func DecodeLastRune([]uint8) (int32, int)
+pkg unicode/utf8, func DecodeLastRuneInString(string) (int32, int)
+pkg unicode/utf8, func DecodeRune([]uint8) (int32, int)
+pkg unicode/utf8, func DecodeRuneInString(string) (int32, int)
+pkg unicode/utf8, func EncodeRune([]uint8, int32) int
+pkg unicode/utf8, func FullRune([]uint8) bool
 pkg unicode/utf8, func FullRuneInString(string) bool
-pkg unicode/utf8, func RuneCount([]byte) int
+pkg unicode/utf8, func RuneCount([]uint8) int
 pkg unicode/utf8, func RuneCountInString(string) int
-pkg unicode/utf8, func RuneLen(rune) int
-pkg unicode/utf8, func RuneStart(byte) bool
-pkg unicode/utf8, func Valid([]byte) bool
+pkg unicode/utf8, func RuneLen(int32) int
+pkg unicode/utf8, func RuneStart(uint8) bool
+pkg unicode/utf8, func Valid([]uint8) bool
 pkg unicode/utf8, func ValidString(string) bool
-pkg unsafe, func Alignof(ArbitraryType) uintptr
-pkg unsafe, func Offsetof(ArbitraryType) uintptr
-pkg unsafe, func Sizeof(ArbitraryType) uintptr
-pkg unsafe, type ArbitraryType int
-pkg unsafe, type Pointer *ArbitraryType