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

/frameworks/base/libs/androidfw/tests/
H A DTypeWrappers_test.cpp38 ResTable_entry e1; local
39 memset(&e1, 0, sizeof(e1));
40 e1.size = sizeof(e1);
41 e1.key.index = 0;
42 t.header.size += sizeof(e1);
50 offsets[2] = sizeof(e1) + sizeof(v1);
67 memcpy(p, &e1, sizeof(e1));
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DarmVCM4P10_FwdTransformResidual4x4.c60 int e1 = d0 - d3; local
64 int f1 = (e1 << 1) + e3;
66 int f3 = e1 - (e3 << 1);
H A DarmVCM4P10_TransformResidual4x4.c61 int e1 = d0 - d2; local
65 int f1 = e1 + e2;
66 int f2 = e1 - e2;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarViewTaskSwitchHelper.java93 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
/frameworks/av/media/libmedia/
H A DMemoryLeakTrackUtil.cpp125 AllocEntry *e1 = &entries[i]; local
128 bool swap = e1->size < e2->size;
129 if (e1->size == e2->size) {
131 if (e1->backtrace[j] == e2->backtrace[j]) {
134 swap = e1->backtrace[j] < e2->backtrace[j];
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_TransformResidual4x4_s.s85 e1 RN 6 label
229 SSUB16 e1, trRow00,trRow20 ;// e1 = d0 - d2
235 SADD16 rowOp10, e1, e2 ;// f1 = e1 + e2
236 SSUB16 rowOp20, e1, e2 ;// f2 = e1 - e2
242 SSUB16 e1, trRow02,trRow22
248 SADD16 rowOp12, e1, e2
249 SSUB16 rowOp22, e1, e
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipWakeupTimer.java320 public int compare(MyEvent e1, MyEvent e2) { argument
321 if (e1 == e2) return 0;
322 int diff = e1.mMaxPeriod - e2.mMaxPeriod;
/frameworks/base/core/java/android/view/
H A DGestureDetector.java79 * @param e1 The first down motion event that started the scrolling.
82 * call to onScroll. This is NOT the distance between {@code e1}
85 * call to onScroll. This is NOT the distance between {@code e1}
89 boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY); argument
104 * @param e1 The first down motion event that started the fling.
112 boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY); argument
165 public boolean onScroll(MotionEvent e1, MotionEvent e2, argument
170 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, argument
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c343 list_elem_t *e1; local
353 e1 = gEffectList;
355 while (e1) {
356 if (e1->object == handle) {
358 e2->next = e1->next;
360 gEffectList = e1->next;
362 fx = (effect_entry_t *)e1->object;
363 free(e1);
366 e2 = e1;
367 e1
[all...]
/frameworks/base/core/java/android/widget/
H A DGallery.java996 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
1015 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { argument
1017 if (localLOGV) Log.v(TAG, String.valueOf(e2.getX() - e1.getX()));
/frameworks/av/services/audioflinger/
H A DAudioMixer.cpp1509 uint32_t e1 = e0, e2 = e0; local
1510 int i = 31 - __builtin_clz(e1);
1519 e1 &= ~(1<<i);
1522 e0 &= ~(e1);
1528 while (e1) {
1529 i = 31 - __builtin_clz(e1);
1530 e1 &= ~(1<<i);
1571 uint32_t e1 = e0, e2 = e0; local
1572 int j = 31 - __builtin_clz(e1);
1580 e1
1668 uint32_t e1 = e0, e2 = e0; local
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java343 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { argument
360 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java2879 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
3026 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { argument

Completed in 3299 milliseconds