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

/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dlz4.c336 #define STEPSIZE 8 macro
345 #define STEPSIZE 4 macro
559 while (likely(ip < matchlimit - (STEPSIZE - 1))) {
562 ip += STEPSIZE;
563 ref += STEPSIZE;
748 while (ip < matchlimit - (STEPSIZE - 1)) {
751 ip += STEPSIZE;
752 ref += STEPSIZE;
959 if (unlikely(op - ref < STEPSIZE)) {
973 op += STEPSIZE
[all...]
/freebsd-13-stable/sys/cddl/contrib/opensolaris/common/lz4/
H A Dlz4.c344 #define STEPSIZE 8 macro
353 #define STEPSIZE 4 macro
567 while likely(ip < matchlimit - (STEPSIZE - 1)) {
570 ip += STEPSIZE;
571 ref += STEPSIZE;
760 while (ip < matchlimit - (STEPSIZE - 1)) {
763 ip += STEPSIZE;
764 ref += STEPSIZE;
975 if unlikely(op - ref < STEPSIZE) {
989 op += STEPSIZE
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/lz4/
H A Dlz4.c360 #define STEPSIZE sizeof(reg_t) macro
365 while (likely(pIn<pInLimit-(STEPSIZE-1))) {
367 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; }
372 if ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMatch+=4; }

Completed in 105 milliseconds