Searched defs:e1 (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Ditrans.cpp91 int e0, e1, e2, e3; /* note, at every step of the calculation, these values */ local
101 e1 = inout[0] - inout[2];
106 inout[1] = e1 + e2;
107 inout[2] = e1 - e2;
116 e1 = block[0] - block[32];
122 e1 += e2;
123 e2 = (e1 - (e2 << 1)); /* e1-e2 */
125 e1 += 32;
131 e1
171 int e0, e1, e2, e3; /* note, at every step of the calculation, these values */ local
[all...]
/frameworks/base/core/java/android/view/
H A DGestureDetector.java80 * @param e1 The first down motion event that started the scrolling.
83 * call to onScroll. This is NOT the distance between {@code e1}
86 * call to onScroll. This is NOT the distance between {@code e1}
90 boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY); argument
105 * @param e1 The first down motion event that started the fling.
113 boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY); argument
166 public boolean onScroll(MotionEvent e1, MotionEvent e2, argument
171 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, argument
/frameworks/base/libs/utils/
H A DString16.cpp137 const char16_t* e1 = s1+n1; local
140 while (s1 < e1 && s2 < e2) {
156 const char16_t* e1 = s1H+n1; local
159 while (s1H < e1 && s2N < e2) {
/frameworks/base/core/java/android/widget/
H A DGallery.java877 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
898 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { argument
900 if (localLOGV) Log.v(TAG, String.valueOf(e2.getX() - e1.getX()));
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.cpp458 AllocEntry *e1 = &entries[i]; local
461 bool swap = e1->size < e2->size;
462 if (e1->size == e2->size) {
464 if (e1->backtrace[j] == e2->backtrace[j]) {
467 swap = e1->backtrace[j] < e2->backtrace[j];

Completed in 119 milliseconds