Home
last modified time | relevance | path

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

/freebsd-13-stable/sys/cddl/contrib/opensolaris/common/lz4/
HDlz4.c344 #define STEPSIZE 8 macro
353 #define STEPSIZE 4 macro
567 while likely(ip < matchlimit - (STEPSIZE - 1)) { in LZ4_compressCtx()
570 ip += STEPSIZE; in LZ4_compressCtx()
571 ref += STEPSIZE; in LZ4_compressCtx()
760 while (ip < matchlimit - (STEPSIZE - 1)) { in LZ4_compress64kCtx()
763 ip += STEPSIZE; in LZ4_compress64kCtx()
764 ref += STEPSIZE; in LZ4_compress64kCtx()
975 if unlikely(op - ref < STEPSIZE) { in LZ4_uncompress_unknownOutputSize()
989 op += STEPSIZE - 4; in LZ4_uncompress_unknownOutputSize()
[all …]
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
HDlz4.c336 #define STEPSIZE 8 macro
345 #define STEPSIZE 4 macro
558 while (likely(ip < matchlimit - (STEPSIZE - 1))) { in LZ4_compressCtx()
561 ip += STEPSIZE; in LZ4_compressCtx()
562 ref += STEPSIZE; in LZ4_compressCtx()
746 while (ip < matchlimit - (STEPSIZE - 1)) { in LZ4_compress64kCtx()
749 ip += STEPSIZE; in LZ4_compress64kCtx()
750 ref += STEPSIZE; in LZ4_compress64kCtx()
957 if (unlikely(op - ref < STEPSIZE)) { in LZ4_uncompress_unknownOutputSize()
971 op += STEPSIZE - 4; in LZ4_uncompress_unknownOutputSize()
[all …]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/lz4/
HDlz4.c360 #define STEPSIZE sizeof(reg_t) macro
365 while (likely(pIn<pInLimit-(STEPSIZE-1))) { in LZ4_count()
367 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; } in LZ4_count()
372 …if ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMat… in LZ4_count()