Home
last modified time | relevance | path

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

/DragonOS-0.1.2/kernel/src/libs/
Dlz4.c788 unsigned LZ4_count(const BYTE *pIn, const BYTE *pMatch, const BYTE *pInLimit) in LZ4_count() argument
790 const BYTE *const pStart = pIn; in LZ4_count()
792 if (likely(pIn < pInLimit - (STEPSIZE - 1))) in LZ4_count()
794 reg_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count()
797 pIn += STEPSIZE; in LZ4_count()
806 while (likely(pIn < pInLimit - (STEPSIZE - 1))) in LZ4_count()
808 reg_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count()
811 pIn += STEPSIZE; in LZ4_count()
815 pIn += LZ4_NbCommonBytes(diff); in LZ4_count()
816 return (unsigned)(pIn - pStart); in LZ4_count()
[all …]