/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;
|
/external/lzma/C/ |
LzFindMt.h | 59 UInt32 historySize;
80 UInt32 cyclicBufferSize; /* it must be historySize + 1 */
94 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
|
LzFind.h | 22 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
43 UInt32 historySize;
64 historySize <= 3 GB
67 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
|
LzFind.c | 173 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
178 if (historySize > kMaxHistorySize)
183 sizeReserv = historySize >> 1;
184 if (historySize > ((UInt32)2 << 30))
185 sizeReserv = historySize >> 2;
188 p->keepSizeBefore = historySize + keepAddBufferBefore + 1;
193 UInt32 newCyclicBufferSize = historySize + 1;
202 hs = historySize - 1;
228 p->historySize = historySize;
[all...] |
LzFindMt.c | 193 UInt32 subValue = (mf->pos - mf->historySize - 1);
466 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
470 p->historySize = historySize;
482 if (!MatchFinder_Create(mf, historySize, keepAddBufferBefore, matchMaxLen, keepAddBufferAfter, alloc))
499 p->lzPos = p->historySize + 1;
524 MatchFinder_Normalize3(p->lzPos - p->historySize - 1, p->hash, p->fixedHashSize);
525 p->lzPos = p->historySize + 1;
695 len = (UInt32)(p->MixMatchesFunc(p, p->lzPos - p->historySize, distances) - (distances));
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/ |
BinTree.java | 60 public boolean Create (int historySize, int keepAddBufferBefore, int matchMaxLen, int keepAddBufferAfter) {
61 if (historySize > kMaxValForNormalize - 256) return false;
64 int windowReservSize = (historySize + keepAddBufferBefore + matchMaxLen + keepAddBufferAfter) / 2 + 256;
66 super.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize);
70 int cyclicBufferSize = historySize + 1;
76 hs = historySize - 1;
|
/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;
|
/frameworks/native/include/input/ |
InputTransport.h | 389 size_t historySize; 397 historySize = 0; 404 if (historySize < 2) { 405 historySize += 1;
|
/frameworks/base/core/jni/ |
android_view_MotionEvent.cpp | 167 static bool validateHistoryPos(JNIEnv* env, jint historyPos, size_t historySize) { 168 if (historyPos < 0 || size_t(historyPos) >= historySize) { 605 size_t historySize = event->getHistorySize(); 606 if (!validateHistoryPos(env, historyPos, historySize)) { 624 size_t historySize = event->getHistorySize(); 625 if (!validateHistoryPos(env, historyPos, historySize)) { 643 size_t historySize = event->getHistorySize(); 644 if (!validateHistoryPos(env, historyPos, historySize)) { 664 size_t historySize = event->getHistorySize(); 665 if (!validateHistoryPos(env, historyPos, historySize)) { [all...] |
/frameworks/base/services/core/java/com/android/server/policy/ |
SystemGesturesPointerEventListener.java | 191 final int historySize = move.getHistorySize(); 197 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++) {
|
/frameworks/base/core/java/android/view/ |
InputEventConsistencyVerifier.java | 638 final int historySize = event.getHistorySize(); 639 if (historySize != 0) { 640 problem("History size is " + historySize + " but it should always be 0 for " [all...] |
MotionEvent.java | 93 * final int historySize = ev.getHistorySize(); 95 * for (int h = 0; h < historySize; h++) { [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/dialog/ |
CallSubjectDialog.java | 429 int historySize = prefs.getInt(PREF_KEY_SUBJECT_HISTORY_COUNT, 0); 430 List<String> subjects = new ArrayList(historySize); 432 for (int ix = 0 ; ix < historySize; ix++) {
|
/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/android/widget/ |
ActivityChooserView.java | 551 final int historySize = mAdapter.getHistorySize(); 552 if (activityCount==1 || activityCount > 1 && historySize > 0) {
|
/frameworks/native/libs/input/ |
Input.cpp | 275 size_t historySize = other->getHistorySize(); 277 + (historySize * pointerCount), pointerCount);
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
ActivityChooserView.java | 528 final int historySize = mAdapter.getHistorySize(); 529 if (activityCount==1 || activityCount > 1 && historySize > 0) {
|
/external/libgdx/extensions/gdx-controllers/gdx-controllers-android/src/com/badlogic/gdx/controllers/android/ |
AndroidControllers.java | 136 final int historySize = motionEvent.getHistorySize();
|
/frameworks/base/core/java/com/android/internal/widget/ |
LockPatternView.java | 907 final int historySize = event.getHistorySize(); 910 for (int i = 0; i < historySize + 1; i++) { 911 final float x = i < historySize ? event.getHistoricalX(i) : event.getX(); 912 final float y = i < historySize ? event.getHistoricalY(i) : event.getY(); [all...] |
/packages/apps/Dialer/InCallUI/src/com/android/incallui/widget/multiwaveview/ |
GlowPadView.java | [all...] |
/development/samples/ControllerSample/src/com/example/controllersample/ |
GameView.java | 855 final int historySize = event.getHistorySize(); 856 for (int i = 0; i < historySize; i++) { [all...] |