Home | History | Annotate | Download | only in src

Lines Matching refs:Match

64 // This helper function tries to find an appropriate match within
66 // If target_hash is not NULL, this function will also look for a match
69 // If a match is found, this function will generate an ADD instruction
70 // for all unencoded data that precedes the match,
71 // and a COPY instruction for the match itself; then it returns
74 // If no appropriate match is found, the function returns 0.
87 // When FindBestMatch() comes up with a match for a candidate block,
89 // and target offset of the match.
90 BlockHash::Match best_match;
92 // First look for a match in the dictionary.
98 // If target matching is enabled, then see if there is a better match
112 // from the end of the last COPY match, if any, up to
113 // the beginning of this COPY match.
123 // from the end of the last COPY match, if any, through the end of
145 << ") does not match number of bytes processed ("
189 // begin a match with the dictionary or previously encoded target data.
216 // No match, or match is too small to be worth a COPY instruction.