encoding/gob.decBuffer.data (field)

12 uses

	encoding/gob (current package)
		decode.go#L40: 	data   []byte
		decode.go#L45: 	n := copy(p, d.data[d.offset:])
		decode.go#L64: 	if cap(d.data) < n {
		decode.go#L65: 		d.data = make([]byte, n)
		decode.go#L67: 		d.data = d.data[0:n]
		decode.go#L72: 	if d.offset >= len(d.data) {
		decode.go#L75: 	c := d.data[d.offset]
		decode.go#L81: 	return len(d.data) - d.offset
		decode.go#L85: 	return d.data[d.offset:]
		decode.go#L89: 	d.data = d.data[0:0]