github.com/andybalholm/brotli/matchfinder.Match.Distance (field)

9 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		emitter.go#L31: 		Distance:  m.Start - m.Match,
		m0.go#L138: 			Distance:  base - candidate,
		m4.go#L129: 			prevDistance := e.Dst[len(e.Dst)-1].Distance
		matchfinder.go#L19: 	Distance  int // how far back in the stream to copy from
		pathfinder.go#L312: 				Distance: int(a.distance),
		textencoder.go#L19: 			dst = append(dst, []byte(fmt.Sprintf("<%d,%d>", m.Length, m.Distance))...)

	github.com/andybalholm/brotli
		encoder.go#L69: 			switch m.Distance {
		encoder.go#L94: 				distCode = getDistanceCode(m.Distance)
		encoder.go#L100: 				d[0], d[1], d[2], d[3] = d[1], d[2], d[3], m.Distance