Searched refs:lenLimit (Results 1 – 2 of 2) sorted by relevance
/illumos-gate/usr/src/common/lzma/ |
H A D | LzFind.c | 258 UInt32 lenLimit = p->streamPos - p->pos; in MatchFinder_SetLimits() local 259 if (lenLimit > p->matchMaxLen) in MatchFinder_SetLimits() 260 lenLimit = p->matchMaxLen; in MatchFinder_SetLimits() 261 p->lenLimit = lenLimit; in MatchFinder_SetLimits() 317 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CL… in Hc_GetMatchesSpec() argument 333 while (++len != lenLimit) in Hc_GetMatchesSpec() 340 if (len == lenLimit) in Hc_GetMatchesSpec() 348 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, in GetMatchesSpec1() argument 369 if (++len != lenLimit && pb[len] == cur[len]) in GetMatchesSpec1() 370 while (++len != lenLimit) in GetMatchesSpec1() [all …]
|
H A D | LzFind.h | 17 UInt32 lenLimit; member 72 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *…
|