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

  /frameworks/base/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();
  /frameworks/base/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/base/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...]
  /hardware/qcom/media/mm-video/vidc/vdec/inc/
frameparser.h 47 A0,
  /frameworks/base/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...]

Completed in 552 milliseconds