HomeSort by relevance Sort by last modified time
    Searched defs:A0 (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/bfin/
arith_mode.s 5 R0.L = A0;
6 R0.L = A0 (FU);
7 R0.L = A0 (IS);
8 R0.L = A0 (IU);
9 R0.L = A0 (T);
10 R0.L = A0 (TFU); // Not documented
11 R0.L = A0 (S2RND);
12 R0.L = A0 (ISS2);
13 R0.L = A0 (IH);
17 R0 = A0;
    [all...]
invalid_arith_mode.s 7 R0.L = A0 (W32);
11 R0 = A0 (T);
12 R0 = A0 (TFU);
13 R0 = A0 (IH);
14 R0 = A0 (W32);
30 A0 = R1.L * R2.H (IU);
31 A0 = R1.L * R2.H (T);
32 A0 = R1.L * R2.H (TFU);
33 A0 = R1.L * R2.H (S2RND);
34 A0 = R1.L * R2.H (ISS2)
    [all...]
logical2.s 46 //Dreg_lo = CC = BXORSHIFT ( A0, Dreg ) ; /* (b) */
47 R0.L = CC = BXORSHIFT(A0, R0);
48 R0.L = CC = BXORSHIFT(A0, R1);
50 R3.L = CC = BXORSHIFT(A0, R0);
51 R3.L = CC = BXORSHIFT(A0, R1);
53 //Dreg_lo = CC = BXOR ( A0, Dreg ) ; /* (b) */
54 R0.L = CC = BXOR(A0, R0);
55 R0.L = CC = BXOR(A0, R1);
57 R3.L = CC = BXOR(A0, R0);
58 R3.L = CC = BXOR(A0, R1)
    [all...]
parallel2.s 2 A0 = A1 || P0 = [sp+20];
3 a1 = a0 || P0 = [p5+24];
4 a0 = R0 || P0 = [P4+28]; define
7 R4 = A0 (fu) || P0 = [p3+36];
9 R6 = a0 || P0 = [P4+44];
11 R6 = A0, R7 = a1 || P0 = [P4+52];
12 r1 = a1, r0 = a0 (fu) || P0 = [P4+56];
14 A0.X = r5.l || p0 = [p4+60];
16 r0.l = a0.x || r1 = [i0 ++ m1];
18 A0.L = r3.l || r0 = [i0 ++ m3]
33 a0 = a0 << 31 || r0 = [fp - 28]; define
70 a0 = rot A0 by 0 || R5 = W [P3] (z); define
    [all...]
logical.s 34 R7.l = CC = bxor (a0, r0);
35 r7.l = cc = BXOR (A0, R1);
37 r5.L = Cc = BxoR (A0, A1, CC);
38 R4.L = cC = bXor (a0, a1, cc);
43 r3.l = cc = bxorshift (a0, R7);
44 R2.l = cC = BxoRsHIft (A0, R2);
46 A0 = BXORSHIFT (A0, A1, CC);
47 a0 = BxorShift (a0, A1, Cc) define
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p6.cpp 4 struct A0 {
8 template<int X, int Y> void f0(A0<X, Y>) { } // expected-note{{previous}}
9 template<int N, int M> void f0(A0<M, N>) { }
10 template<int V1, int V2> void f0(A0<V1, V2>) { } // expected-error{{redefinition}}
12 template<int X, int Y> void f1(A0<0, (X + Y)>) { } // expected-note{{previous}}
13 template<int X, int Y> void f1(A0<0, (X - Y)>) { }
14 template<int A, int B> void f1(A0<0, (A + B)>) { } // expected-error{{redefinition}}
16 template<int X, int Y> void A0<X, Y>::g0() { }
  /external/clang/test/CodeGen/
pr5406.c 5 typedef struct { char x[3]; } A0;
12 A0 a3;
  /external/fec/
encode_rs.h 30 #undef A0
31 #define A0 (NN) /* Special reserved value encoding zero in index form */
41 if(feedback != A0){ /* feedback term is non-zero */
53 if(feedback != A0)
char.h 20 #define A0 (NN)
int.h 20 #define A0 (NN)
  /external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
destroy.pass.cpp 50 struct A0
53 ~A0() {++count;}
56 int A0::count = 0;
61 A0::count = 0;
63 std::aligned_storage<sizeof(A0)>::type a0; local
64 std::allocator_traits<A<int> >::construct(a, (A0*)&a0);
65 assert(A0::count == 0);
66 std::allocator_traits<A<int> >::destroy(a, (A0*)&a0)
81 std::aligned_storage<sizeof(A0)>::type a0; local
    [all...]
construct.pass.cpp 52 struct A0
55 A0() {++count;}
58 int A0::count = 0;
88 A0::count = 0;
90 std::aligned_storage<sizeof(A0)>::type a0; local
91 assert(A0::count == 0);
92 std::allocator_traits<A<int> >::construct(a, (A0*)&a0);
93 assert(A0::count == 1)
123 std::aligned_storage<sizeof(A0)>::type a0; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/allocator.traits/allocator.traits.members/
destroy.pass.cpp 49 struct A0
52 ~A0() {++count;}
55 int A0::count = 0;
60 A0::count = 0;
62 std::aligned_storage<sizeof(A0)>::type a0; local
63 std::allocator_traits<A<int> >::construct(a, (A0*)&a0);
64 assert(A0::count == 0);
65 std::allocator_traits<A<int> >::destroy(a, (A0*)&a0)
73 std::aligned_storage<sizeof(A0)>::type a0; local
    [all...]
construct.pass.cpp 51 struct A0
54 A0() {++count;}
57 int A0::count = 0;
87 A0::count = 0;
89 std::aligned_storage<sizeof(A0)>::type a0; local
90 assert(A0::count == 0);
91 std::allocator_traits<A<int> >::construct(a, (A0*)&a0);
92 assert(A0::count == 1)
115 std::aligned_storage<sizeof(A0)>::type a0; local
    [all...]
  /external/clang/INPUTS/
macro_pounder_fn.c 6 #define A0(A, B) A B
7 #define A1(A, B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B)
macro_pounder_obj.c 6 #define A0 a b
7 #define A1 A0 A0 A0 A0 A0 A0
  /external/clang/test/Index/
annotate-comments-preprocessor.c 14 #define A0 0
22 int A[] = { A0, A1, A2, A3, A4, A5, A6 };
24 #if A0 /** Aaa. */
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Filters.h 34 * Biquad with coefficients A0, A1, A2, B1 and B2 coefficients
40 LVM_INT16 A0;
50 LVM_FLOAT A0;
59 * Biquad with coefficients A0, A1 and B1 coefficients
65 LVM_INT16 A0;
73 LVM_FLOAT A0;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
greg1.s 5 A0 GREG 0
  /external/clang/test/Analysis/
NewDeleteLeaks-PR19102.cpp 3 class A0 {};
26 new A0; // expected-warning@+1 {{Potential memory leak}}
  /external/clang/test/CXX/temp/temp.param/
p9-0x.cpp 27 struct A0 { template<typename U> struct B; };
28 template<typename U = int> struct A0::B { };
  /external/eigen/test/
inplace_decomposition.cpp 37 MatrixType A0 = A;
43 VERIFY_IS_NOT_APPROX( A, A0 );
48 VERIFY_IS_APPROX( A0 * (x = dec.solve(b)), b );
52 VERIFY_IS_APPROX( A0.transpose() * A0 * (x = dec.solve(b)), A0.transpose() * b );
59 VERIFY_IS_NOT_APPROX( A0 * (x = dec.solve(b)), b );
63 VERIFY_IS_NOT_APPROX( A0.transpose() * A0 * (x = dec.solve(b)), A0.transpose() * b )
    [all...]
  /prebuilts/go/darwin-x86/test/
alias2.go 27 A0 = T0
34 N0 A0
40 func (A0) m1() {} // ERROR "T0\.m1 redeclared in this block|redefinition of .m1."
41 func (A0) m1() {} // ERROR "T0\.m1 redeclared in this block|redefinition of .m1."
42 func (A0) m2() {}
45 var _ A0 = T0{}
46 var _ T0 = A0{}
50 var _ N0 = A0{} // ERROR "cannot use T0 literal \(type T0\) as type N0 in assignment|incompatible type"
62 } = A0{}
72 A0 = T
    [all...]
  /prebuilts/go/linux-x86/test/
alias2.go 27 A0 = T0
34 N0 A0
40 func (A0) m1() {} // ERROR "T0\.m1 redeclared in this block|redefinition of .m1."
41 func (A0) m1() {} // ERROR "T0\.m1 redeclared in this block|redefinition of .m1."
42 func (A0) m2() {}
45 var _ A0 = T0{}
46 var _ T0 = A0{}
50 var _ N0 = A0{} // ERROR "cannot use T0 literal \(type T0\) as type N0 in assignment|incompatible type"
62 } = A0{}
72 A0 = T
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_CalcCoef.c 62 /* a0 = (0.5 + b2) / 2 */
105 LVM_INT32 A0;
145 factor = 0x7fff; /* Initialise to 1.0 for the a0 coefficient */
156 * Calculate the B1 and A0 coefficients
159 A0 = ((B1 >> 16) * (CosErr >> 10)) >> 6; /* Temporary storage for (0.5 - b2/2) * coserr(t0) */
160 B1 -= A0; /* B1 = (0.5 - b2/2) * (1 - coserr(t0)) */
161 A0 = (0x40000000 + B2) >> 1; /* A0 = (0.5 + b2) */
166 pCoefficients->A0 = A0;
    [all...]

Completed in 388 milliseconds

1 2 3 4 5