type google.golang.org/grpc/internal/mem.SimpleBufferPool

13 uses

	google.golang.org/grpc/internal/mem (current package)
		buffer_pool.go#L76: 	}, &SimpleBufferPool{shouldZero: true}, powerOfTwoExponents...)
		buffer_pool.go#L261: 	fallbackPool SimpleBufferPool
		buffer_pool.go#L274: 		fallbackPool: SimpleBufferPool{shouldZero: true},
		buffer_pool.go#L304: type SimpleBufferPool struct {
		buffer_pool.go#L312: func NewDirtySimplePool() *SimpleBufferPool {
		buffer_pool.go#L313: 	return &SimpleBufferPool{
		buffer_pool.go#L319: func (p *SimpleBufferPool) Get(size int) *[]byte {
		buffer_pool.go#L347: func (p *SimpleBufferPool) Put(buf *[]byte) {

	google.golang.org/grpc/internal/transport
		http_util.go#L302: 	pool      *imem.SimpleBufferPool
		http_util.go#L310: func newBufWriter(conn io.Writer, batchSize int, pool *imem.SimpleBufferPool) *bufWriter {
		http_util.go#L413: var ioBufferPoolMap = make(map[int]*imem.SimpleBufferPool)
		http_util.go#L434: 	var writePool *imem.SimpleBufferPool
		http_util.go#L594: func ioBufferPool(size int) *imem.SimpleBufferPool {