Searched defs:a1 (Results 1 - 21 of 21) sorted by relevance

/frameworks/compile/mclinker/unittests/
H A DGraphTest.cpp184 ListDigraph::Arc* a1 = graph.addArc(*u1, *u2); local
188 ASSERT_TRUE(u1 == a1->source && u2 == a1->target);
192 ASSERT_TRUE(u1->first_in == a3 && u1->first_out == a1);
193 ASSERT_TRUE(u2->first_in == a1 && u2->first_out == a2);
204 ListDigraph::Arc* a1 = graph.addArc(*u1, *u1); local
208 ASSERT_TRUE(u1 == a1->source && u1 == a1->target);
212 ASSERT_TRUE(u1->first_in == a1 && u1->first_out == a3);
224 ListDigraph::Arc* a1 local
250 ListDigraph::Arc* a1 = graph.addArc(*u1, *u2); local
276 ListDigraph::Arc* a1 = graph.addArc(*u1, *u2); local
302 ListDigraph::Arc* a1 = graph.addArc(*u1, *u1); local
[all...]
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
H A DKernelUidCpuFreqTimeReaderTest.java133 private long[] subtract(long[] a1, long[] a2) { argument
134 long[] val = new long[a1.length];
136 val[i] = a1[i] - a2[i];
/frameworks/rs/tests/cpp_api/cppbasic/
H A Dcompute.cpp28 sp<Allocation> a1 = Allocation::createSized(rs, e, 1000); local
29 printf("Allocation %p\n", a1.get());
38 sc->set_alloc(a1);
/frameworks/rs/tests/cpp_api/cppbasic-getpointer/
H A Dcompute.cpp32 sp<Allocation> a1 = Allocation::createSized(rs, e, 1000); local
33 printf("Allocation %p\n", a1.get());
/frameworks/rs/tests/cpp_api/cppbasic-shared/
H A Dcompute.cpp28 sp<Allocation> a1 = Allocation::createSized(rs, e, 1000); local
29 printf("Allocation %p\n", a1.get());
38 sc->set_alloc(a1);
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
H A DMessageUtilsTest.java65 SparseArray<String> a1, SparseArray<String> a2) throws Exception {
66 String msg = String.format("%s != %s", a1.toString(), a2.toString());
67 assertEquals(msg, a1.size(), a2.size());
68 int size = a1.size();
70 assertEquals(msg, a1.keyAt(i), a2.keyAt(i));
71 assertEquals(msg, a1.valueAt(i), a2.valueAt(i));
64 assertSparseArrayEquals( SparseArray<String> a1, SparseArray<String> a2) argument
/frameworks/base/core/tests/coretests/src/android/animation/
H A DAnimatorSetActivityTest.java16 private ObjectAnimator a1,a2,a3; field in class:AnimatorSetActivityTest
57 a1 = ObjectAnimator.ofFloat(square1, View.TRANSLATION_X, 0f, 500f, 0f).setDuration(250);
67 a1 = null;
78 s1.playTogether(a1, a2, a3);
81 assertTrue(children.contains(a1));
86 s2.playSequentially(a1, a2, a3);
89 assertTrue(children.contains(a1));
94 s3.play(a1).before(a2).after(s1).with(s2).after(a3);
98 assertTrue(s3Children.contains(a1));
134 a1
[all...]
H A DValueAnimatorTests.java33 private ValueAnimator a1; field in class:ValueAnimatorTests
55 a1 = ValueAnimator.ofFloat(A1_START_VALUE, A1_END_VALUE).setDuration(300);
61 a1 = null;
113 a1.addListener(l1);
127 a1.start();
140 a1.cancel();
159 long delay = Math.max(a1.getTotalDuration(), a2.getTotalDuration()) + TOLERANCE;
165 // a1 is canceled.
180 assertFalse(a1.isStarted());
182 assertFalse(a1
[all...]
/frameworks/native/opengl/libagl/
H A Dmatrix.h111 GLfixed a1, GLfixed b1,
125 "%r"(a1), "r"(b1),
134 int64_t(a1)*b1)>>16) + c;
140 GLfixed a1, GLfixed b1,
156 "%r"(a1), "r"(b1),
169 "madd %[a1],%[b1] \r\n"
178 : [a0] "r" (a0),[b0] "r" (b0),[a1] "r" (a1),[b1] "r" (b1),[a2] "r" (a2),[b2] "r" (b2),[c] "r" (c)
186 int64_t(a1)*b1 +
196 GLfixed a1,
110 mla2a( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed c) argument
139 mla3a( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2, GLfixed c) argument
195 mla3a16( GLfixed a0, int32_t b1b0, GLfixed a1, GLfixed a2, int32_t b2, GLint shift, GLfixed c) argument
234 mla3a16_btb( GLfixed a0, GLfixed a1, GLfixed a2, int32_t b1b0, int32_t xxb2, GLint shift, GLfixed c) argument
275 mla3a16_btt( GLfixed a0, GLfixed a1, GLfixed a2, int32_t b1b0, int32_t b2xx, GLint shift, GLfixed c) argument
316 mla3( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2) argument
347 mla4( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2, GLfixed a3, GLfixed b3) argument
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
H A DApnSettingTest.java102 private static void assertApnSettingsEqual(List<ApnSetting> a1, List<ApnSetting> a2) { argument
103 assertEquals(a1.size(), a2.size());
104 for (int i = 0; i < a1.size(); ++i) {
105 assertApnSettingEqual(a1.get(i), a2.get(i));
109 private static void assertApnSettingEqual(ApnSetting a1, ApnSetting a2) { argument
110 assertEquals(a1.carrier, a2.carrier);
111 assertEquals(a1.apn, a2.apn);
112 assertEquals(a1.proxy, a2.proxy);
113 assertEquals(a1.port, a2.port);
114 assertEquals(a1
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioBiquadFilter.cpp159 const audio_coef_t a1 = mCoefs[3]; local
167 acc = mac_coef_sample(a1, y1, acc);
206 const audio_coef_t a1 = mCoefs[3]; local
220 acc = mac_coef_sample(a1, y1, acc);
/frameworks/base/core/tests/coretests/src/android/os/
H A DAidlTest.java123 public boolean[] booleanArray(boolean[] a0, boolean[] a1, boolean[] a2) { argument
127 for (int i = 0; i < a0.length && i < a1.length; i++) {
128 a1[i] = a0[i];
133 public char[] charArray(char[] a0, char[] a1, char[] a2) { argument
137 for (int i = 0; i < a0.length && i < a1.length; i++) {
138 a1[i] = a0[i];
143 public int[] intArray(int[] a0, int[] a1, int[] a2) { argument
147 for (int i = 0; i < a0.length && i < a1.length; i++) {
148 a1[i] = a0[i];
153 public long[] longArray(long[] a0, long[] a1, lon argument
163 floatArray(float[] a0, float[] a1, float[] a2) argument
173 doubleArray(double[] a0, double[] a1, double[] a2) argument
183 stringArray(String[] a0, String[] a1, String[] a2) argument
193 parcelableArray(TestParcelable[] a0, TestParcelable[] a1, TestParcelable[] a2) argument
[all...]
/frameworks/native/libs/math/include/math/
H A DTQuatHelpers.h251 const T a1 = a * t; local
254 const T s1 = std::sin(a1) * isina;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A DarmCOMM_s.h452 ;// $a0,$a1,$a2. Addressing mode and condition. One of:
460 _M_DATA $i,$a,$r,$a0,$a1,$a2,$a3
462 IF "$a1"=""
467 _M_POSTIND $i$a3, "$r", $a0, $a1
469 _M_POSTIND $i$a3, "$r", $a0, "$a1,$a2"
473 _M_PREIND $i$a3, "$r", $a0, $a1
475 _M_PREIND $i$a3, "$r", $a0, "$a1,$a2"
483 $i$a1 $r, [sp, #_Offset]
490 _M_POSTIND $i,$r,$a0,$a1
495 _offset SETS "$a1"
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A DarmCOMM_s.h455 ;// $a0,$a1,$a2. Addressing mode and condition. One of:
463 _M_DATA $i,$a,$r,$a0,$a1,$a2,$a3
465 IF "$a1"=""
470 _M_POSTIND $i$a3, "$r", $a0, $a1
472 _M_POSTIND $i$a3, "$r", $a0, "$a1,$a2"
476 _M_PREIND $i$a3, "$r", $a0, $a1
478 _M_PREIND $i$a3, "$r", $a0, "$a1,$a2"
486 $i$a1 $r, [sp, #_Offset]
493 _M_POSTIND $i,$r,$a0,$a1
498 _offset SETS "$a1"
[all...]
/frameworks/base/libs/common_time/
H A Dcommon_time_server.cpp1432 bool CommonTimeServer::sockaddrMatch(const sockaddr_storage& a1, argument
1435 if (a1.ss_family != a2.ss_family)
1438 switch (a1.ss_family) {
1441 reinterpret_cast<const struct sockaddr_in*>(&a1);
1453 reinterpret_cast<const struct sockaddr_in6*>(&a1);
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DAdapterHelperTest.java967 private void assertAdaptersEqual(TestAdapter a1, TestAdapter a2) { argument
968 assertEquals(a1.mItems.size(), a2.mItems.size());
969 for (int i = 0; i < a1.mItems.size(); i++) {
970 TestAdapter.Item item = a1.mItems.get(i);
974 assertEquals(0, a1.mPendingAdded.size());
/frameworks/base/services/core/java/com/android/server/
H A DAlarmManagerService.java2260 public int compare(Alarm a1, Alarm a2) { argument
2261 long when1 = a1.whenElapsed;
/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java675 int mip, int face, int a1, int a2, int a3, int a4);
677 int mip, int face, int a1, int a2, int a3, int a4) {
679 rsnAllocationAdapterOffset(mContext, id, x, y, z, mip, face, a1, a2, a3, a4);
674 rsnAllocationAdapterOffset(long con, long id, int x, int y, int z, int mip, int face, int a1, int a2, int a3, int a4) argument
676 nAllocationAdapterOffset(long id, int x, int y, int z, int mip, int face, int a1, int a2, int a3, int a4) argument
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp1646 jint a1, jint a2, jint a3, jint a4)
1650 (uint32_t)lod, (uint32_t)a1, (uint32_t)a2, (uint32_t)a3, (uint32_t)a4
1654 (RsContext)con, (RsAllocation)alloc, x, y, z, face, lod, a1, a2, a3, a4);
1644 nAllocationAdapterOffset(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jint x, jint y, jint z, jint face, jint lod, jint a1, jint a2, jint a3, jint a4) argument
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 790 milliseconds