Searched refs:A0 (Results 1 - 25 of 38) sorted by relevance

12

/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
H A Dp6.cpp4 struct A0 { struct
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/
H A Dpr5406.c4 typedef struct { char x[3]; } A0; typedef in typeref:struct:__anon3776
11 A0 a3;
/external/clang/INPUTS/
H A Dmacro_pounder_obj.c6 #define A0 a b macro
7 #define A1 A0 A0 A0 A0 A0 A0
H A Dmacro_pounder_fn.c6 #define A0(A, B) A B macro
7 #define A1(A, B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B)
/external/openssl/crypto/bn/asm/
H A Dx86_64-mont.pl701 my @A0=("%r10","%r11");
761 mov %rax,$A0[0] # a[1]*a[0]
763 mov %rdx,$A0[1]
764 mov $A0[0],-24($tptr,$i) # t[1]
766 xor $A0[0],$A0[0]
768 add %rax,$A0[1]
770 adc %rdx,$A0[0]
771 mov $A0[1],-16($tptr,$i) # t[2]
782 xor $A0[
[all...]
H A Darmv4-gf2m.pl163 ($A1,$B1,$A0,$B0,$A1B1,$A0B0)=map("d$_",(18..23));
180 veor $A0,$A0
182 vmov.32 ${A0}[0],r2 @ a0
190 vmov d16,$A0
195 veor d16,$A0,$A1
197 veor $A0,$A0B0,$A1B1
200 veor d0,$A0 @ (a0+a1)�(b0+b1)-a0�b0-a1�b1
H A Dppc64-mont.pl151 $A0="f10"; $A1="f11"; $A2="f12"; $A3="f13";
342 lfd $A0,`$FRAME+64`($sp)
350 fcfid $A0,$A0
363 stfd $A0,8($nap_d) ; save a[j] in double format
373 fmul $T0a,$A0,$ba
374 fmul $T0b,$A0,$bb
378 fmadd $T1a,$A0,$bc,$T1a
379 fmadd $T1b,$A0,$bd,$T1b
464 lfd $A0,`
[all...]
/external/clang/test/CXX/temp/temp.res/temp.dep/
H A Dp3.cpp2 struct A0 { struct
6 template <typename T> struct B0: A0 {
/external/clang/test/SemaTemplate/
H A Dclass-template-spec.cpp55 template<typename T> struct A0;
60 struct A0<void> { struct in namespace:N
67 struct A0 { struct in namespace:N
68 void foo(A0<void>::pointer p = 0);
H A Dinstantiate-method.cpp77 template<class T> struct A0 { operator T*(); }; struct
80 int *a(A0<int> &x0, A1<int> &x1) {
H A Dtemp_class_spec.cpp328 template<typename T, T N, typename U> class A0;
330 template<typename T, T N> class A0<T, N, int> { }; // expected-note{{here}} class
331 template<typename T, T N> class A0<T, N, int>;
332 template<typename T, T N> class A0<T, N, int> { }; // expected-error{{redef}} class
/external/clang/test/CXX/temp/temp.param/
H A Dp9-0x.cpp27 struct A0 { template<typename U> struct B; }; struct in namespace:PR8748
28 template<typename U = int> struct A0::B { };
/external/clang/lib/CodeGen/
H A DCodeGenFunction.h232 template <class T, class A0>
234 typedef typename DominatingValue<A0>::saved_type A0_saved;
238 A0 a0 = DominatingValue<A0>::restore(CGF, a0_saved);
247 template <class T, class A0, class A1>
249 typedef typename DominatingValue<A0>::saved_type A0_saved;
255 A0 a0 = DominatingValue<A0>::restore(CGF, a0_saved);
265 template <class T, class A0, class A1, class A2>
267 typedef typename DominatingValue<A0>
[all...]
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-generated-function-mockers.h810 template <typename R, typename A0>
811 class MockFunction<R(A0)> {
815 MOCK_METHOD1_T(Call, R(A0));
821 template <typename R, typename A0, typename A1>
822 class MockFunction<R(A0, A1)> {
826 MOCK_METHOD2_T(Call, R(A0, A1));
832 template <typename R, typename A0, typename A1, typename A2>
833 class MockFunction<R(A0, A1, A2)> {
837 MOCK_METHOD3_T(Call, R(A0, A1, A2));
843 template <typename R, typename A0, typenam
[all...]
H A Dgmock-generated-actions.h650 template <typename A0>
651 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0>& args) {
653 return impl->template gmock_PerformImpl<A0>(args, get<0>(args),
659 template <typename A0, typename A1>
660 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1>& args) {
662 return impl->template gmock_PerformImpl<A0, A1>(args, get<0>(args),
668 template <typename A0, typename A1, typename A2>
669 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2>& args) {
671 return impl->template gmock_PerformImpl<A0, A1, A2>(args, get<0>(args),
677 template <typename A0, typenam
[all...]
/external/llvm/tools/llvm-ld/
H A DOptimize.cpp56 static cl::alias A0("s", cl::desc("Alias for --strip-all"),
/external/libvpx/vp8/encoder/ppc/
H A Dfdct_altivec.asm58 ;# The two resulting A0..A3 B0..B3 are later combined
66 vsraw v10, v10, v7 ;# v10 = A0 A1 B0 B1
72 vpkuwum v10, v10, v11 ;# v10 = A0 A1 B0 B1 A2 A3 B2 B3
73 vperm \Dst, v10, v10, v5 ;# Dest = A0 B0 A1 B1 A2 B2 A3 B3
/external/llvm/unittests/Support/
H A DValueHandleTest.cpp389 AssertingVH<Value> &A0, AssertingVH<Value> &A1)
391 ToClear[0] = &A0;
388 ClearingVH(Value *V, AssertingVH<Value> &A0, AssertingVH<Value> &A1) argument
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsBaseInfo.h129 case Mips::A0: case Mips::A0_64: case Mips::F4: case Mips::D4_64:
/external/opencv/cxcore/src/
H A Dcxmathfuncs.cpp912 A0 = .13369713757180123244806654839424e-2 / EXPPOLY_32F_A0; local
915 #define EXPPOLY(x) (((((A0*(x) + A1)*(x) + A2)*(x) + A3)*(x) + A4)*(x) + A5)
1372 A0 = 0.3333333333333333333333333, local
1377 #define LOGPOLY(x,k) ((x)+=shift[k],((A0*(x) + A1)*(x) + A2)*(x))
1473 A0 = -.1666666666666666666666666666666666666666, local
1482 ((A0*(xq) + A2)*(xq) + A4)*(xq) + ((A1*(xq) + A3)*(xq) + A5)*(x))
/external/icu4c/data/sprep/
H A Drfc4013.txt422 00A0; ; PROHIBITED
552 00A0; 0020; MAP
H A Drfc3491.txt602 01A0; 01A1; MAP
702 03A0; 03C0; MAP
815 04A0; 04A1; MAP
1835 00A0; ; PROHIBITED
H A Drfc3530mixp.txt454 00A0; ; PROHIBITED
H A Drfc3722.txt602 01A0; 01A1; MAP
702 03A0; 03C0; MAP
815 04A0; 04A1; MAP
1841 00A0; ; PROHIBITED
/external/llvm/lib/Target/Mips/Disassembler/
H A DMipsDisassembler.cpp98 Mips::A0, Mips::A1, Mips::A2, Mips::A3,

Completed in 3118 milliseconds

12