Lines Matching refs:maxLen

319     UInt32 *distances, UInt32 maxLen)  in Hc_GetMatchesSpec()  argument
330 if (pb[maxLen] == cur[maxLen] && *pb == *cur) in Hc_GetMatchesSpec()
336 if (maxLen < len) in Hc_GetMatchesSpec()
338 *distances++ = maxLen = len; in Hc_GetMatchesSpec()
350 UInt32 *distances, UInt32 maxLen) in GetMatchesSpec1() argument
373 if (maxLen < len) in GetMatchesSpec1()
375 *distances++ = maxLen = len; in GetMatchesSpec1()
472 #define GET_MATCHES_FOOTER(offset, maxLen) \ argument
474 distances + offset, maxLen) - distances); MOVE_POS_RET;
503 UInt32 hash2Value, delta2, maxLen, offset; in Bt3_MatchFinder_GetMatches() local
515 maxLen = 2; in Bt3_MatchFinder_GetMatches()
519 for (; maxLen != lenLimit; maxLen++) in Bt3_MatchFinder_GetMatches()
520 if (cur[(ptrdiff_t)maxLen - delta2] != cur[maxLen]) in Bt3_MatchFinder_GetMatches()
522 distances[0] = maxLen; in Bt3_MatchFinder_GetMatches()
525 if (maxLen == lenLimit) in Bt3_MatchFinder_GetMatches()
531 GET_MATCHES_FOOTER(offset, maxLen) in Bt3_MatchFinder_GetMatches()
536 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Bt4_MatchFinder_GetMatches() local
549 maxLen = 1; in Bt4_MatchFinder_GetMatches()
553 distances[0] = maxLen = 2; in Bt4_MatchFinder_GetMatches()
559 maxLen = 3; in Bt4_MatchFinder_GetMatches()
566 for (; maxLen != lenLimit; maxLen++) in Bt4_MatchFinder_GetMatches()
567 if (cur[(ptrdiff_t)maxLen - delta2] != cur[maxLen]) in Bt4_MatchFinder_GetMatches()
569 distances[offset - 2] = maxLen; in Bt4_MatchFinder_GetMatches()
570 if (maxLen == lenLimit) in Bt4_MatchFinder_GetMatches()
576 if (maxLen < 3) in Bt4_MatchFinder_GetMatches()
577 maxLen = 3; in Bt4_MatchFinder_GetMatches()
578 GET_MATCHES_FOOTER(offset, maxLen) in Bt4_MatchFinder_GetMatches()
583 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Hc4_MatchFinder_GetMatches() local
596 maxLen = 1; in Hc4_MatchFinder_GetMatches()
600 distances[0] = maxLen = 2; in Hc4_MatchFinder_GetMatches()
606 maxLen = 3; in Hc4_MatchFinder_GetMatches()
613 for (; maxLen != lenLimit; maxLen++) in Hc4_MatchFinder_GetMatches()
614 if (cur[(ptrdiff_t)maxLen - delta2] != cur[maxLen]) in Hc4_MatchFinder_GetMatches()
616 distances[offset - 2] = maxLen; in Hc4_MatchFinder_GetMatches()
617 if (maxLen == lenLimit) in Hc4_MatchFinder_GetMatches()
623 if (maxLen < 3) in Hc4_MatchFinder_GetMatches()
624 maxLen = 3; in Hc4_MatchFinder_GetMatches()
626 distances + offset, maxLen) - (distances)); in Hc4_MatchFinder_GetMatches()