HomeSort by relevance Sort by last modified time
    Searched refs:a11 (Results 1 - 25 of 45) sorted by null

1 2

  /external/skia/src/opts/
SkBitmapProcState_filter_neon.h 23 SkPMColor a10, SkPMColor a11,
33 "vmov.32 d5[1], %[a11] \n\t" // set top of d5 to a11
36 "vmull.u8 q0, d5, d0 \n\t" // q0 = [a11|a10] * y
43 "vmla.i16 d4, d1, d5 \n\t" // d4 += a11 * x
49 : [x] "r" (x), [y] "r" (y), [a00] "r" (a00), [a01] "r" (a01), [a10] "r" (a10), [a11] "r" (a11), [dst] "r" (dst)
56 SkPMColor a10, SkPMColor a11,
66 "vmov.32 d5[1], %[a11] \n\t" // set top of d5 to a11
    [all...]
  /external/skia/legacy/src/core/
SkBitmapProcState_filter.h 24 SkPMColor a10, SkPMColor a11,
34 "vmov.32 d5[1], %[a11] \n\t" // set top of d5 to a11
37 "vmull.u8 q0, d5, d0 \n\t" // q0 = [a11|a10] * y
44 "vmla.i16 d4, d1, d5 \n\t" // d4 += a11 * x
50 : [x] "r" (x), [y] "r" (y), [a00] "r" (a00), [a01] "r" (a01), [a10] "r" (a10), [a11] "r" (a11), [dst] "r" (dst)
57 SkPMColor a10, SkPMColor a11,
67 "vmov.32 d5[1], %[a11] \n\t" // set top of d5 to a11
    [all...]
SkFilterProc.cpp 16 static unsigned bilerp00(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return a00; }
17 static unsigned bilerp01(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (3 * a00 + a01) >> 2; }
18 static unsigned bilerp02(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (a00 + a01) >> 1; }
19 static unsigned bilerp03(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (a00 + 3 * a01) >> 2; }
21 static unsigned bilerp10(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (3 * a00 + a10) >> 2; }
22 static unsigned bilerp11(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (9 * a00 + 3 * (a01 + a10) + a11) >> 4; }
23 static unsigned bilerp12(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (3 * (a00 + a01) + a10 + a11) >> 3; }
24 static unsigned bilerp13(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (9 * a01 + 3 * (a00 + a11) + a10) >> 4;
    [all...]
SkBitmapProcState.cpp 18 uint32_t a10, uint32_t a11) {
25 a11 = SkExpand_rgb_16(a11);
31 a11 * xy;
46 uint32_t a10, uint32_t a11) {
53 a11 = SkExpand_4444(a11);
59 a11 * xy;
66 U8CPU a10, U8CPU a11) {
74 a11 * xy
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
AccountManagerServiceTest.java 72 Account a11 = new Account("account1", "type1"); local
78 mAms.addAccountExplicitly(a11, "p11", null);
88 assertEquals(a11, accounts[0]);
98 assertEquals(a11, accounts[0]);
107 assertEquals(a11, accounts[0]);
112 Account a11 = new Account("account1", "type1"); local
114 mAms.addAccountExplicitly(a11, "p11", null);
117 assertEquals("p11", mAms.getPassword(a11));
120 mAms.setPassword(a11, "p11b");
122 assertEquals("p11b", mAms.getPassword(a11));
127 Account a11 = new Account("account1", "type1"); local
159 Account a11 = new Account("account1", "type1"); local
    [all...]
  /external/skia/src/core/
SkFilterProc.cpp 16 static unsigned bilerp00(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return a00; }
17 static unsigned bilerp01(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (3 * a00 + a01) >> 2; }
18 static unsigned bilerp02(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (a00 + a01) >> 1; }
19 static unsigned bilerp03(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (a00 + 3 * a01) >> 2; }
21 static unsigned bilerp10(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (3 * a00 + a10) >> 2; }
22 static unsigned bilerp11(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (9 * a00 + 3 * (a01 + a10) + a11) >> 4; }
23 static unsigned bilerp12(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (3 * (a00 + a01) + a10 + a11) >> 3; }
24 static unsigned bilerp13(unsigned a00, unsigned a01, unsigned a10, unsigned a11) { return (9 * a01 + 3 * (a00 + a11) + a10) >> 4;
    [all...]
SkBitmapProcState_filter.h 23 SkPMColor a10, SkPMColor a11,
43 lo += (a11 & mask) * xy;
44 hi += ((a11 >> 8) & mask) * xy;
51 SkPMColor a10, SkPMColor a11,
73 lo += (a11 & mask) * xy;
74 hi += ((a11 >> 8) & mask) * xy;
SkBitmapProcState_procs.h 19 uint32_t a10, uint32_t a11) {
26 a11 = SkExpand_rgb_16(a11);
32 a11 * xy;
47 uint32_t a10, uint32_t a11) {
54 a11 = SkExpand_4444(a11);
60 a11 * xy;
67 U8CPU a10, U8CPU a11) {
75 a11 * xy
    [all...]
  /external/valgrind/main/massif/tests/
deep.c 17 void a11(int n) { a12(n); } function
18 void a10(int n) { a11(n); }
deep-B.stderr.exp 23 Massif: a11
  /external/regex-re2/re2/
variadic_function.h 95 const Arg& a10, const Arg& a11) const {
97 &a9, &a10, &a11 };
104 const Arg& a10, const Arg& a11, const Arg& a12) const {
106 &a9, &a10, &a11, &a12 };
113 const Arg& a10, const Arg& a11, const Arg& a12, const Arg& a13) const {
115 &a9, &a10, &a11, &a12, &a13 };
122 const Arg& a10, const Arg& a11, const Arg& a12, const Arg& a13,
125 &a9, &a10, &a11, &a12, &a13, &a14 };
132 const Arg& a10, const Arg& a11, const Arg& a12, const Arg& a13,
135 &a9, &a10, &a11, &a12, &a13, &a14, &a15 }
    [all...]
  /external/clang/test/CodeGen/
