type github.com/klauspost/compress/fse.Scratch

24 uses

	github.com/klauspost/compress/fse (current package)
		compress.go#L18: func Compress(in []byte, s *Scratch) ([]byte, error) {
		compress.go#L121: func (s *Scratch) compress(src []byte) error {
		compress.go#L208: func (s *Scratch) writeCount() error {
		compress.go#L328: func (s *Scratch) allocCtable() {
		compress.go#L349: func (s *Scratch) buildCTable() error {
		compress.go#L456: func (s *Scratch) countSimple(in []byte) (max int) {
		compress.go#L475: func (s *Scratch) minTableLog() uint8 {
		compress.go#L485: func (s *Scratch) optimalTableLog() {
		compress.go#L510: func (s *Scratch) normalizeCount() error {
		compress.go#L561: func (s *Scratch) normalizeCount2() error {
		compress.go#L656: func (s *Scratch) validateNorm() (err error) {
		decompress.go#L19: func Decompress(b []byte, s *Scratch) ([]byte, error) {
		decompress.go#L42: func (s *Scratch) readNCount() error {
		decompress.go#L173: func (s *Scratch) allocDtable() {
		decompress.go#L192: func (s *Scratch) buildDtable() error {
		decompress.go#L261: func (s *Scratch) decompress() error {
		fse.go#L45: type Scratch struct {
		fse.go#L91: func (s *Scratch) Histogram() []uint32 {
		fse.go#L99: func (s *Scratch) HistogramFinished(maxSymbol uint8, maxCount int) {
		fse.go#L106: func (s *Scratch) prepare(in []byte) (*Scratch, error) {
		fse.go#L108: 		s = &Scratch{}

	github.com/klauspost/compress/huff0
		huff0.go#L119: 	fse            *fse.Scratch
		huff0.go#L171: 		s.fse = &fse.Scratch{}