github.com/klauspost/compress/huff0.Scratch.MaxDecodedSize (field)

11 uses

	github.com/klauspost/compress/huff0 (current package)
		decompress.go#L177: 	if cap(s.Out) < s.MaxDecodedSize {
		decompress.go#L178: 		s.Out = make([]byte, s.MaxDecodedSize)
		decompress.go#L180: 	s.Out = s.Out[:0:s.MaxDecodedSize]
		decompress.go#L192: 	if dstSize > s.MaxDecodedSize {
		decompress.go#L196: 		s.Out = make([]byte, s.MaxDecodedSize)
		huff0.go#L89: 	MaxDecodedSize int
		huff0.go#L150: 	if s.MaxDecodedSize <= 0 || s.MaxDecodedSize > BlockSizeMax {
		huff0.go#L151: 		s.MaxDecodedSize = BlockSizeMax

	github.com/klauspost/compress/zstd
		blockdec.go#L404: 		huff.MaxDecodedSize = litRegenSize
		blockdec.go#L451: 		huff.MaxDecodedSize = litRegenSize