Searched defs:B1 (Results 1 - 25 of 100) sorted by path

1234

/external/aac/libSBRenc/src/
H A Dresampler.cpp99 #define B1 0 macro
108 const FIXP_SGL *coeffa; /*! SOS matrix One row/section. Scaled using BQC(). Order of coefficients: B1,B2,A1,A2. B0=A0=1.0 */
405 state0 = input + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]);
441 y = state0 + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]);
/external/arduino/hardware/arduino/cores/arduino/
H A Dbinary.h12 #define B1 1 macro
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttinterp.c6023 FT_Int B1, B2; local
6085 B1 = CUR.zp2.cur[point].y;
6087 B1 = CUR.zp2.cur[point].x;
6101 ( B1 & 63 ) != 0 &&
6103 B1 != B2 )
6111 dx = FT_PIX_ROUND( B1 + dx ) - B1;
6112 dy = FT_PIX_ROUND( B1 + dy ) - B1;
6133 if ( ( B1
6545 FT_Int B1; local
7380 FT_UShort B1, B2; local
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape-complex-thai.cc194 B1, /* Removable descender */ enumerator in enum:thai_below_state_t
201 B1, /* RC */
212 /*B1*/ {{NOP,B1}, {RD, B2}, {NOP, B1}},
/external/chromium_org/third_party/libwebp/dsp/
H A Ddec_neon.c1002 // B1 = in4 | in12
1003 const int16x8_t B1 = local
1007 const int16x8_t C0 = vsraq_n_s16(B1, vqdmulhq_n_s16(B1, kC1), 1);
1008 const int16x8_t C1 = vqdmulhq_n_s16(B1, kC2);
H A Denc_neon.c96 // B1 = in4 | in12
97 const int16x8_t B1 = local
101 const int16x8_t C0 = vsraq_n_s16(B1, vqdmulhq_n_s16(B1, kC1), 1);
102 const int16x8_t C1 = vqdmulhq_n_s16(B1, kC2);
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubeRoot.cpp77 const unsigned int B1 = 715094163; local
81 pt[1]=px[1]/3+B1;
93 const unsigned int B1 = 71509416*5/3;
97 pt[1]=px[1]/5+B1;
/external/chromium_org/third_party/skia/src/core/
H A DSkDistanceFieldGen.cpp257 static void B1(DFData* curr, int width) { function
404 B1(currData, dataWidth);
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsTypes.cpp168 const unsigned int B1 = 715094163; local
172 pt[1] = px[1] / 3 + B1;
/external/chromium_org/v8/test/cctest/
H A Dtest-heap-profiler.cc805 const v8::HeapGraphNode* B1 = local
807 CHECK_NE(NULL, B1);
811 CHECK_NE_SNAPSHOT_OBJECT_ID(0, B1->GetId());
812 CHECK_EQ_SNAPSHOT_OBJECT_ID(B1->GetId(), B2->GetId());
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h246 R_SExpr reduceBranch(Branch &O, R_SExpr C, BasicBlock *B0, BasicBlock *B1) { argument
247 return new (Arena) Branch(O, C, B0, B1, 0, 0); // FIXME: set indices
379 R_SExpr reduceBranch(Branch &O, R_SExpr C, BasicBlock *B0, BasicBlock *B1) { argument
/external/clang/include/clang/Analysis/
H A DProgramPoint.h450 BlockEdge(const CFGBlock *B1, const CFGBlock *B2, const LocationContext *L) argument
451 : ProgramPoint(B1, B2, BlockEdgeKind, L) {
452 assert(B1 && "BlockEdge: source block must be non-null");
/external/clang/lib/CodeGen/
H A DCGExpr.cpp440 llvm::Value *B1 = Builder.CreateXor(Builder.CreateLShr(B0, K47), B0); local
441 return Builder.CreateMul(B1, KMul);
/external/clang/test/CXX/except/except.spec/
H A Dp5-pointers.cpp9 struct B1 : A struct in inherits:A
17 struct D : B1, B2
29 void s4() throw(B1);
33 void (*s8())() throw(B1); // s8 returns a pointer to function with spec
34 void s9(void (*)() throw(B1)); // s9 takes pointer to function with spec
58 void (*t6)() throw(B1);
65 void (*(*t7)())() throw(B1) = &s8; // valid
68 void (*t10)(void (*)() throw(B1)) = &s9; // valid
H A Dp5-virtual.cpp9 struct B1 : A struct in inherits:A
17 struct D : B1, B2
51 virtual void g4() throw(B1); // expected-note {{overridden virtual function is here}}
67 virtual void f4() throw(B1);
68 virtual void f5() throw(B1, B2, int);
/external/clang/test/CXX/special/class.copy/
H A Dp23-cxx11.cpp77 struct B1 { struct
86 template struct CopyAssign<B1>; // expected-note {{here}}
87 template struct MoveAssign<B1>; // expected-note {{here}}
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp44 struct B1 { struct
45 B1();
48 B1 b1; // expected-error {{deleted function}}
/external/clang/test/CXX/special/class.inhctor/
H A Delsewhere.cpp8 struct B1 { struct
9 B1(int);
12 using B1::B1; // expected-error {{using declaration cannot refer to class member}}
18 struct I1 : B1 {
19 using B1::B1; // expected-note {{previous using declaration}}
20 using B1::B1; // expected-error {{redeclaration of using decl}}
30 using B1
[all...]
H A Dp3.cpp3 struct B1 { struct
4 B1(int);
5 B1(int, int);
7 struct D1 : B1 {
8 using B1::B1;
32 template<typename T> struct T1 : B1 {
33 using B1::B1;
H A Dp7.cpp4 struct B1 { struct
5 B1(int); // expected-note {{previous constructor}} expected-note {{conflicting constructor}}
10 struct D1 : B1, B2 {
11 using B1::B1; // expected-note {{inherited here}}
14 struct D2 : B1, B2 {
15 using B1::B1;
23 template<typename T> struct B4 : B3<T>, B1 {
26 using B1
[all...]
/external/clang/test/CodeGen/
H A D2002-05-23-TypeNameCollision.c17 enum bar B1; variable in typeref:enum:bar
H A Dmips64-class-return.cpp11 class B1 { class
14 class D1 : public B1 {
/external/clang/test/CodeGenCXX/
H A Dapple-kext-indirect-virtual-dtor-call.cpp4 // CHECK: [[T1:%.*]] = load void (%struct.B1*)** getelementptr inbounds (void (%struct.B1*)** bitcast ([5 x i8*]* @_ZTV2B1 to void (%struct.B1*)**), i64 2)
5 // CHECK-NEXT: call void [[T1]](%struct.B1* [[T2:%.*]])
7 // CHECK: [[T3:%.*]] = load void (%struct.B1*)** getelementptr inbounds (void (%struct.B1*)** bitcast ([5 x i8*]* @_ZTV2B1 to void (%struct.B1*)**), i64 2)
8 // CHECK-NEXT: call void [[T3]](%struct.B1* [[T4:%.*]])
11 struct B1 { struct
12 virtual ~B1();
[all...]
H A Dbitfield.cpp435 struct B1 { struct in namespace:N7
439 struct B2 : virtual B1 {
H A Dconst-init-cxx11.cpp134 struct B1 { struct in namespace:MemberPtr
144 struct C : B1 {
161 extern constexpr int (D::*da) = &B1::a;
175 extern constexpr int (B1::*ba) = (int(B1::*))&B1::a;
176 extern constexpr int (B1::*bb) = (int(B1::*))&C::b;
179 extern constexpr int (B1::*be) = (int(B1
[all...]

Completed in 1546 milliseconds

1234