HomeSort by relevance Sort by last modified time
    Searched refs:B1 (Results 26 - 50 of 121) sorted by null

12 3 4 5

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
BP_1I_D16F32Cll_TRC_WRA_01_Init.c 60 pBiquadState->coefs[2] = pCoef->B1;
BP_1I_D32F32Cll_TRC_WRA_02_Init.c 51 pBiquadState->coefs[2]=pCoef->B1;
LVM_FO_HPF.c 35 /* B1 = (tan(w/2) - 1 ) / (tan(w/2) + 1 ) */
36 /* A0 = (1 - B1) / 2 */
39 /* The value of B1 is then calculated directly from the value w by a */
91 pCoeffs->B1=-Y; /* Store -B1 in filter structure instead of B1!*/
92 /* A0=(1-B1)/2= B1/2 - 0.5*/
93 Y=Y>>1; /* A0=Y=B1/2*/
94 Y=Y-0x40000000; /* A0=Y=(B1/2 - 0.5)*
    [all...]
LVM_FO_LPF.c 35 /* B1 = (tan(w/2) - 1 ) / (tan(w/2) + 1 ) */
36 /* A0 = (1 + B1) / 2 */
39 /* The value of B1 is then calculated directly from the value w by a */
89 pCoeffs->B1=-Y; // Store -B1 in filter structure instead of B1!
90 // A0=(1+B1)/2= B1/2 + 0.5
91 Y=Y>>1; // A0=Y=B1/2
92 Y=Y+0x40000000; // A0=Y=(B1/2 + 0.5
    [all...]
PK_2I_D32F32CllGss_TRC_WRA_01_Init.c 33 pBiquadState->coefs[2]=pCoef->B1;
PK_2I_D32F32CssGss_TRC_WRA_01_Init.c 32 pBiquadState->coefs[2]=pCoef->B1;
FO_1I_D16F16Css_TRC_WRA_01_Init.c 53 temp=pCoef->B1;
FO_1I_D32F32Cll_TRC_WRA_01_Init.c 52 temp=pCoef->B1;
FO_2I_D16F32Css_LShx_TRC_WRA_01_Init.c 52 temp=pCoef->B1;
BQ_1I_D16F16Css_TRC_WRA_01_Init.c 56 temp=pCoef->B1;
  /external/v8/test/mjsunit/
debug-breakpoints.js 45 assertEquals("() {[B0]a=1;[B1]b=2}", Debug.showBreakPoints(f));
47 assertEquals("() {[B0]a=1;[B1]b=2[B2]}", Debug.showBreakPoints(f));
49 assertEquals("() {[B0]a=1;b=2[B1]}", Debug.showBreakPoints(f));
88 // [B1]b=2;
91 assertTrue(Debug.showBreakPoints(g).indexOf("[B1]b=2;") > 0);
95 // [B1]b=2;
98 assertTrue(Debug.showBreakPoints(g).indexOf("[B1]b=2;") > 0);
104 // }[B1]
106 assertTrue(Debug.showBreakPoints(g).indexOf("[B1]}") > 0);
114 assertTrue(Debug.showBreakPoints(g).indexOf("[B1]") < 0)
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_CalcCoef.c 59 /* b1 = (0.5 - b2) * (1 - coserr(t0)) */
103 LVM_INT32 B1;
153 * Calculate the B1 and A0 coefficients
155 B1 = (0x40000000 - B2); /* B1 = (0.5 - b2/2) */
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)) */
164 pCoefficients->B1 = B1;
    [all...]
  /external/llvm/unittests/Support/
Casting.cpp 73 extern bar &B1;
74 bar &B1 = B;
77 const bar &B3 = B1;
81 EXPECT_TRUE(isa<foo>(B1));
88 foo &F1 = cast<foo>(B1);
100 foo *F8 = B1.baz();
113 foo *F15 = B1.caz();
126 foo *F5 = B1.daz();
139 foo *F5 = B1.naz();
147 //foo &F23 = cast_or_null<foo>(B1);
    [all...]
  /external/webkit/LayoutTests/fast/dom/TreeWalker/script-tests/
