bytes.Buffer.Grow (method)

8 uses

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

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

	encoding/json
		encode.go#L454: 		e.Grow(len(b))
		encode.go#L473: 		e.Grow(len(b))
		indent.go#L15: 	dst.Grow(len(src))
		indent.go#L42: 	dst.Grow(len(src))
		indent.go#L119: 	dst.Grow(indentGrowthFactor * len(src))

	os/exec
		exec.go#L1176: 	buf.Grow(len(w.prefix) + len(w.suffix) + 50)