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

9 uses

	google.golang.org/grpc/internal/mem (current package)
		buffer_pool.go#L52: type BinaryTieredBufferPool struct {
		buffer_pool.go#L73: func NewBinaryTieredBufferPool(powerOfTwoExponents ...uint8) (*BinaryTieredBufferPool, error) {
		buffer_pool.go#L82: func NewDirtyBinaryTieredBufferPool(powerOfTwoExponents ...uint8) (*BinaryTieredBufferPool, error) {
		buffer_pool.go#L88: func newBinaryTiered(sizedPoolFactory func(int) bufferPool, fallbackPool bufferPool, powerOfTwoExponents ...uint8) (*BinaryTieredBufferPool, error) {
		buffer_pool.go#L132: 	return &BinaryTieredBufferPool{
		buffer_pool.go#L142: func (b *BinaryTieredBufferPool) Get(size int) *[]byte {
		buffer_pool.go#L146: func (b *BinaryTieredBufferPool) poolForGet(size int) bufferPool {
		buffer_pool.go#L164: func (b *BinaryTieredBufferPool) Put(buf *[]byte) {
		buffer_pool.go#L171: func (b *BinaryTieredBufferPool) poolForPut(bCap int) bufferPool {