Home
last modified time | relevance | path

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

/linux-4.1.27/lib/lz4/
Dlz4hc_compress.c89 const u8 *p1t = p1; in lz4hc_commonlength() local
91 while (p1t < matchlimit - (STEPSIZE - 1)) { in lz4hc_commonlength()
93 u64 diff = A64(p2) ^ A64(p1t); in lz4hc_commonlength()
95 u32 diff = A32(p2) ^ A32(p1t); in lz4hc_commonlength()
98 p1t += STEPSIZE; in lz4hc_commonlength()
102 p1t += LZ4_NBCOMMONBYTES(diff); in lz4hc_commonlength()
103 return p1t - p1; in lz4hc_commonlength()
106 if ((p1t < (matchlimit-3)) && (A32(p2) == A32(p1t))) { in lz4hc_commonlength()
107 p1t += 4; in lz4hc_commonlength()
112 if ((p1t < (matchlimit - 1)) && (A16(p2) == A16(p1t))) { in lz4hc_commonlength()
[all …]