Searched refs:historySize (Results 1 – 9 of 9) sorted by relevance
/external/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 79 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/C/ |
D | LzFind.c | 178 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, in MatchFinder_Create() argument 184 if (historySize > kMaxHistorySize) in MatchFinder_Create() 190 sizeReserv = historySize >> 1; in MatchFinder_Create() 191 if (historySize >= ((UInt32)3 << 30)) sizeReserv = historySize >> 3; in MatchFinder_Create() 192 else if (historySize >= ((UInt32)2 << 30)) sizeReserv = historySize >> 2; in MatchFinder_Create() 196 p->keepSizeBefore = historySize + keepAddBufferBefore + 1; in MatchFinder_Create() 203 UInt32 newCyclicBufferSize = historySize + 1; in MatchFinder_Create() 212 hs = historySize; in MatchFinder_Create() 243 p->historySize = historySize; in MatchFinder_Create() 347 return (p->pos - p->historySize - 1) & kNormalizeMask; in MatchFinder_GetSubValue()
|
D | LzFindMt.h | 59 UInt32 historySize; member 94 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
|
D | LzFindMt.c | 198 UInt32 subValue = (mf->pos - mf->historySize - 1); in HashThreadFunc() 512 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore, in MatchFinderMt_Create() argument 516 p->historySize = historySize; in MatchFinderMt_Create() 528 …if (!MatchFinder_Create(mf, historySize, keepAddBufferBefore, matchMaxLen, keepAddBufferAfter, all… in MatchFinderMt_Create() 552 p->lzPos = p->historySize + 1; in MatchFinderMt_Init() 577 MatchFinder_Normalize3(p->lzPos - p->historySize - 1, p->hash, p->fixedHashSize); in MatchFinderMt_Normalize() 578 p->lzPos = p->historySize + 1; in MatchFinderMt_Normalize() 751 len = (UInt32)(p->MixMatchesFunc(p, p->lzPos - p->historySize, distances) - (distances)); in MatchFinderMt_GetMatches()
|
D | LzFind.h | 44 UInt32 historySize; member 74 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzBinTree.cs | 79 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()
|
D | IMatchFinder.cs | 19 void Create(UInt32 historySize, UInt32 keepAddBufferBefore, in Create() argument
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowMotionEvent.java | 99 private static void validateHistoryPos(int historyPos, int historySize) { in validateHistoryPos() argument 100 checkState(historyPos >= 0 && historyPos < historySize, "historyPos out of range"); in validateHistoryPos() 444 int historySize = event.getHistorySize(); in nativeGetPointerCoords() local 445 validateHistoryPos(historyPos, historySize); in nativeGetPointerCoords() 592 int historySize = event.getHistorySize(); in nativeGetEventTimeNanos() local 593 validateHistoryPos(historyPos, historySize); in nativeGetEventTimeNanos() 616 int historySize = event.getHistorySize(); in nativeGetRawAxisValue() local 617 validateHistoryPos(historyPos, historySize); in nativeGetRawAxisValue() 640 int historySize = event.getHistorySize(); in nativeGetAxisValue() local 641 validateHistoryPos(historyPos, historySize); in nativeGetAxisValue()
|
D | NativeInput.java | 610 int historySize = other.getHistorySize(); in copyFrom() local 613 int currentStartIndex = historySize * pointerCount; in copyFrom()
|