Home
last modified time | relevance | path

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

/linux-4.4.14/lib/lz4/
Dlz4_decompress.c118 if (unlikely((op - ref) < STEPSIZE)) { in lz4_uncompress()
132 op += STEPSIZE - 4; in lz4_uncompress()
137 cpy = op + length - (STEPSIZE - 4); in lz4_uncompress()
250 if (unlikely((op - ref) < STEPSIZE)) { in lz4_uncompress_unknownoutputsize()
264 op += STEPSIZE - 4; in lz4_uncompress_unknownoutputsize()
269 cpy = op + length - (STEPSIZE-4); in lz4_uncompress_unknownoutputsize()
Dlz4_compress.c146 while (likely(ip < MATCHLIMIT - (STEPSIZE - 1))) { in lz4_compressctx()
153 ip += STEPSIZE; in lz4_compressctx()
154 ref += STEPSIZE; in lz4_compressctx()
327 while (ip < MATCHLIMIT - (STEPSIZE - 1)) { in lz4_compress64kctx()
335 ip += STEPSIZE; in lz4_compress64kctx()
336 ref += STEPSIZE; in lz4_compress64kctx()
Dlz4hc_compress.c91 while (p1t < matchlimit - (STEPSIZE - 1)) { in lz4hc_commonlength()
98 p1t += STEPSIZE; in lz4hc_commonlength()
99 p2 += STEPSIZE; in lz4hc_commonlength()
218 while (ipt < matchlimit-(STEPSIZE - 1)) { in lz4hc_insertandgetwidermatch()
226 ipt += STEPSIZE; in lz4hc_insertandgetwidermatch()
227 reft += STEPSIZE; in lz4hc_insertandgetwidermatch()
Dlz4defs.h97 #define STEPSIZE 8 macro
123 #define STEPSIZE 4 macro