From: Yann Collet Date: Tue, 7 Nov 2017 19:05:48 +0000 (-0800) Subject: improved LZ4HC_reverseCountPattern() : X-Git-Tag: upstream/1.9.3~11^2~25^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7130bfe5733347d8c84b8f6b8fb34c1397d4a173;p=platform%2Fupstream%2Flz4.git improved LZ4HC_reverseCountPattern() : works for any repetitive pattern of length 1, 2 or 4 (but not 3!) works for any endianess --- diff --git a/lib/lz4hc.c b/lib/lz4hc.c index fbcec98..1880d53 100644 --- a/lib/lz4hc.c +++ b/lib/lz4hc.c @@ -161,17 +161,21 @@ static unsigned LZ4HC_countPattern(const BYTE* ip, const BYTE* const iEnd, U32 c return (unsigned)(ip - iStart); } +/* LZ4HC_reverseCountPattern() : + * pattern must be a sample of repetitive pattern of length 1, 2 or 4 (but not 3!) + * read using natural platform endianess */ static unsigned LZ4HC_reverseCountPattern(const BYTE* ip, const BYTE* const iLow, U32 pattern) { const BYTE* const iStart = ip; - while (likely(ip>=iLow+4)) { + while (likely(ip >= iLow+4)) { if (LZ4_read32(ip-4) != pattern) break; ip -= 4; } while (likely(ip>iLow)) { - if (ip[-1] != (BYTE)pattern) break; - ip--; + const BYTE* bytePtr = (const BYTE*)(&pattern) + 3; /* works for any endianess */ + if (ip[-1] != *bytePtr) break; + ip--; bytePtr--; } return (unsigned)(iStart - ip);