github.com/andybalholm/brotli/matchfinder.Match.Unmatched (field)
48 uses
github.com/andybalholm/brotli/matchfinder (current package)
bargain1.go#L199: matches[len(matches)-1].Unmatched = int(a.length)
bargain2.go#L231: matches[len(matches)-1].Unmatched = int(a.length)
bargain3.go#L257: matches[len(matches)-1].Unmatched = int(a.length)
emitter.go#L29: Unmatched: m.Start - e.NextEmit,
m0.go#L46: Unmatched: len(src),
m0.go#L136: Unmatched: base - nextEmit,
m0.go#L171: Unmatched: len(src) - nextEmit,
m4.go#L278: 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),
trio.go#L63: Unmatched: len(src),
trio.go#L309: Unmatched: len(src) - e.NextEmit,
zdfast.go#L79: Unmatched: len(src),
zdfast.go#L120: Unmatched: int(start - nextEmit),
zdfast.go#L188: Unmatched: int(s - nextEmit),
zdfast.go#L245: Unmatched: len(src) - int(nextEmit),
zfast.go#L76: Unmatched: len(src),
zfast.go#L114: Unmatched: int(start - nextEmit),
zfast.go#L163: Unmatched: int(s - nextEmit),
zfast.go#L197: Unmatched: len(src) - int(nextEmit),
zm.go#L59: Unmatched: len(src),
zm.go#L288: Unmatched: len(src) - e.NextEmit,
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
encoder_fast.go#L125: if m.Unmatched < 6 {
encoder_fast.go#L129: command = m.Unmatched<<3 + m.Length - 2 + 128
encoder_fast.go#L132: command = m.Unmatched<<3 + 128
encoder_fast.go#L137: insertCode := getInsertLengthCode(uint(m.Unmatched))
encoder_fast.go#L140: e.bw.writeBits(uint(kInsExtra[insertCode]), uint64(m.Unmatched)-uint64(kInsBase[insertCode]))
encoder_fast.go#L145: if m.Unmatched > 0 {
encoder_fast.go#L146: for _, c := range src[pos : pos+m.Unmatched] {
encoder_fast.go#L189: pos += m.Unmatched + m.Length
github.com/andybalholm/brotli/flate
huffman_bit_writer.go#L435: for _, c := range input[pos : pos+m.Unmatched] {
huffman_bit_writer.go#L438: pos += m.Unmatched
huffman_bit_writer.go#L475: for _, c := range input[pos : pos+m.Unmatched] {
huffman_bit_writer.go#L478: pos += m.Unmatched
 |
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. |