Home
last modified time | relevance | path

Searched refs:historySize (Results 1 – 9 of 9) sorted by relevance

/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/
DBinTree.java60 …public boolean Create (int historySize, int keepAddBufferBefore, int matchMaxLen, int keepAddBuffe… in Create() argument
61 if (historySize > kMaxValForNormalize - 256) return false; in Create()
64 …int windowReservSize = (historySize + keepAddBufferBefore + matchMaxLen + keepAddBufferAfter) / 2 … in Create()
66 …super.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize… in Create()
70 int cyclicBufferSize = historySize + 1; in Create()
76 hs = historySize - 1; in Create()
/external/lzma/Java/SevenZip/Compression/LZ/
DBinTree.java79 public boolean Create(int historySize, int keepAddBufferBefore, in Create() argument
82 if (historySize > kMaxValForNormalize - 256) in Create()
86 int windowReservSize = (historySize + keepAddBufferBefore + in Create()
89 …super.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize… in Create()
93 int cyclicBufferSize = historySize + 1; in Create()
101 hs = historySize - 1; in Create()
/external/lzma/CS/7zip/Compress/LZ/
DLzBinTree.cs79 public void Create(UInt32 historySize, UInt32 keepAddBufferBefore, in Create() argument
82 if (historySize > kMaxValForNormalize - 256) in Create()
86 UInt32 windowReservSize = (historySize + keepAddBufferBefore + in Create()
89 …base.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize); in Create()
93 UInt32 cyclicBufferSize = historySize + 1; in Create()
101 hs = historySize - 1; in Create()
DIMatchFinder.cs19 void Create(UInt32 historySize, UInt32 keepAddBufferBefore, in Create() argument
/external/lzma/C/
DLzFind.c173 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, in MatchFinder_Create() argument
178 if (historySize > kMaxHistorySize) in MatchFinder_Create()
183 sizeReserv = historySize >> 1; in MatchFinder_Create()
184 if (historySize > ((UInt32)2 << 30)) in MatchFinder_Create()
185 sizeReserv = historySize >> 2; in MatchFinder_Create()
188 p->keepSizeBefore = historySize + keepAddBufferBefore + 1; in MatchFinder_Create()
193 UInt32 newCyclicBufferSize = historySize + 1; in MatchFinder_Create()
202 hs = historySize - 1; in MatchFinder_Create()
228 p->historySize = historySize; in MatchFinder_Create()
289 return (p->pos - p->historySize - 1) & kNormalizeMask; in MatchFinder_GetSubValue()
DLzFindMt.c193 UInt32 subValue = (mf->pos - mf->historySize - 1); in HashThreadFunc()
466 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore, in MatchFinderMt_Create() argument
470 p->historySize = historySize; in MatchFinderMt_Create()
482 …if (!MatchFinder_Create(mf, historySize, keepAddBufferBefore, matchMaxLen, keepAddBufferAfter, all… in MatchFinderMt_Create()
499 p->lzPos = p->historySize + 1; in MatchFinderMt_Init()
524 MatchFinder_Normalize3(p->lzPos - p->historySize - 1, p->hash, p->fixedHashSize); in MatchFinderMt_Normalize()
525 p->lzPos = p->historySize + 1; in MatchFinderMt_Normalize()
695 len = (UInt32)(p->MixMatchesFunc(p, p->lzPos - p->historySize, distances) - (distances)); in MatchFinderMt_GetMatches()
DLzFindMt.h59 UInt32 historySize; member
94 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
DLzFind.h43 UInt32 historySize; member
67 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
/external/libgdx/extensions/gdx-controllers/gdx-controllers-android/src/com/badlogic/gdx/controllers/android/
DAndroidControllers.java136 final int historySize = motionEvent.getHistorySize(); in onGenericMotion() local