Searched refs:e1 (Results 1 - 22 of 22) 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/services/tests/servicestests/src/com/android/server/
H A DDropBoxTest.java69 DropBoxManager.Entry e1 = dropbox.getNextEntry("DropBoxTest", e0.getTimeMillis());
70 DropBoxManager.Entry e2 = dropbox.getNextEntry("DropBoxTest", e1.getTimeMillis());
75 assertTrue(e1.getTimeMillis() > between);
76 assertTrue(e1.getTimeMillis() < e2.getTimeMillis());
80 assertEquals("TEST1", e1.getText(80));
84 e1.close();
142 DropBoxManager.Entry e1 = dropbox.getNextEntry("DropBoxTest", e0.getTimeMillis());
143 DropBoxManager.Entry e2 = dropbox.getNextEntry("DropBoxTest", e1.getTimeMillis());
148 assertTrue(e1.getTimeMillis() > e0.getTimeMillis());
149 assertTrue(e2.getTimeMillis() > e1
[all...]
/frameworks/base/media/libeffects/factory/
H A DEffectsFactory.c256 list_elem_t *e1; local
266 e1 = gEffectList;
268 while (e1) {
269 if (e1->object == interface) {
271 e2->next = e1->next;
273 gEffectList = e1->next;
275 fx = (effect_entry_t *)e1->object;
276 free(e1);
279 e2 = e1;
280 e1
[all...]
/frameworks/base/services/audioflinger/
H A DAudioMixer.cpp846 uint32_t e1 = e0, e2 = e0; local
847 int i = 31 - __builtin_clz(e1);
855 e1 &= ~(1<<i);
858 e0 &= ~(e1);
862 while (e1) {
863 i = 31 - __builtin_clz(e1);
864 e1 &= ~(1<<i);
904 uint32_t e1 = e0, e2 = e0; local
905 int j = 31 - __builtin_clz(e1);
913 e1
986 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/com/android/internal/os/
H A DSamplingProfilerIntegration.java165 } catch (InterruptedException e1) { /* ignore */ }
/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/content/pm/
H A DRegisteredServicesCache.java470 } catch (java.io.IOException e1) {
500 } catch (java.io.IOException e1) {
501 Log.w(TAG, "Error writing accounts", e1);
/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java241 } catch (InterruptedException e1) {
243 e1.printStackTrace();
/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java1481 } catch (java.io.IOException e1) {
1721 } catch (java.io.IOException e1) {
1722 Log.w(TAG, "Error writing accounts", e1);
1922 } catch (java.io.IOException e1) {
1923 Log.w(TAG, "Error writing status", e1);
2019 } catch (java.io.IOException e1) {
2020 Log.w(TAG, "Error writing pending operations", e1);
2047 } catch (java.io.IOException e1) {
2048 Log.w(TAG, "Error writing pending operations", e1);
2160 } catch (java.io.IOException e1) {
[all...]
/frameworks/base/test-runner/src/junit/runner/
H A DBaseTestRunner.java230 } catch (IOException e1) {
/frameworks/base/core/tests/coretests/src/android/text/format/
H A DTimeTest.java427 } catch (TimeFormatException e1) {
434 } catch (TimeFormatException e1) {
/frameworks/base/services/java/com/android/server/
H A DNetworkManagementService.java689 } catch (NativeDaemonConnectorException e1) {
690 Slog.e(TAG, "Error communicating with native daemon", e1);
H A DPackageManagerService.java1575 } catch (SendIntentException e1) {
/frameworks/base/core/java/android/widget/
H A DGallery.java880 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { argument
901 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { argument
903 if (localLOGV) Log.v(TAG, String.valueOf(e2.getX() - e1.getX()));
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.cpp456 AllocEntry *e1 = &entries[i]; local
459 bool swap = e1->size < e2->size;
460 if (e1->size == e2->size) {
462 if (e1->backtrace[j] == e2->backtrace[j]) {
465 swap = e1->backtrace[j] < e2->backtrace[j];
/frameworks/base/voip/java/com/android/server/sip/
H A DSipService.java1412 public int compare(MyEvent e1, MyEvent e2) { argument
1413 if (e1 == e2) return 0;
1414 int diff = e1.mMaxPeriod - e2.mMaxPeriod;
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DAppCacheTest.java159 } catch (FileNotFoundException e1) {
160 failStr("Error when opening file "+e1);
H A DPackageManagerTests.java576 } catch (NameNotFoundException e1) {
1393 } catch (SettingNotFoundException e1) {
2108 } catch (SettingNotFoundException e1) {
/frameworks/base/core/java/android/pim/vcard/
H A DVCardComposer.java184 } catch (UnsupportedEncodingException e1) {
/frameworks/base/packages/TtsService/src/android/tts/
H A DTtsService.java558 } catch (NullPointerException e1) {
673 } catch (NullPointerException e1) {
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DDatabaseHelper.java894 } catch (PackageManager.NameNotFoundException e1) {

Completed in 2288 milliseconds