Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/lz4/
Dlz4.c670 unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) in LZ4_count() argument
672 const BYTE* const pStart = pIn; in LZ4_count()
674 if (likely(pIn < pInLimit-(STEPSIZE-1))) { in LZ4_count()
675 reg_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count()
677 pIn+=STEPSIZE; pMatch+=STEPSIZE; in LZ4_count()
682 while (likely(pIn < pInLimit-(STEPSIZE-1))) { in LZ4_count()
683 reg_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count()
684 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; } in LZ4_count()
685 pIn += LZ4_NbCommonBytes(diff); in LZ4_count()
686 return (unsigned)(pIn - pStart); in LZ4_count()
[all …]