Searched refs:matchlimit (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dlz4.c481 #define matchlimit (iend - LASTLITERALS) macro
559 while (likely(ip < matchlimit - (STEPSIZE - 1))) {
570 if ((ip < (matchlimit - 3)) && (A32(ref) == A32(ip))) {
575 if ((ip < (matchlimit - 1)) && (A16(ref) == A16(ip))) {
579 if ((ip < matchlimit) && (*ref == *ip))
672 #define matchlimit (iend - LASTLITERALS) macro
748 while (ip < matchlimit - (STEPSIZE - 1)) {
759 if ((ip < (matchlimit - 3)) && (A32(ref) == A32(ip))) {
764 if ((ip < (matchlimit - 1)) && (A16(ref) == A16(ip))) {
768 if ((ip < matchlimit)
[all...]
/freebsd-13-stable/sys/cddl/contrib/opensolaris/common/lz4/
H A Dlz4.c489 #define matchlimit (iend - LASTLITERALS) macro
567 while likely(ip < matchlimit - (STEPSIZE - 1)) {
578 if ((ip < (matchlimit - 3)) && (A32(ref) == A32(ip))) {
583 if ((ip < (matchlimit - 1)) && (A16(ref) == A16(ip))) {
587 if ((ip < matchlimit) && (*ref == *ip))
684 #define matchlimit (iend - LASTLITERALS) macro
760 while (ip < matchlimit - (STEPSIZE - 1)) {
771 if ((ip < (matchlimit - 3)) && (A32(ref) == A32(ip))) {
776 if ((ip < (matchlimit - 1)) && (A16(ref) == A16(ip))) {
780 if ((ip < matchlimit)
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/lz4/
H A Dlz4.c491 const BYTE* const matchlimit = iend - LASTLITERALS; local
591 if (limit > matchlimit) limit = matchlimit;
595 unsigned const more = LZ4_count(ip, (const BYTE*)source, matchlimit);
600 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit);
745 const BYTE* const matchlimit = iend - LASTLITERALS; local
822 { size_t matchLength = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit);

Completed in 179 milliseconds