type github.com/andybalholm/brotli/matchfinder.Match

70 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		bargain1.go#L30: 	matches  []Match
		bargain1.go#L38: func (z *Bargain1) FindMatches(dst []Match, src []byte) []Match {
		bargain1.go#L190: 			matches = append(matches, Match{
		bargain1.go#L197: 				matches = append(matches, Match{})
		bargain2.go#L31: 	matches  []Match
		bargain2.go#L40: func (z *Bargain2) FindMatches(dst []Match, src []byte) []Match {
		bargain2.go#L222: 			matches = append(matches, Match{
		bargain2.go#L229: 				matches = append(matches, Match{})
		bargain3.go#L27: 	matches  []Match
		bargain3.go#L37: func (z *Bargain3) FindMatches(dst []Match, src []byte) []Match {
		bargain3.go#L248: 			matches = append(matches, Match{
		bargain3.go#L255: 				matches = append(matches, Match{})
		emitter.go#L21: 	Dst []Match
		emitter.go#L28: 	e.Dst = append(e.Dst, Match{
		m0.go#L40: func (m M0) FindMatches(dst []Match, src []byte) []Match {
		m0.go#L45: 		dst = append(dst, Match{
		m0.go#L135: 		dst = append(dst, Match{
		m0.go#L170: 		dst = append(dst, Match{
		m4.go#L63: func (q *M4) FindMatches(dst []Match, src []byte) []Match {
		m4.go#L277: 		dst = append(dst, Match{
		matchfinder.go#L16: type Match struct {
		matchfinder.go#L25: 	FindMatches(dst []Match, src []byte) []Match
		matchfinder.go#L36: 	Encode(dst []byte, src []byte, matches []Match, lastBlock bool) []byte
		matchfinder.go#L56: 	matches []Match
		pathfinder.go#L42: 	matches      []Match
		pathfinder.go#L67: func (q *Pathfinder) FindMatches(dst []Match, src []byte) []Match {
		pathfinder.go#L310: 			matches = append(matches, Match{
		pathfinder.go#L317: 				matches = append(matches, Match{})
		textencoder.go#L11: func (t TextEncoder) Encode(dst []byte, src []byte, matches []Match, lastBlock bool) []byte {
		textencoder.go#L36: func (n NoMatchFinder) FindMatches(dst []Match, src []byte) []Match {
		textencoder.go#L37: 	return append(dst, Match{
		textencoder.go#L50: func (a AutoReset) FindMatches(dst []Match, src []byte) []Match {
		trio.go#L22: func (z *Trio) FindMatches(dst []Match, src []byte) []Match {
		trio.go#L62: 		return append(dst, Match{
		trio.go#L308: 		dst = append(dst, Match{
		zdfast.go#L32: func (z *ZDFast) FindMatches(dst []Match, src []byte) []Match {
		zdfast.go#L78: 		return append(dst, Match{
		zdfast.go#L119: 				dst = append(dst, Match{
		zdfast.go#L187: 		dst = append(dst, Match{
		zdfast.go#L229: 			dst = append(dst, Match{
		zdfast.go#L244: 		dst = append(dst, Match{
		zfast.go#L38: func (z *ZFast) FindMatches(dst []Match, src []byte) []Match {
		zfast.go#L75: 		return append(dst, Match{
		zfast.go#L113: 				dst = append(dst, Match{
		zfast.go#L162: 		dst = append(dst, Match{
		zfast.go#L181: 			dst = append(dst, Match{
		zfast.go#L196: 		dst = append(dst, Match{
		zm.go#L27: func (z *ZM) FindMatches(dst []Match, src []byte) []Match {
		zm.go#L58: 		return append(dst, Match{
		zm.go#L287: 		dst = append(dst, Match{

	github.com/andybalholm/brotli
		encoder.go#L17: func (e *Encoder) Encode(dst []byte, src []byte, matches []matchfinder.Match, lastBlock bool) []byte {
		encoder_fast.go#L28: func (e *FastEncoder) Encode(dst []byte, src []byte, matches []matchfinder.Match, lastBlock bool) []byte {

	github.com/andybalholm/brotli/flate
		gzip.go#L39: func (g *gzipEncoder) Encode(dst []byte, src []byte, matches []matchfinder.Match, lastBlock bool) []byte {
		huffman_bit_writer.go#L361: func (w *huffmanBitWriter) writeBlock(matches []matchfinder.Match, eof bool, input []byte) {
		huffman_bit_writer.go#L425: func (w *huffmanBitWriter) makeStatistics(matches []matchfinder.Match, input []byte) (numLiterals, numOffsets int) {
		huffman_bit_writer.go#L472: func (w *huffmanBitWriter) writeTokens(matches []matchfinder.Match, input []byte, leCodes, oeCodes []hcode) {
		huffman_bit_writer.go#L506: func (w *huffmanBitWriter) Encode(dst []byte, src []byte, matches []matchfinder.Match, lastBlock bool) []byte {