traversal-skip-most.js 5 testElement.innerHTML='<div id="A1"><div id="B1" class="keep"></div><div id="B2">this text matters</div><div id="B3" class="keep"></div></div>';
18 shouldBe("walker.firstChild(); walker.currentNode.id", "'B1'");
24 shouldBe("walker.previousSibling(); walker.currentNode.id", "'B1'");
acceptNode-filter.js 6 testElement.innerHTML='<div id="A1"><div id="B1"></div><div id="B2"></div></div>';
11 if (node.id == "B1")
25 if (node.id == "B1")
38 shouldBe("walker.nextNode(); walker.currentNode.id", "'B1'");
44 shouldBe("walker.nextNode(); walker.currentNode.id", "'B1'");
68 shouldBe("walker.nextNode(); walker.currentNode.id", "'B1'");
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 59 template<class R,class B1>
61 f1(R(a)(B1));
  /external/clang/test/SemaCXX/
conversion-delete-expr.cpp 18 struct B1 {
22 struct D1 : B1 {
warn-enum-compare.cpp 10 enum Baz {B1, B2, B3};
14 enum Baz {B1, B2, B3};
18 using name1::B1;
40 while (B1 == name1::B2);
41 while (B2 == name2::B1);
55 while ((B1) == (name1::B2));
56 while ((B2) == (name2::B1));
65 while ((((((B1))))) == (((name1::B2))));
66 while (B2 == ((((((name2::B1)))))));
68 while (B1 == B2); // expected-warning {{comparison of two values with different enumeration types ('name1:: (…)
    [all...]
warn-reorder-ctor-initialization.cpp 61 struct B1 {
62 B1();
65 struct F : public A1, public B1, private virtual V {
  /external/chromium/base/
bind_internal_win.h 44 typedef X1 B1;
53 typedef X1 B1;
62 typedef X1 B1;
72 typedef X1 B1;
82 typedef X1 B1;
93 typedef X1 B1;
104 typedef X1 B1;
116 typedef X1 B1;
129 typedef X1 B1;
143 typedef X1 B1;
    [all...]
  /external/clang/test/CXX/special/class.dtor/
p5-0x.cpp 44 struct B1 {
45 B1();
48 B1 b1; // expected-error {{deleted function}} variable
  /external/clang/test/CodeGenCXX/
copy-assign-synthesis.cpp 7 B() : B1(3.14), B2(3.15), auB2(3.16) {}
8 float B1;
11 printf("B1 = %f B2 = %f auB1 = %f\n", B1, B2, auB1);
ptr-to-datamember.cpp 21 struct B1 : virtual V{
26 class A : public B, public B1 {
89 printf("%d\n", &A::B1::iB1);
92 printf("%d\n", &A::B1::iV);
94 printf("%d\n", &A::B1::V::iV);
  /dalvik/tests/091-deep-interface-hierarchy/src/
Main.java 28 interface B1 extends A1, A2, A3, A4, A5 {}
34 interface C1 extends B1, B2, B3, B4, B5 {}
35 interface C2 extends B1, B2, B3, B4, B5 {}
36 interface C3 extends B1, B2, B3, B4, B5 {}
37 interface C4 extends B1, B2, B3, B4, B5 {}
38 interface C5 extends B1, B2, B3, B4, B5 {}
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
BIQUAD.h 49 LVM_INT16 B1; /* -b1! */
58 LVM_INT32 B1; /* -b1! */
66 LVM_INT16 B1; /* -b1! */
73 LVM_INT32 B1; /* -b1! */
81 LVM_INT16 B1; /* -b1! */
    [all...]

Completed in 242 milliseconds

12 3 4 5