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

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

Completed in 70 milliseconds