From: Yann Collet Date: Tue, 31 Oct 2017 19:22:15 +0000 (-0700) Subject: minor : coding style : use ML_MASK constant X-Git-Tag: upstream/1.9.3~11^2~29^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ace334a4c94927d97933888b343a2f435bbbc7fa;p=platform%2Fupstream%2Flz4.git minor : coding style : use ML_MASK constant --- diff --git a/lib/lz4.c b/lib/lz4.c index b036d98..34d8c40 100644 --- a/lib/lz4.c +++ b/lib/lz4.c @@ -1185,12 +1185,12 @@ LZ4_FORCE_INLINE int LZ4_decompress_generic( * this shortcut was tested on x86 and x64, where it improves decoding speed. * it has not yet been benchmarked on ARM, Power, mips, etc. */ if (((ip + 14 + 2 <= iend) & (op + 14 + 16 <= oend)) - & ((token < (15<> ML_BITS; size_t const off = LZ4_readLE16(ip+ll); const BYTE* const matchPtr = op + ll - off; /* pointer underflow risk ? */ if ((off >= 16) /* do not deal with overlapping matches */ & (matchPtr >= lowPrefix)) { - size_t const ml = (token & 0xF) + MINMATCH; + size_t const ml = (token & ML_MASK) + MINMATCH; memcpy(op, ip, 16); op += ll; ip += ll + 2 /*offset*/; memcpy(op, matchPtr, 16); op += ml; continue;