/external/lzma/CS/7zip/Compress/LZ/ |
IMatchFinder.cs | 19 void Create(UInt32 historySize, UInt32 keepAddBufferBefore,
|
LzBinTree.cs | 79 public void Create(UInt32 historySize, UInt32 keepAddBufferBefore,
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;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
DelegateViewHelper.java | 76 final int historySize = event.getHistorySize(); 77 for (int k = 0; k < historySize + 1; k++) { 78 float x = k < historySize ? event.getHistoricalX(k) : event.getX(); 79 float y = k < historySize ? event.getHistoricalY(k) : event.getY();
|
/external/lzma/C/ |
LzFindMt.h | 61 UInt32 historySize;
82 UInt32 cyclicBufferSize; /* it must be historySize + 1 */
96 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
|
LzFind.h | 24 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
45 UInt32 historySize;
66 historySize <= 3 GB
69 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
|
LzFind.c | 171 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
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...] |
LzFindMt.c | 191 UInt32 subValue = (mf->pos - mf->historySize - 1);
465 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
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/ |
BinTree.java | 79 public boolean Create(int historySize, int keepAddBufferBefore,
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/third_party/lzma_sdk/ |
LzFind.h | 24 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */ 45 UInt32 historySize; 66 historySize <= 3 GB 69 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
|
LzFind.c | 171 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, 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/ |
LzFind.h | 25 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */ 46 UInt32 historySize; 67 historySize <= 3 GB 70 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
|
LzFind.c | 172 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, 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...] |
/frameworks/native/include/input/ |
InputTransport.h | 379 size_t historySize; 387 historySize = 0; 394 if (historySize < 2) { 395 historySize += 1;
|
/frameworks/base/core/java/android/view/ |
ScaleGestureDetector.java | 230 final int historySize = ev.getHistorySize(); 231 final int pointerSampleCount = historySize + 1; 234 if (h < historySize) { 254 final long time = h < historySize ? ev.getHistoricalEventTime(h)
|
InputEventConsistencyVerifier.java | 567 final int historySize = event.getHistorySize(); 568 if (historySize != 0) { 569 problem("History size is " + historySize + " but it should always be 0 for "
|
MotionEvent.java | 93 * final int historySize = ev.getHistorySize(); 95 * for (int h = 0; h < historySize; h++) { [all...] |
/frameworks/base/core/jni/ |
android_view_MotionEvent.cpp | 164 static bool validateHistoryPos(JNIEnv* env, jint historyPos, size_t historySize) { 165 if (historyPos < 0 || size_t(historyPos) >= historySize) { 590 size_t historySize = event->getHistorySize(); 591 if (!validateHistoryPos(env, historyPos, historySize)) { 609 size_t historySize = event->getHistorySize(); 610 if (!validateHistoryPos(env, historyPos, historySize)) { 628 size_t historySize = event->getHistorySize(); 629 if (!validateHistoryPos(env, historyPos, historySize)) { 649 size_t historySize = event->getHistorySize(); 650 if (!validateHistoryPos(env, historyPos, historySize)) { [all...] |
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
SystemGesturesPointerEventListener.java | 143 final int historySize = move.getHistorySize(); 149 for (int h = 0; h < historySize; h++) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
ImageDraw.java | 164 int historySize = event.getHistorySize(); 165 for (int h = 0; h < historySize; h++) {
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
GameControllerInput.java | 290 final int historySize = event.getHistorySize(); 298 for (int historyPos = 0; historyPos < historySize; historyPos++) {
|
GameView.java | 232 final int historySize = event.getHistorySize(); 233 for (int i = 0; i < historySize; i++) {
|
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/ |
SinkActivity.java | 360 final int historySize = event.getHistorySize(); 364 for (int h = 0; h < historySize; h++) {
|
/frameworks/base/core/java/com/android/internal/widget/ |
LockPatternView.java | 679 final int historySize = event.getHistorySize(); 682 for (int i = 0; i < historySize + 1; i++) { 683 final float x = i < historySize ? event.getHistoricalX(i) : event.getX(); 684 final float y = i < historySize ? event.getHistoricalY(i) : event.getY(); [all...] |
/frameworks/base/core/java/android/widget/ |
ActivityChooserView.java | 533 final int historySize = mAdapter.getHistorySize(); 534 if (activityCount==1 || activityCount > 1 && historySize > 0) {
|
/frameworks/native/libs/input/ |
Input.cpp | 341 size_t historySize = other->getHistorySize(); 343 + (historySize * pointerCount), pointerCount);
|