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

11 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		pathfinder.go#L15: 	MaxDistance int
		pathfinder.go#L68: 	if q.MaxDistance == 0 {
		pathfinder.go#L69: 		q.MaxDistance = 65535
		pathfinder.go#L107: 	if len(q.history) > q.MaxDistance*2 {
		pathfinder.go#L109: 		delta := len(q.history) - q.MaxDistance
		pathfinder.go#L111: 		q.history = q.history[:q.MaxDistance]
		pathfinder.go#L112: 		q.chain = q.chain[:q.MaxDistance]
		pathfinder.go#L149: 		if candidate <= 0 || i-candidate > q.MaxDistance {
		pathfinder.go#L182: 			if candidate <= 0 || i-candidate > q.MaxDistance {
		pathfinder.go#L299: 		if candidate <= 0 || i-candidate > q.MaxDistance {

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