Lines Matching defs:byte

16 func NextType(b []byte) Type {
46 func IsNil(b []byte) bool {
62 func (r Raw) MarshalMsg(b []byte) ([]byte, error) {
75 func (r *Raw) UnmarshalMsg(b []byte) ([]byte, error) {
126 func appendNext(f *Reader, d *[]byte) error {
159 func ReadMapHeaderBytes(b []byte) (sz uint32, o []byte, err error) {
203 func ReadMapKeyZC(b []byte) ([]byte, []byte, error) {
220 func ReadArrayHeaderBytes(b []byte) (sz uint32, o []byte, err error) {
262 func ReadNilBytes(b []byte) ([]byte, error) {
277 func ReadFloat64Bytes(b []byte) (f float64, o []byte, err error) {
310 func ReadFloat32Bytes(b []byte) (f float32, o []byte, err error) {
331 func ReadBoolBytes(b []byte) (bool, []byte, error) {
350 func ReadInt64Bytes(b []byte) (i int64, o []byte, err error) {
458 func ReadInt32Bytes(b []byte) (int32, []byte, error) {
472 func ReadInt16Bytes(b []byte) (int16, []byte, error) {
486 func ReadInt8Bytes(b []byte) (int8, []byte, error) {
500 func ReadIntBytes(b []byte) (int, []byte, error) {
514 func ReadUint64Bytes(b []byte) (u uint64, o []byte, err error) {
636 func ReadUint32Bytes(b []byte) (uint32, []byte, error) {
650 func ReadUint16Bytes(b []byte) (uint16, []byte, error) {
664 func ReadUint8Bytes(b []byte) (uint8, []byte, error) {
678 func ReadUintBytes(b []byte) (uint, []byte, error) {
688 func ReadByteBytes(b []byte) (byte, []byte, error) {
698 func ReadBytesBytes(b []byte, scratch []byte) (v []byte, o []byte, err error) {
702 func readBytesBytes(b []byte, scratch []byte, zc bool) (v []byte, o []byte, err error) {
769 func ReadBytesZC(b []byte) (v []byte, o []byte, err error) {
773 func ReadExactBytes(b []byte, into []byte) (o []byte, err error) {
829 func ReadStringZC(b []byte) (v []byte, o []byte, err error) {
890 func ReadStringBytes(b []byte) (string, []byte, error) {
904 func ReadStringAsBytes(b []byte, scratch []byte) (v []byte, o []byte, err error) {
919 func ReadComplex128Bytes(b []byte) (c complex128, o []byte, err error) {
945 func ReadComplex64Bytes(b []byte) (c complex64, o []byte, err error) {
971 func ReadTimeBytes(b []byte) (t time.Time, o []byte, err error) {
993 func ReadMapStrIntfBytes(b []byte, old map[string]interface{}) (v map[string]interface{}, o []byte,…
1034 func ReadIntfBytes(b []byte) (i interface{}, o []byte, err error) {
1142 func Skip(b []byte) ([]byte, error) {
1162 func getSize(b []byte) (uintptr, uintptr, error) {