Home
last modified time | relevance | path

Searched refs:pInLimit (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
792 if (likely(pIn < pInLimit - (STEPSIZE - 1))) in LZ4_count()
806 while (likely(pIn < pInLimit - (STEPSIZE - 1))) in LZ4_count()
819 if ((STEPSIZE == 8) && (pIn < (pInLimit - 3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) in LZ4_count()
824 if ((pIn < (pInLimit - 1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) in LZ4_count()
829 if ((pIn < pInLimit) && (*pMatch == *pIn)) in LZ4_count()