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

9 uses

	github.com/klauspost/compress/huff0 (current package)
		compress.go#L429: 	tableLog := s.TableLog
		huff0.go#L98: 	TableLog uint8
		huff0.go#L144: 	if s.TableLog == 0 {
		huff0.go#L145: 		s.TableLog = tableLogDefault
		huff0.go#L147: 	if s.TableLog > tableLogMax || s.TableLog < minTablelog {
		huff0.go#L148: 		return nil, fmt.Errorf(" invalid tableLog %d (%d -> %d)", s.TableLog, minTablelog, tableLogMax)

	github.com/klauspost/compress/zstd
		dict.go#L450: 	scratch := &huff0.Scratch{TableLog: 11}
		dict.go#L452: 		scratch = &huff0.Scratch{TableLog: 11}