bytes.Buffer.Grow (method)

9 uses

	bytes (current package)
		buffer.go#L182: func (b *Buffer) Grow(n int) {

	crypto/tls
		conn.go#L836: 	c.rawInput.Grow(needs + bytes.MinRead)

	encoding/json
		encode.go#L485: 		e.Grow(len(b))
		encode.go#L504: 		e.Grow(len(b))
		indent.go#L17: 	dst.Grow(len(src))
		indent.go#L44: 	dst.Grow(len(src))
		indent.go#L121: 	dst.Grow(indentGrowthFactor * len(src))

	github.com/go-faster/jx
		w.go#L67: 	buf.Grow(n)

	github.com/refraction-networking/utls
		conn.go#L831: 	c.rawInput.Grow(needs + bytes.MinRead)