Searched refs:matchMaxLen (Results 1 - 7 of 7) sorted by relevance
/third_party/lzma/Java/SevenZip/Compression/LZ/ |
H A D | BinTree.java | 80 int matchMaxLen, int keepAddBufferAfter)
in Create() 84 _cutValue = 16 + (matchMaxLen >> 1);
in Create() 87 matchMaxLen + keepAddBufferAfter) / 2 + 256;
in Create() 89 super.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize);
in Create() 91 _matchMaxLen = matchMaxLen;
in Create() 79 Create(int historySize, int keepAddBufferBefore, int matchMaxLen, int keepAddBufferAfter) Create() argument
|
/third_party/lzma/CS/7zip/Compress/LZ/ |
H A D | LzBinTree.cs | 80 UInt32 matchMaxLen, UInt32 keepAddBufferAfter)
in Create() 84 _cutValue = 16 + (matchMaxLen >> 1);
in Create() 87 matchMaxLen + keepAddBufferAfter) / 2 + 256;
in Create() 89 base.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize);
in Create() 91 _matchMaxLen = matchMaxLen;
in Create() 79 Create(UInt32 historySize, UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter) Create() argument
|
H A D | IMatchFinder.cs | 20 UInt32 matchMaxLen, UInt32 keepAddBufferAfter);
in Create() 19 Create(UInt32 historySize, UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter) Create() argument
|
/third_party/lzma/C/ |
H A D | LzFindMt.h | 77 UInt32 matchMaxLen;
member 100 UInt32 matchMaxLen, UInt32 keepAddBufferAfter, ISzAllocPtr alloc);
|
H A D | LzFind.h | 29 UInt32 matchMaxLen;
member 100 UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter,
|
H A D | LzFindMt.c | 578 Also we suppose here that (matchMaxLen >= 2).
in BtGetMatches() 580 UInt32 reserve = (p->matchMaxLen * 2);
in BtGetMatches() 587 const UInt32 limit = kMtBtBlockSize - (p->matchMaxLen * 2);
in BtGetMatches() 648 UInt32 lenLimit = p->matchMaxLen;
in BtGetMatches() 849 UInt32 matchMaxLen, UInt32 keepAddBufferAfter, ISzAllocPtr alloc)
in MatchFinderMt_Create() 853 if (kMtBtBlockSize <= matchMaxLen * 4)
in MatchFinderMt_Create() 864 if (!MatchFinder_Create(mf, historySize, keepAddBufferBefore, matchMaxLen, keepAddBufferAfter, alloc))
in MatchFinderMt_Create() 914 p->matchMaxLen = mf->matchMaxLen;
in MatchFinderMt_Init() 848 MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter, ISzAllocPtr alloc) MatchFinderMt_Create() argument
|
H A D | LzFind.c | 371 UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter,
in MatchFinder_Create() 379 keepAddBufferAfter += matchMaxLen;
in MatchFinder_Create() 452 p->matchMaxLen = matchMaxLen;
in MatchFinder_Create() 508 UInt32 mm = p->matchMaxLen;
in MatchFinder_SetLimits() 370 MatchFinder_Create(CMatchFinder *p, UInt32 historySize, UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter, ISzAllocPtr alloc) MatchFinder_Create() argument
|
Completed in 11 milliseconds