func google.golang.org/grpc/mem.IsBelowBufferPoolingThreshold

5 uses

	google.golang.org/grpc/mem (current package)
		buffers.go#L74: func IsBelowBufferPoolingThreshold(size int) bool {
		buffers.go#L112: 	if pool == nil || IsBelowBufferPoolingThreshold(cap(*data)) {
		buffers.go#L131: 	if IsBelowBufferPoolingThreshold(len(data)) {

	google.golang.org/grpc/encoding/proto
		proto.go#L66: 	if mem.IsBelowBufferPoolingThreshold(size) {

	google.golang.org/grpc/internal/transport
		http_util.go#L538: 	useBufferPool := !mem.IsBelowBufferPoolingThreshold(int(fh.Length))