encoding/gob.Decoder.buf (field)

13 uses

	encoding/gob (current package)
		decode.go#L430: 	state := dec.newDecoderState(&dec.buf)
		decode.go#L446: 	state := dec.newDecoderState(&dec.buf)
		decode.go#L480: 	state := dec.newDecoderState(&dec.buf)
		decode.go#L504: 	state := dec.newDecoderState(&dec.buf)
		decoder.go#L30: 	buf          decBuffer                               // buffer for more efficient i/o from r
		decoder.go#L96: 	if dec.buf.Len() != 0 {
		decoder.go#L101: 	dec.buf.Size(nbytes)
		decoder.go#L102: 	_, dec.err = io.ReadFull(dec.r, dec.buf.Bytes())
		decoder.go#L118: 	n, _, err := decodeUintReader(&dec.buf, dec.countBuf)
		decoder.go#L126: 	n, _, err := decodeUintReader(&dec.buf, dec.countBuf)
		decoder.go#L142: 		if dec.buf.Len() == 0 {
		decoder.go#L159: 		if dec.buf.Len() > 0 {
		decoder.go#L209: 	dec.buf.Reset() // In case data lingers from previous invocation.