github.com/klauspost/compress/fse.Scratch.Out (field)
36 uses
github.com/klauspost/compress/fse (current package)
compress.go#L71: s.Out = s.bw.out
compress.go#L73: if len(s.Out) >= len(in) {
compress.go#L76: return s.Out, nil
compress.go#L126: s.bw.reset(s.Out)
compress.go#L224: if cap(s.Out) < maxHeaderSize {
compress.go#L225: s.Out = make([]byte, 0, s.br.remain()+maxHeaderSize)
compress.go#L228: out := s.Out[:maxHeaderSize]
compress.go#L304: s.Out = out[:outP]
decompress.go#L24: s.Out = s.Out[:0]
decompress.go#L38: return s.Out, nil
decompress.go#L288: s.Out = append(s.Out, tmp...)
decompress.go#L289: if len(s.Out) >= s.DecompressLimit {
decompress.go#L290: return fmt.Errorf("output size (%d) > DecompressLimit (%d)", len(s.Out), s.DecompressLimit)
decompress.go#L304: s.Out = append(s.Out, tmp...)
decompress.go#L306: if len(s.Out) >= s.DecompressLimit {
decompress.go#L307: return fmt.Errorf("output size (%d) > DecompressLimit (%d)", len(s.Out), s.DecompressLimit)
decompress.go#L312: s.Out = append(s.Out, tmp[:off]...)
decompress.go#L317: s.Out = append(s.Out, s1.final(), s2.final())
decompress.go#L321: s.Out = append(s.Out, s1.next())
decompress.go#L323: s.Out = append(s.Out, s2.final(), s1.final())
decompress.go#L326: s.Out = append(s.Out, s2.next())
decompress.go#L327: if len(s.Out) >= s.DecompressLimit {
decompress.go#L328: return fmt.Errorf("output size (%d) > DecompressLimit (%d)", len(s.Out), s.DecompressLimit)
fse.go#L65: Out []byte
fse.go#L119: if cap(s.Out) == 0 {
fse.go#L120: s.Out = make([]byte, 0, len(in))
github.com/klauspost/compress/huff0
decompress.go#L60: s.fse.Out = hw
decompress.go#L62: s.fse.Out = nil
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |