Searched refs:a1 (Results 1 - 17 of 17) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DApnSettingTest.java29 public static void assertApnSettingEqual(ApnSetting a1, ApnSetting a2) { argument
30 assertEquals(a1.carrier, a2.carrier);
31 assertEquals(a1.apn, a2.apn);
32 assertEquals(a1.proxy, a2.proxy);
33 assertEquals(a1.port, a2.port);
34 assertEquals(a1.mmsc, a2.mmsc);
35 assertEquals(a1.mmsProxy, a2.mmsProxy);
36 assertEquals(a1.mmsPort, a2.mmsPort);
37 assertEquals(a1.user, a2.user);
38 assertEquals(a1
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DIAidlTest.aidl34 boolean[] booleanArray(in boolean[] a0, out boolean[] a1, inout boolean[] a2);
35 char[] charArray(in char[] a0, out char[] a1, inout char[] a2);
36 int[] intArray(in int[] a0, out int[] a1, inout int[] a2);
37 long[] longArray(in long[] a0, out long[] a1, inout long[] a2);
38 float[] floatArray(in float[] a0, out float[] a1, inout float[] a2);
39 double[] doubleArray(in double[] a0, out double[] a1, inout double[] a2);
40 String[] stringArray(in String[] a0, out String[] a1, inout String[] a2);
42 out AidlTest.TestParcelable[] a1,
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/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_copy_test.java34 Allocation a1 = Allocation.createSized(rs, Element.F32_2(rs), 1024);
42 a1.copyFrom(f1);
44 s.forEach_copyFloat2(a1, a2);
53 a1.destroy();
58 Allocation a1 = Allocation.createSized(rs, Element.F32_3(rs), 1024);
66 a1.copyFrom(f1);
68 s.forEach_copyFloat3(a1, a2);
77 a1.destroy();
82 Allocation a1 = Allocation.createSized(rs, Element.F32_4(rs), 1024);
90 a1
[all...]
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUT_copy_test.java34 Allocation a1 = Allocation.createSized(rs, Element.F32_2(rs), 1024);
42 a1.copyFrom(f1);
44 s.forEach_copyFloat2(a1, a2);
53 a1.destroy();
58 Allocation a1 = Allocation.createSized(rs, Element.F32_3(rs), 1024);
66 a1.copyFrom(f1);
68 s.forEach_copyFloat3(a1, a2);
77 a1.destroy();
82 Allocation a1 = Allocation.createSized(rs, Element.F32_4(rs), 1024);
90 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/compile/libbcc/tests/
H A Dtest.py129 # a1 and a2 are the expected stdout and stderr.
136 def compareOuput(a1,a2,b1,b2):
138 totalLen = len(a1) + len(a2) + len(b1) + len(b2)
139 a1, b1 = matchCommon(a1, b1)
140 a1, b2 = matchCommon(a1, b2)
143 newTotalLen = len(a1) + len(a2) + len(b1) + len(b2)
147 print "Failed at %d %d %d %d" % (len(a1), len(a2), len(b1), len(b2))
148 print "a1", a
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A DarmCOMM_s.h438 ;// $a0,$a1,$a2. Addressing mode and condition. One of:
446 _M_DATA $i,$a,$r,$a0,$a1,$a2,$a3
448 IF "$a1"=""
453 _M_POSTIND $i$a3, "$r", $a0, $a1
455 _M_POSTIND $i$a3, "$r", $a0, "$a1,$a2"
459 _M_PREIND $i$a3, "$r", $a0, $a1
461 _M_PREIND $i$a3, "$r", $a0, "$a1,$a2"
469 $i$a1 $r, [sp, #_Offset]
476 _M_POSTIND $i,$r,$a0,$a1
481 _offset SETS "$a1"
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A DarmCOMM_s.h441 ;// $a0,$a1,$a2. Addressing mode and condition. One of:
449 _M_DATA $i,$a,$r,$a0,$a1,$a2,$a3
451 IF "$a1"=""
456 _M_POSTIND $i$a3, "$r", $a0, $a1
458 _M_POSTIND $i$a3, "$r", $a0, "$a1,$a2"
462 _M_PREIND $i$a3, "$r", $a0, $a1
464 _M_PREIND $i$a3, "$r", $a0, "$a1,$a2"
472 $i$a1 $r, [sp, #_Offset]
479 _M_POSTIND $i,$r,$a0,$a1
484 _offset SETS "$a1"
[all...]
/frameworks/rs/tests/cppbasic/
H A Dcompute.cpp28 sp<Allocation> a1 = Allocation::createSized(rs, e, 1000); local
29 printf("Allocation %p\n", a1.get());
97 a1.clear();
/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/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
H A Dresidu_asm_opt.s37 ORR r5, r6, r5, LSL #16 @r5 --- a0, a1
85 SMLABB r4, r5, r2, r4 @i2(1) --- r4 += x[0] * a1
87 SMLABB r12, r5, r10, r12 @i4(1) --- r12 += x[2] * a1
95 SMLABT r3, r5, r2, r3 @i1(1) --- r3 += x[-1] * a1
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapTest.java208 int a1 = Color.alpha(c1);
209 assertEquals("alpha", a0, a1);
/frameworks/base/services/common_time/
H A Dcommon_time_server.cpp1431 bool CommonTimeServer::sockaddrMatch(const sockaddr_storage& a1, argument
1434 if (a1.ss_family != a2.ss_family)
1437 switch (a1.ss_family) {
1440 reinterpret_cast<const struct sockaddr_in*>(&a1);
1452 reinterpret_cast<const struct sockaddr_in6*>(&a1);
H A Dcommon_time_server.h317 static bool sockaddrMatch(const sockaddr_storage& a1,
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DDropBoxTest.java291 DropBoxManager.Entry a1 = dropbox.getNextEntry("DropBoxTest.A", a0.getTimeMillis());
292 assertTrue(null == dropbox.getNextEntry("DropBoxTest.A", a1.getTimeMillis()));
303 assertEquals("DropBoxTest.A", a1.getTag());
305 assertEquals("A1", a1.getText(80));
318 a1.close();
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java730 public int compare(Alarm a1, Alarm a2) { argument
731 long when1 = a1.when;

Completed in 636 milliseconds