github.com/andybalholm/brotli/matchfinder.Match.Unmatched (field)
21 uses
github.com/andybalholm/brotli/matchfinder (current package)
emitter.go#L29: Unmatched: m.Start - e.NextEmit,
m0.go#L46: Unmatched: len(src),
m0.go#L136: Unmatched: base - nextEmit,
m0.go#L165: Unmatched: len(src) - nextEmit,
m4.go#L277: Unmatched: len(src) - e.NextEmit,
matchfinder.go#L17: Unmatched int // the number of unmatched bytes since the previous match
pathfinder.go#L319: matches[len(matches)-1].Unmatched = int(a.length)
textencoder.go#L14: if m.Unmatched > 0 {
textencoder.go#L15: dst = append(dst, src[pos:pos+m.Unmatched]...)
textencoder.go#L16: pos += m.Unmatched
textencoder.go#L38: Unmatched: len(src),
github.com/andybalholm/brotli
encoder.go#L50: if m.Unmatched > 0 {
encoder.go#L51: for _, c := range src[pos : pos+m.Unmatched] {
encoder.go#L54: literalCount += m.Unmatched
encoder.go#L57: insertCode := getInsertLengthCode(uint(m.Unmatched))
encoder.go#L104: pos += m.Unmatched + m.Length
encoder.go#L124: insertCode := getInsertLengthCode(uint(m.Unmatched))
encoder.go#L133: e.bw.writeBits(uint(kInsExtra[insertCode]), uint64(m.Unmatched)-uint64(kInsBase[insertCode]))
encoder.go#L139: if m.Unmatched > 0 {
encoder.go#L140: for _, c := range src[pos : pos+m.Unmatched] {
encoder.go#L153: pos += m.Unmatched + m.Length
 |
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. |