github.com/andybalholm/brotli/matchfinder.M4.MaxDistance (field)

10 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		m4.go#L18: 	MaxDistance int
		m4.go#L64: 	if q.MaxDistance == 0 {
		m4.go#L65: 		q.MaxDistance = 65535
		m4.go#L82: 	if len(q.history) > q.MaxDistance*2 {
		m4.go#L84: 		delta := len(q.history) - q.MaxDistance
		m4.go#L86: 		q.history = q.history[:q.MaxDistance]
		m4.go#L89: 			q.chain = q.chain[:q.MaxDistance]
		m4.go#L152: 		if candidate == 0 || i-candidate > q.MaxDistance {
		m4.go#L172: 			if candidate <= 0 || i-candidate > q.MaxDistance {

	github.com/andybalholm/brotli/flate
		writer.go#L42: 			MaxDistance:     1 << 15,