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#L88: 			q.chain = q.chain[:q.MaxDistance]
		m4.go#L151: 		if candidate == 0 || i-candidate > q.MaxDistance {
		m4.go#L171: 			if candidate <= 0 || i-candidate > q.MaxDistance {

	github.com/andybalholm/brotli
		writer.go#L149: 			MaxDistance:     1 << 20,