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

1 2

  /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/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
39 LVM_INT16 A0;
49 * Biquad with coefficients A0, A1 and B1 coefficients
54 LVM_INT16 A0;
  /cts/tools/signature-tools/test/signature/comparator/
AnnotationCompareTest.java 34 CompilationUnit A0 = new CompilationUnit("a.A0",
36 "public @interface A0 {" +
45 "@A0 " +
49 "@A0 " +
51 IApi fromApi = convert(A0, A1, AnnotBDefault);
52 IApi toApi = convert(A0, A1, AnnotB);
58 CompilationUnit A0 = new CompilationUnit("a.A0",
60 "public @interface A0 {"
    [all...]
ClassCompareTest.java 146 CompilationUnit A0 = new CompilationUnit("a.A",
152 IApi fromApi = convert(A0);
169 CompilationUnit A0 = new CompilationUnit("a.A",
175 IApi fromApi = convert(I, B, A0);
189 CompilationUnit A0 = new CompilationUnit("a.A",
197 IApi fromApi = convert(I, B, A0);
205 static class A0<E extends Number> extends B<E> implements I<E>{}
210 ParameterizedType sC = (ParameterizedType)A0.class.getGenericSuperclass();
  /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/clang/test/CXX/temp/temp.res/temp.dep/
p3.cpp 2 struct A0 {
6 template <typename T> struct B0: A0 {
  /external/arduino/hardware/arduino/cores/arduino/
WProgram.h 34 const static uint8_t A0 = 54;
51 const static uint8_t A0 = 14;
  /external/clang/test/SemaTemplate/
class-template-spec.cpp 55 template<typename T> struct A0;
60 struct A0<void> {
67 struct A0 {
68 void foo(A0<void>::pointer p = 0);
instantiate-method.cpp 77 template<class T> struct A0 { operator T*(); };
80 int *a(A0<int> &x0, A1<int> &x1) {
temp_class_spec.cpp 328 template<typename T, T N, typename U> class A0;
330 template<typename T, T N> class A0<T, N, int> { }; // expected-note{{here}}
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}}
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_CalcCoef.c 60 /* a0 = (0.5 + b2) / 2 */
102 LVM_INT32 A0;
142 factor = 0x7fff; /* Initialise to 1.0 for the a0 coefficient */
153 * Calculate the B1 and A0 coefficients
156 A0 = ((B1 >> 16) * (CosErr >> 10)) >> 6; /* Temporary storage for (0.5 - b2/2) * coserr(t0) */
157 B1 -= A0; /* B1 = (0.5 - b2/2) * (1 - coserr(t0)) */
158 A0 = (0x40000000 + B2) >> 1; /* A0 = (0.5 + b2) */
163 pCoefficients->A0 = A0;
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
BIQUAD.h 47 LVM_INT16 A0; /* a0 */
56 LVM_INT32 A0; /* a0 */
65 LVM_INT16 A0; /* a0 */
72 LVM_INT32 A0; /* a0 */
80 LVM_INT16 A0; /* a0 */
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Control.c 452 /* a0 = (0.5 + b2) / 2 */
477 LVM_INT32 A0;
520 factor = 0x7fff; /* Initialise to 1.0 for the a0 coefficient */
532 A0 = (0x40000000 + B2) >> 1; /* A0 = (0.5 + b2) / 2 */
537 pCoefficients->A0 = (LVM_INT16)(A0>>16);
567 /* a0 = (0.5 + b2) / 2 */
600 LVM_INT32 A0;
    [all...]
  /cts/tools/dex-tools/test/dex/reader/
DexFileReaderTests.java 162 static final JavaSource A0 = new JavaSource("A0",
166 "public @interface A0 {}"
174 DexFile dexFile = javaToDexUtil.getFrom(A0);
177 DexClass A0 = getClass(dexFile, "LA0;");
178 assertPublic(A0);
179 assertEquals(2, A0.getAnnotations().size());
185 "@A0 " +
195 DexFile dexFile = javaToDexUtil.getFrom(T3, A0);
204 DexClass A0 = getClass(dexFile, "LA0;")
    [all...]
  /bionic/libc/arch-mips/include/machine/
regnum.h 40 #define A0 4
  /development/ndk/platforms/android-9/arch-mips/include/machine/
regnum.h 40 #define A0 4
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/machine/
regnum.h 40 #define A0 4
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/machine/
regnum.h 40 #define A0 4
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 157 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
162 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
170 m.add(HugeF.A0);
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 912 A0 = .13369713757180123244806654839424e-2 / EXPPOLY_32F_A0;
915 #define EXPPOLY(x) (((((A0*(x) + A1)*(x) + A2)*(x) + A3)*(x) + A4)*(x) + A5)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 217 const Argument *A0 = AI++;
220 if (PointerType *PTy = dyn_cast<PointerType>(A0->getType())) {
253 if (PointerType *PTy = dyn_cast<PointerType>(A0->getType()))
    [all...]

Completed in 1375 milliseconds

1 2