x86_32-arguments-linux.c 46 t56_v8i a10, struct s56_5 a11,
50 a10, a11, a12, a13);
x86_32-arguments-darwin.c 272 t56_v8i a10, struct s56_5 a11,
276 a10, a11, a12, a13);
  /external/clang/test/SemaCXX/
constexpr-many-arguments.cpp 14 T a10, T a11, T a12, T a13, T a14, T a15, T a16, T a17, T a18, T a19,
17 a10, a11, a12, a13, a14, a15, a16, a17, a18, a19,
uninitialized.cpp 108 A a11(a11); // expected-warning {{variable 'a11' is uninitialized when used within its own initialization}}
145 A a11(a11); // expected-warning {{variable 'a11' is uninitialized when used within its own initialization}}
  /dalvik/tests/003-omnibus-opcodes/src/
MethodCall.java 40 int a6, int a7, double a8, float a9, double a10, short a11, int a12,
  /external/clang/test/SemaTemplate/
temp_arg_template.cpp 37 A<: :N::Z> *a11; // expected-error{{expected expression}} \ variable
  /external/regex-re2/util/
pcre.cc 155 const Arg& a11,
173 if (&a11 == &no_more_args) goto done; args[n++] = &a11;
198 const Arg& a11,
216 if (&a11 == &no_more_args) goto done; args[n++] = &a11;
241 const Arg& a11,
259 if (&a11 == &no_more_args) goto done; args[n++] = &a11;
290 const Arg& a11,
    [all...]
  /external/skia/src/utils/
SkMatrix44.cpp 424 double a11 = fMat[1][1]; local
436 double b00 = a00 * a11 - a01 * a10;
439 double b03 = a01 * a12 - a02 * a11;
440 double b04 = a01 * a13 - a03 * a11;
504 double a11 = fMat[1][1]; local
516 double b00 = a00 * a11 - a01 * a10;
519 double b03 = a01 * a12 - a02 * a11;
520 double b04 = a01 * a13 - a03 * a11;
553 inverse->fMat[0][0] = SkDoubleToMScalar(a11 * b11 - a12 * b10 + a13 * b09);
561 inverse->fMat[2][0] = SkDoubleToMScalar(a10 * b10 - a11 * b08 + a13 * b06)
    [all...]
  /external/valgrind/main/memcheck/tests/
wrap6.c 533 UInt a7, UInt a8, UInt a9, UInt a10, UInt a11 )
547 words[11-1] = a11;
555 UInt a7, UInt a8, UInt a9, UInt a10, UInt a11 )
563 (int)a7, (int)a8, (int)a9, (int)a10, (int)a11);
564 CALL_FN_W_11W(r, fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11);
573 UInt a7, UInt a8, UInt a9, UInt a10, UInt a11, UInt a12 )
587 words[11-1] = a11;
596 UInt a7, UInt a8, UInt a9, UInt a10, UInt a11, UInt a12 )
605 (int)a7, (int)a8, (int)a9, (int)a10, (int)a11, (int)a12);
606 CALL_FN_W_12W(r, fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/x86/
fwalsh_sse2.asm 78 pmaddwd xmm0, [GLOBAL(c1)] ; d11 a11 d10 a10
84 pshufd xmm4, xmm0, 0xd8 ; d11 d10 a11 a10
90 punpcklqdq xmm0, xmm5 ; b11 b10 a11 a10
  /external/zlib/src/
gzwrite.c 375 a11, a12, a13, a14, a15, a16, a17, a18, a19, a20)
379 a11, a12, a13, a14, a15, a16, a17, a18, a19, a20;
420 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
425 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
430 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
434 a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18,
  /external/opencv/cv/src/
cvmoments.cpp 92 double a00, a10, a01, a20, a11, a02, a30, a21, a12, a03; local
96 a00 = a10 = a01 = a20 = a11 = a02 = a30 = a21 = a12 = a03 = 0;
139 a11 += dxy * (xi_1 * (yii_1 + yi_1) + xi * (yii_1 + yi));
184 moments->m11 = a11 * db1_24;
  /external/skia/legacy/src/opts/
SkBitmapProcState_opts_SSE2.cpp 74 __m128i a11 = _mm_cvtsi32_si128(row1[x1]); local
89 __m128i a01a11 = _mm_unpacklo_epi32(a11, a01);
94 // (a01 * (16-y)), (a11 * y)
97 // (a01 * (16-y) * x), (a11 * y * x)
100 // (a00*w00 + a01*w01, a10*w10 + a11*w11)
106 // (DC, a00*w00 + a01*w01 + a10*w10 + a11*w11)
184 __m128i a11 = _mm_cvtsi32_si128(row1[x1]); local
199 __m128i a01a11 = _mm_unpacklo_epi32(a11, a01);
204 // (a01 * (16-y)), (a11 * y)
207 // (a01 * (16-y) * x), (a11 * y * x
    [all...]
  /external/v8/test/mjsunit/compiler/
assignment-deopt.js 160 assertEquals("a11", assign11(o));
177 assertEquals("a11", assign12(o));

Completed in 3889 milliseconds

1 2