Searched defs:historySize (Results 1 - 14 of 14) sorted by relevance

/external/lzma/CS/7zip/Compress/LZ/
H A DIMatchFinder.cs19 void Create(UInt32 historySize, UInt32 keepAddBufferBefore, argument
H A DLzBinTree.cs79 public void Create(UInt32 historySize, UInt32 keepAddBufferBefore, argument
82 if (historySize > kMaxValForNormalize - 256)
86 UInt32 windowReservSize = (historySize + keepAddBufferBefore +
89 base.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize);
93 UInt32 cyclicBufferSize = historySize + 1;
101 hs = historySize - 1;
/external/chromium_org/third_party/lzma_sdk/
H A DLzFind.h24 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
45 UInt32 historySize; member in struct:_CMatchFinder
66 historySize <= 3 GB
69 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
H A DLzFind.c171 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, argument
176 if (historySize > kMaxHistorySize)
181 sizeReserv = historySize >> 1;
182 if (historySize > ((UInt32)2 << 30))
183 sizeReserv = historySize >> 2;
186 p->keepSizeBefore = historySize + keepAddBufferBefore + 1;
191 UInt32 newCyclicBufferSize = historySize + 1;
200 hs = historySize - 1;
226 p->historySize = historySize;
[all...]
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzFind.h25 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
46 UInt32 historySize; member in struct:_CMatchFinder
67 historySize <= 3 GB
70 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
H A DLzFind.c172 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, argument
177 if (historySize > kMaxHistorySize)
182 sizeReserv = historySize >> 1;
183 if (historySize > ((UInt32)2 << 30))
184 sizeReserv = historySize >> 2;
187 p->keepSizeBefore = historySize + keepAddBufferBefore + 1;
192 UInt32 newCyclicBufferSize = historySize + 1;
201 hs = historySize - 1;
227 p->historySize = historySize;
[all...]
/external/lzma/C/
H A DLzFind.h24 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
45 UInt32 historySize; member in struct:_CMatchFinder
66 historySize <= 3 GB
69 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
H A DLzFindMt.h61 UInt32 historySize; member in struct:_CMatchFinderMt
82 UInt32 cyclicBufferSize; /* it must be historySize + 1 */
96 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
H A DLzFind.c171 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, argument
176 if (historySize > kMaxHistorySize)
181 sizeReserv = historySize >> 1;
182 if (historySize > ((UInt32)2 << 30))
183 sizeReserv = historySize >> 2;
186 p->keepSizeBefore = historySize + keepAddBufferBefore + 1;
191 UInt32 newCyclicBufferSize = historySize + 1;
200 hs = historySize - 1;
226 p->historySize = historySize;
[all...]
H A DLzFindMt.c191 UInt32 subValue = (mf->pos - mf->historySize - 1);
465 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore, argument
469 p->historySize = historySize;
481 if (!MatchFinder_Create(mf, historySize, keepAddBufferBefore, matchMaxLen, keepAddBufferAfter, alloc))
498 p->lzPos = p->historySize + 1;
523 MatchFinder_Normalize3(p->lzPos - p->historySize - 1, p->hash, p->fixedHashSize);
524 p->lzPos = p->historySize + 1;
694 len = (UInt32)(p->MixMatchesFunc(p, p->lzPos - p->historySize, distances) - (distances));
/external/lzma/Java/SevenZip/Compression/LZ/
H A DBinTree.java79 public boolean Create(int historySize, int keepAddBufferBefore, argument
82 if (historySize > kMaxValForNormalize - 256)
86 int windowReservSize = (historySize + keepAddBufferBefore +
89 super.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize);
93 int cyclicBufferSize = historySize + 1;
101 hs = historySize - 1;
/external/chromium_org/ui/events/gesture_detection/
H A Dvelocity_tracker.cc325 size_t historySize = event.GetHistorySize(); local
326 for (size_t h = 0; h < historySize; h++) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A Dexterns.js394 historySize: function() { },
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentViewCore.java3270 long timeMs, int action, int pointerCount, int historySize, int actionIndex,
3268 nativeOnTouchEvent( long nativeContentViewCoreImpl, MotionEvent event, long timeMs, int action, int pointerCount, int historySize, int actionIndex, float x0, float y0, float x1, float y1, int pointerId0, int pointerId1, float touchMajor0, float touchMajor1, float rawX, float rawY, int androidToolType0, int androidToolType1, int androidButtonState) argument

Completed in 450 milliseconds