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

8 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		bargain1.go#L18: 	MaxDistance int
		bargain1.go#L39: 	if z.MaxDistance == 0 {
		bargain1.go#L40: 		z.MaxDistance = 1 << 16
		bargain1.go#L66: 	if len(z.history) > z.MaxDistance*2 {
		bargain1.go#L67: 		delta := len(z.history) - z.MaxDistance
		bargain1.go#L69: 		z.history = z.history[:z.MaxDistance]
		bargain1.go#L166: 			if int(candidate6.offset) < i && i-int(candidate6.offset) < z.MaxDistance && uint32(cv) == candidate6.val &&

	github.com/andybalholm/brotli
		writer.go#L143: 		mf = &matchfinder.Bargain1{MaxDistance: 1 << 20}