Lines Matching refs:matchlimit
87 const u8 *const matchlimit) in lz4hc_commonlength() argument
91 while (p1t < matchlimit - (STEPSIZE - 1)) { in lz4hc_commonlength()
106 if ((p1t < (matchlimit-3)) && (A32(p2) == A32(p1t))) { in lz4hc_commonlength()
112 if ((p1t < (matchlimit - 1)) && (A16(p2) == A16(p1t))) { in lz4hc_commonlength()
116 if ((p1t < matchlimit) && (*p2 == *p1t)) in lz4hc_commonlength()
122 const u8 *ip, const u8 *const matchlimit, const u8 **matchpos) in lz4hc_insertandfindbestmatch() argument
146 ref + MINMATCH, matchlimit) + MINMATCH; in lz4hc_insertandfindbestmatch()
158 ref + MINMATCH, matchlimit) + MINMATCH; in lz4hc_insertandfindbestmatch()
191 const u8 *ip, const u8 *startlimit, const u8 *matchlimit, int longest, in lz4hc_insertandgetwidermatch() argument
218 while (ipt < matchlimit-(STEPSIZE - 1)) { in lz4hc_insertandgetwidermatch()
234 if ((ipt < (matchlimit - 3)) in lz4hc_insertandgetwidermatch()
241 if ((ipt < (matchlimit - 1)) in lz4hc_insertandgetwidermatch()
245 if ((ipt < matchlimit) && (*reft == *ipt)) in lz4hc_insertandgetwidermatch()
326 const u8 *const matchlimit = (iend - LASTLITERALS); in lz4_compresshcctx() local
344 ml = lz4hc_insertandfindbestmatch(ctx, ip, matchlimit, (&ref)); in lz4_compresshcctx()
357 ip + 1, matchlimit, ml, &ref2, &start2); in lz4_compresshcctx()
411 start2 + ml2 - 3, start2, matchlimit, in lz4_compresshcctx()