Searched defs:A0 (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DFilters.h34 * Biquad with coefficients A0, A1, A2, B1 and B2 coefficients
39 LVM_INT16 A0; member in struct:__anon275
49 * Biquad with coefficients A0, A1 and B1 coefficients
54 LVM_INT16 A0; member in struct:__anon276
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
H A DBIQUAD.h47 LVM_INT16 A0; /* a0 */ member in struct:__anon250
56 LVM_INT32 A0; /* a0 */ member in struct:__anon251
65 LVM_INT16 A0; /* a0 */ member in struct:__anon252
72 LVM_INT32 A0; /* a0 */ member in struct:__anon253
80 LVM_INT16 A0; /* a0 */ member in struct:__anon254
88 LVM_INT16 A0; /* a0 */ member in struct:__anon255
95 LVM_INT32 A0; /* a0 */ member in struct:__anon256
103 LVM_INT16 A0; /* a0 */ member in struct:__anon257
111 LVM_INT32 A0; /* a0 */ member in struct:__anon258
/frameworks/av/media/libeffects/lvm/lib/Eq/src/
H A DLVEQNB_CalcCoef.c102 LVM_INT32 A0; local
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;
233 LVM_INT32 A0; local
285 A0
[all...]
/frameworks/av/media/libstagefright/foundation/tests/
H A DFlagged_test.cpp43 struct A0 { }; struct in class:android::FlaggedTest
45 struct A_A0 : public A0 { };
53 // struct inheriting from A0
54 struct BB_A0 : public A0 {
59 // struct inheriting from struct inheriting A0
74 struct WBBA0_A0 : public A0 {
78 struct WBB_A0 : public A0 {
86 struct WBBAA0_A0 : public A0 {
90 struct WWBBA0_A0 : public A0 {
101 static_assert(sizeof(A0)
[all...]
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
H A DLVPSA_Control.c477 LVM_INT32 A0; local
532 A0 = (0x40000000 + B2) >> 1; /* A0 = (0.5 + b2) / 2 */
537 pCoefficients->A0 = (LVM_INT16)(A0>>16);
600 LVM_INT32 A0; local
653 * Calculate the B1 and A0 coefficients
656 A0 = ((B1 >> 16) * (CosErr >> 10)) >> 6; /* Temporary storage for (0.5 - b2) * coserr(t0) */
657 B1 -= A0; /* B1 = (0.5 - b2) * (1 - coserr(t0)) */
658 A0
[all...]

Completed in 102 milliseconds