Searched defs:lenLimit (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/lzma_sdk/
H A DLzFind.h21 UInt32 lenLimit; member in struct:_CMatchFinder
76 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
H A DLzFind.c263 UInt32 lenLimit = p->streamPos - p->pos; local
264 if (lenLimit > p->matchMaxLen)
265 lenLimit = p->matchMaxLen;
266 p->lenLimit = lenLimit;
322 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, argument
338 while (++len != lenLimit)
345 if (len == lenLimit)
353 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, argument
374 if (++len != lenLimit
408 SkipMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue) argument
[all...]
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzFind.h22 UInt32 lenLimit; member in struct:_CMatchFinder
77 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
H A DLzFind.c264 UInt32 lenLimit = p->streamPos - p->pos; local
265 if (lenLimit > p->matchMaxLen)
266 lenLimit = p->matchMaxLen;
267 p->lenLimit = lenLimit;
323 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, argument
339 while (++len != lenLimit)
346 if (len == lenLimit)
354 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, argument
375 if (++len != lenLimit
409 SkipMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue) argument
[all...]
/external/lzma/C/
H A DLzFind.h21 UInt32 lenLimit; member in struct:_CMatchFinder
76 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
H A DLzFind.c263 UInt32 lenLimit = p->streamPos - p->pos; local
264 if (lenLimit > p->matchMaxLen)
265 lenLimit = p->matchMaxLen;
266 p->lenLimit = lenLimit;
322 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, argument
338 while (++len != lenLimit)
345 if (len == lenLimit)
353 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, argument
374 if (++len != lenLimit
408 SkipMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue) argument
[all...]
H A DLzFindMt.c234 Int32 NO_INLINE GetMatchesSpecN(UInt32 lenLimit, UInt32 pos, const Byte *cur, CLzRef *son, argument
262 if (++len != lenLimit && pb[len] == cur[len])
263 while (++len != lenLimit)
270 if (len == lenLimit)
331 UInt32 lenLimit = p->matchMaxLen; local
334 if (lenLimit >= p->hashNumAvail)
335 lenLimit = p->hashNumAvail;
337 UInt32 size2 = p->hashNumAvail - lenLimit + 1;
348 UInt32 num = (UInt32)(GetMatchesSpec1(lenLimit, pos - p->hashBuf[p->hashBufPos++],
360 curPos = limit - GetMatchesSpecN(lenLimit, po
[all...]

Completed in 1011 milliseconds