bytes.Buffer.Grow (method)

8 uses

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

	crypto/tls
		conn.go#L837: 	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))

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