Searched defs:A1 (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/INPUTS/
H A Dmacro_pounder_fn.c7 #define A1(A, B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) macro
8 #define A2(A, B) A1(A,B) A1(A,B) A1(A,B) A1(A,B) A1(A,B) A1(A,B)
H A Dmacro_pounder_obj.c7 #define A1 A0 A0 A0 A0 A0 A0 macro
8 #define A2 A1 A1 A1 A1 A1 A1
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
H A Dp3.cpp10 class A1 { class
/external/clang/test/CodeGenCXX/
H A Ddefault-arguments.cpp15 struct A1 { struct
16 A1();
17 ~A1();
26 B(const A1& = A1(), const A2& = A2());
H A Dvtt-layout.cpp26 class A1 { int i; }; class in namespace:Test3
28 class V1 : public A1, public A2 { int i; };
45 class A1 { int i; }; class in namespace:Test4
47 class V1 : public A1, public virtual A2 { int i; };
H A Dvisibility.cpp429 class A1 {}; class in namespace:test22
433 template <> struct DEFAULT B<A1> {
443 B<A1>::foo();
444 B<A1>::bar();
H A Ddestructors.cpp57 class A1 { class
58 ~A1();
61 template<> A1<char>::~A1();
H A Dvtable-layout.cpp299 struct A1 { struct in namespace:Test6
312 // CHECK-13-NEXT: -- (Test6::A1, 0) vtable address --
320 struct C : A1, A2 {
391 struct A1 { int a1; }; struct in namespace:Test9
401 struct B : virtual A1, virtual A2 {
416 struct A1 { virtual void a1(); }; struct in namespace:Test10
422 // CHECK-17-NEXT: -- (Test10::A1, 0) vtable address --
425 // CHECK-17-NEXT: 2 | void Test10::A1::a1()
431 struct B : A1, A2 {
445 struct A1 { in struct in namespace:Test11
499 struct A1 { struct in namespace:Test12
[all...]
/external/clang/test/SemaCXX/
H A Dambiguous-builtin-unary-operator.cpp23 struct A1 { operator volatile int&(); }; struct
27 struct C1 : B1, A1 { };
H A Dnamespace-alias.cpp30 namespace A1 { } namespace in namespace:H
33 // These all point to A1.
34 namespace B = A1; // expected-note {{previous definition is here}}
35 namespace B = A1;
43 namespace A1 { int i; } namespace in namespace:I
45 namespace A2 = A1;
H A Dfriend.cpp78 struct A1 { friend void A(); }; struct in namespace:test5
H A Dwarn-reorder-ctor-initialization.cpp57 struct A1 { struct
58 A1();
65 struct F : public A1, public B1, private virtual V {
66 F() : A1(), V() { } // expected-warning {{base class 'A1' will be initialized after base 'V'}}
H A Dconversion-function.cpp121 struct A1 { struct
122 A1(const char *);
123 ~A1();
126 A1(const A1&); // expected-note 2 {{declared private here}}
129 A1 f() {
/external/clang/test/CXX/temp/temp.param/
H A Dp9-0x.cpp31 template<typename T> struct A1 { template<typename U> struct B; }; struct in namespace:PR8748
32 template<typename T> template<typename U = int> struct A1<T>::B { }; // expected-error{{cannot add a default template argument to the definition of a member of a class template}}
/external/clang/test/SemaTemplate/
H A Dtemp_arg_type.cpp38 template<typename T> struct A1 { }; struct
39 A1<Array<int, 17>::type> ax;
H A Ddependent-base-member-init.cpp8 class A1 { class
9 A1(int x) {} function in class:A1
11 template<class C> class B1 : public A1 {
12 B1(C x) : A1(x.x) {}
/external/clang/test/Sema/
H A Dconditional-expr.c87 struct A {int i;} A1; local
88 (void)(1 ? A1 : NULL); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
89 (void)(1 ? NULL : A1); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
90 (void)(1 ? 0 : A1); // expected-error{{incompatible operand types}}
91 (void)(1 ? (void*)0 : A1); // expected-error{{incompatible operand types}}
92 (void)(1 ? A1: (void*)0); // expected-error{{incompatible operand types}}
93 (void)(1 ? A1 : (NULL)); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
/external/llvm/unittests/Support/
H A DValueHandleTest.cpp389 AssertingVH<Value> &A0, AssertingVH<Value> &A1)
392 ToClear[1] = &A1;
402 AssertingVH<Value> A1, A2; local
403 A1 = BitcastV.get();
404 ClearingVH C(BitcastV.get(), A1, A2);
388 ClearingVH(Value *V, AssertingVH<Value> &A0, AssertingVH<Value> &A1) argument
/external/clang/test/Parser/
H A Dcxx-casting.cpp77 ::D<::F> A1; // expected-error{{found '<::' after a template name which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}} local
/external/opencv/cxcore/src/
H A Dcxjacobieigens.cpp106 float *V1 = V, *A1 = A; local
109 for( p = 0; p < n - 1; p++, A1 += n, V1 += n )
116 float *A3, Apq = A1[q], App, Aqq, Aip, Aiq, Vpi, Vqi;
124 App = A1[p];
151 Aip = A1[i];
155 A1[i] = (float) (Aip * c - Aiq * s);
162 Aip = A1[i];
166 A1[i] = (float) (Aip * c - Aiq * s);
171 A1[p] = (float) (App * c2 + Aqq * s2 - a);
173 A1[
223 double *A1 = A, *V1 = V, *A2 = A, *V2 = V; local
[all...]
/external/openssl/crypto/bn/
H A Dbn_prime.c249 BIGNUM *A1, *A1_odd, *check; /* taken from ctx */ local
290 A1 = BN_CTX_get(ctx);
295 /* compute A1 := A - 1 */
296 if (!BN_copy(A1, A))
298 if (!BN_sub_word(A1, 1))
300 if (BN_is_zero(A1))
306 /* write A1 as A1_odd * 2^k */
308 while (!BN_is_bit_set(A1, k))
310 if (!BN_rshift(A1_odd, A1, k))
322 if (!BN_pseudo_rand_range(check, A1))
[all...]
/external/speex/libspeex/
H A Dmath_approx.h156 #define A1 16469 macro
173 sq = MULT16_16_Q13(x, ADD16(A1, MULT16_16_Q13(x, ADD16(A2, MULT16_16_Q13(x, (A3))))));
/external/opencv/cv/src/
H A Dcvrotcalipers.cpp311 float A1 = buf[1]; local
317 float C1 = A1 * points[((int *) buf)[0]].x + points[((int *) buf)[0]].y * B1;
320 float idet = 1.f / (A1 * B2 - A2 * B1);
323 float py = (A1 * C2 - A2 * C1) * idet;
328 out[2] = A1 * buf[2];
/external/openssl/ssl/
H A Dt1_enc.c164 unsigned char A1[EVP_MAX_MD_SIZE]; local
187 if (!HMAC_Final(&ctx,A1,&A1_len))
196 if (!HMAC_Update(&ctx,A1,A1_len))
198 if (!HMAC_Update(&ctx_tmp,A1,A1_len))
217 if (!HMAC_Final(&ctx_tmp,A1,&A1_len)) /* calc the next A1 value */
222 if (!HMAC_Final(&ctx,A1,&A1_len))
224 memcpy(out,A1,olen);
232 OPENSSL_cleanse(A1,sizeof(A1));
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java113 public static class A1 implements Serializable { class in class:ObjectInputStreamTest
135 SerializationTest.verifySelf(new A1(), new SerializableAssert() {
138 assertEquals(5, ((A1) deserialized).b1.i);
959 assertEquals("Incorrectly read the field of A1", a1.name, ((A) m1.get("1")).name);

Completed in 3967 milliseconds

12