Searched defs:e1 (Results 1 - 14 of 14) sorted by last modified time

/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java245 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { argument
262 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java2477 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
2587 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { argument
/frameworks/ex/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java243 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { argument
260 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
/frameworks/native/libs/utils/
H A DUnicode.cpp295 const char16_t* e1 = s1+n1; local
298 while (s1 < e1 && s2 < e2) {
314 const char16_t* e1 = s1H+n1; local
317 while (s1H < e1 && s2N < e2) {
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DPlaybackActivity.java56 public boolean onScroll(MotionEvent e1, MotionEvent e2, argument
66 return super.onScroll(e1, e2, distanceX, distanceY);
/frameworks/base/voip/java/com/android/server/sip/
H A DSipWakeupTimer.java330 public int compare(MyEvent e1, MyEvent e2) { argument
331 if (e1 == e2) return 0;
332 int diff = e1.mMaxPeriod - e2.mMaxPeriod;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_TransformResidual4x4_s.s71 e1 RN 6 label
215 SSUB16 e1, trRow00,trRow20 ;// e1 = d0 - d2
221 SADD16 rowOp10, e1, e2 ;// f1 = e1 + e2
222 SSUB16 rowOp20, e1, e2 ;// f2 = e1 - e2
228 SSUB16 e1, trRow02,trRow22
234 SADD16 rowOp12, e1, e2
235 SSUB16 rowOp22, e1, e
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DarmVCM4P10_FwdTransformResidual4x4.c45 int e1 = d0 - d3; local
49 int f1 = (e1 << 1) + e3;
51 int f3 = e1 - (e3 << 1);
H A DarmVCM4P10_TransformResidual4x4.c46 int e1 = d0 - d2; local
50 int f1 = e1 + e2;
51 int f2 = e1 - e2;
/frameworks/av/services/audioflinger/
H A DAudioMixer.cpp1054 uint32_t e1 = e0, e2 = e0; local
1055 int i = 31 - __builtin_clz(e1);
1063 e1 &= ~(1<<i);
1066 e0 &= ~(e1);
1070 while (e1) {
1071 i = 31 - __builtin_clz(e1);
1072 e1 &= ~(1<<i);
1114 uint32_t e1 = e0, e2 = e0; local
1115 int j = 31 - __builtin_clz(e1);
1123 e1
1198 uint32_t e1 = e0, e2 = e0; 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/core/java/android/widget/
H A DGallery.java992 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
1011 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { argument
1013 if (localLOGV) Log.v(TAG, String.valueOf(e2.getX() - e1.getX()));
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c329 list_elem_t *e1; local
339 e1 = gEffectList;
341 while (e1) {
342 if (e1->object == handle) {
344 e2->next = e1->next;
346 gEffectList = e1->next;
348 fx = (effect_entry_t *)e1->object;
349 free(e1);
352 e2 = e1;
353 e1
[all...]
/frameworks/av/media/libmedia/
H A DMemoryLeakTrackUtil.cpp120 AllocEntry *e1 = &entries[i]; local
123 bool swap = e1->size < e2->size;
124 if (e1->size == e2->size) {
126 if (e1->backtrace[j] == e2->backtrace[j]) {
129 swap = e1->backtrace[j] < e2->backtrace[j];

Completed in 4751 milliseconds