HomeSort by relevance Sort by last modified time
    Searched refs:Base (Results 126 - 150 of 931) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 15 BitTreeDecoder[] m_LowCoder = new BitTreeDecoder[Base.kNumPosStatesMax];
16 BitTreeDecoder[] m_MidCoder = new BitTreeDecoder[Base.kNumPosStatesMax];
17 BitTreeDecoder m_HighCoder = new BitTreeDecoder(Base.kNumHighLenBits);
24 m_LowCoder[posState] = new BitTreeDecoder(Base.kNumLowLenBits);
25 m_MidCoder[posState] = new BitTreeDecoder(Base.kNumMidLenBits);
48 uint symbol = Base.kNumLowLenSymbols;
53 symbol += Base.kNumMidLenSymbols;
138 BitDecoder[] m_IsMatchDecoders = new BitDecoder[Base.kNumStates << Base.kNumPosStatesBitsMax];
139 BitDecoder[] m_IsRepDecoders = new BitDecoder[Base.kNumStates];
    [all...]
LzmaEncoder.cs 53 Base.State _state = new Base.State();
55 UInt32[] _repDistances = new UInt32[Base.kNumRepDistances];
61 for (UInt32 i = 0; i < Base.kNumRepDistances; i++)
171 RangeCoder.BitTreeEncoder[] _lowCoder = new RangeCoder.BitTreeEncoder[Base.kNumPosStatesEncodingMax];
172 RangeCoder.BitTreeEncoder[] _midCoder = new RangeCoder.BitTreeEncoder[Base.kNumPosStatesEncodingMax];
173 RangeCoder.BitTreeEncoder _highCoder = new RangeCoder.BitTreeEncoder(Base.kNumHighLenBits);
177 for (UInt32 posState = 0; posState < Base.kNumPosStatesEncodingMax; posState++)
179 _lowCoder[posState] = new RangeCoder.BitTreeEncoder(Base.kNumLowLenBits);
180 _midCoder[posState] = new RangeCoder.BitTreeEncoder(Base.kNumMidLenBits);
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_vs.c 213 rc_init(&compiler.Base);
215 DBG_ON(r300, DBG_VP) ? compiler.Base.Debug |= RC_DBG_LOG : 0;
216 DBG_ON(r300, DBG_P_STAT) ? compiler.Base.Debug |= RC_DBG_STATS : 0;
219 compiler.Base.is_r500 = r300->screen->caps.is_r500;
220 compiler.Base.disable_optimizations = DBG_ON(r300, DBG_NO_OPT);
221 compiler.Base.has_half_swizzles = FALSE;
222 compiler.Base.has_presub = FALSE;
223 compiler.Base.has_omod = FALSE;
224 compiler.Base.max_temp_regs = 32;
225 compiler.Base.max_constants = 256
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp 9 struct Base { };
10 struct Derived : Base { };
29 Base&& base0 = xvalue<Base>();
30 Base&& base1 = xvalue<Derived>();
34 Base&& base2 = prvalue<Base>();
35 Base&& base3 = prvalue<Derived>();
49 Base&& base4 = ConvertsTo<Base&&>()
    [all...]
  /external/chromium_org/third_party/WebKit/public/testing/
WebTestProxy.h 263 template<class Base, typename T>
264 class WebTestProxy : public Base, public WebTestProxyBase {
267 : Base(t)
293 Base::setWindowRect(rect);
298 Base::show(policy);
303 Base::didAutoResize(newSize);
308 Base::postAccessibilityNotification(object, notification);
313 // Don't forward this call to Base because we don't want to do a real drag-and-drop.
318 return Base::shouldBeginEditing(range);
323 return Base::shouldEndEditing(range)
    [all...]
  /external/clang/test/CXX/class/class.friend/
p1.cpp 9 struct Base {
16 struct Derived : public Base {
53 friend int Base::typedeffed_member(); // okay: should look through typedef
  /external/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.h 78 bool SelectADDRri_imp(SDNode *OpNode, SDValue Addr, SDValue &Base,
80 bool SelectADDRri(SDNode *OpNode, SDValue Addr, SDValue &Base,
82 bool SelectADDRri64(SDNode *OpNode, SDValue Addr, SDValue &Base,
85 bool SelectADDRsi_imp(SDNode *OpNode, SDValue Addr, SDValue &Base,
87 bool SelectADDRsi(SDNode *OpNode, SDValue Addr, SDValue &Base,
89 bool SelectADDRsi64(SDNode *OpNode, SDValue Addr, SDValue &Base,
  /external/clang/test/SemaCXX/
direct-initializer.cpp 38 struct Base {
42 struct Derived : Base {
virtual-override.cpp 39 virtual b* f(); // expected-error{{invalid covariant return for virtual function: 'T3::a' is a private base class of 'T3::b'}}
55 virtual b* f(); // expected-error{{return type of virtual function 'f' is not covariant with the return type of the function it overrides (ambiguous conversion from derived class 'T4::b' to base class 'T4::a':\n\
144 template <typename Base>
145 struct Foo : Base {
157 template<typename Base>
158 struct Foo2 : Base {
185 class Base {};
188 class Derived : public Base {};
192 virtual Base* Method();
204 class Base {};
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseCwiseUnaryOp.h 38 typedef typename CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::MatrixTypeIterator Base;
42 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
46 { Base::operator++(); return *this; }
48 EIGEN_STRONG_INLINE typename CwiseUnaryOpImpl::Scalar value() const { return m_functor(Base::value()); }
61 typedef typename CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::MatrixTypeReverseIterator Base;
65 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
69 { Base::operator--(); return *this; }
71 EIGEN_STRONG_INLINE typename CwiseUnaryOpImpl::Scalar value() const { return m_functor(Base::value()); }
102 typedef typename CwiseUnaryViewImpl<ViewOp,MatrixType,Sparse>::MatrixTypeIterator Base;
106 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor()
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh-alloca-1.cpp 19 class Base {};
21 struct A : virtual public Base
eh-inline-2.cpp 19 class Base {};
21 struct A : virtual public Base
  /ndk/tests/device/test-stlport_static-exception/jni/
eh-alloca-1.cpp 19 class Base {};
21 struct A : virtual public Base
eh-inline-2.cpp 19 class Base {};
21 struct A : virtual public Base
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGListPropertyTearOff.h 32 typedef SVGListProperty<PropertyType> Base;
41 using Base::m_role;
42 using Base::m_values;
43 using Base::m_wrappers;
85 Base::clearValuesAndWrappers(es);
90 return Base::initializeValuesAndWrappers(passNewItem, es);
95 return Base::getItemValuesAndWrappers(m_animatedProperty.get(), index, es);
100 return Base::insertItemBeforeValuesAndWrappers(passNewItem, index, es);
105 return Base::replaceItemValuesAndWrappers(passNewItem, index, es);
110 return Base::removeItemValuesAndWrappers(m_animatedProperty.get(), index, es)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r3xx_fragprog.c 56 for (rci = c->Base.Program.Instructions.Next; rci != &c->Base.Program.Instructions; rci = rci->Next) {
83 int is_r500 = c->Base.is_r500;
84 int opt = !c->Base.disable_optimizations;
138 {"dump machine code", 0, is_r500 && (c->Base.Debug & RC_DBG_LOG), r500FragmentProgramDump, NULL},
139 {"dump machine code", 0, !is_r500 && (c->Base.Debug & RC_DBG_LOG), r300FragmentProgramDump, NULL},
143 c->Base.type = RC_FRAGMENT_PROGRAM;
144 c->Base.SwizzleCaps = c->Base.is_r500 ? &r500_swizzle_caps : &r300_swizzle_caps;
146 rc_run_compiler(&c->Base, fs_list)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
programopt.c 52 const GLuint origLen = vprog->Base.NumInstructions;
69 mvpRef[i] = _mesa_add_state_reference(vprog->Base.Parameters,
103 _mesa_copy_instructions (newInst + 4, vprog->Base.Instructions, origLen);
106 _mesa_free_instructions(vprog->Base.Instructions, origLen);
109 vprog->Base.Instructions = newInst;
110 vprog->Base.NumInstructions = newLen;
111 vprog->Base.InputsRead |= VERT_BIT_POS;
112 vprog->Base.OutputsWritten |= BITFIELD64_BIT(VERT_RESULT_HPOS);
120 const GLuint origLen = vprog->Base.NumInstructions;
138 mvpRef[i] = _mesa_add_state_reference(vprog->Base.Parameters
    [all...]
  /external/clang/test/CXX/except/except.spec/
p14.cpp 13 struct X2 : public X0, public X1 { }; // expected-error 2{{exception specification of overriding function is more lax than base version}}
106 struct Base {
107 virtual ~Base() {}
110 struct Derived : Base {
118 struct Base {
119 Base(X<0>) noexcept(true);
120 Base(X<1>) noexcept(false);
121 Base(X<2>) throw(X<2>);
122 template<typename T> Base(T) throw(T);
127 struct Derived : Base, Throw<X<3>>
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r3xx_fragprog.c 56 for (rci = c->Base.Program.Instructions.Next; rci != &c->Base.Program.Instructions; rci = rci->Next) {
83 int is_r500 = c->Base.is_r500;
84 int opt = !c->Base.disable_optimizations;
138 {"dump machine code", 0, is_r500 && (c->Base.Debug & RC_DBG_LOG), r500FragmentProgramDump, NULL},
139 {"dump machine code", 0, !is_r500 && (c->Base.Debug & RC_DBG_LOG), r300FragmentProgramDump, NULL},
143 c->Base.type = RC_FRAGMENT_PROGRAM;
144 c->Base.SwizzleCaps = c->Base.is_r500 ? &r500_swizzle_caps : &r300_swizzle_caps;
146 rc_run_compiler(&c->Base, fs_list)
    [all...]
  /external/mesa3d/src/mesa/program/
programopt.c 52 const GLuint origLen = vprog->Base.NumInstructions;
69 mvpRef[i] = _mesa_add_state_reference(vprog->Base.Parameters,
103 _mesa_copy_instructions (newInst + 4, vprog->Base.Instructions, origLen);
106 _mesa_free_instructions(vprog->Base.Instructions, origLen);
109 vprog->Base.Instructions = newInst;
110 vprog->Base.NumInstructions = newLen;
111 vprog->Base.InputsRead |= VERT_BIT_POS;
112 vprog->Base.OutputsWritten |= BITFIELD64_BIT(VERT_RESULT_HPOS);
120 const GLuint origLen = vprog->Base.NumInstructions;
138 mvpRef[i] = _mesa_add_state_reference(vprog->Base.Parameters
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 107 /// @brief Abstract base class for all Nodes.
267 basic_collection_iterator() : Base(0) {}
268 basic_collection_iterator(BaseT *B) : Base(B) {}
271 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
272 return Base->CurrentEntry;
276 assert(Base && Base->CurrentEntry &&
278 return *Base->CurrentEntry;
282 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!")
    [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 288 * \brief The base class for the direct and incomplete LU factorization of SuperLU
482 typedef SuperLUBase<_MatrixType,SuperLU> Base;
484 typedef typename Base::Scalar Scalar;
485 typedef typename Base::RealScalar RealScalar;
486 typedef typename Base::Index Index;
487 typedef typename Base::IntRowVectorType IntRowVectorType;
488 typedef typename Base::IntColVectorType IntColVectorType;
489 typedef typename Base::LUMatrixType LUMatrixType;
495 SuperLU() : Base() { init(); }
497 SuperLU(const MatrixType& matrix) : Base()
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 27 // base+displacement
30 // base+displacement+index for load and store operands
33 // base+displacement+index for load address operands
36 // base+displacement+index+ADJDYNALLOC
55 // Base + Disp + Index + (IncludesDynAlloc ? ADJDYNALLOC : 0)
56 SDValue Base;
62 : Form(form), DR(dr), Base(), Disp(0), Index(),
74 errs() << " Base ";
75 if (Base.getNode() != 0)
76 Base.getNode()->dump()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_fbo.c 93 strb->Base.Format = st_pipe_format_to_mesa_format(format);
95 size = _mesa_format_image_size(strb->Base.Format, width, height, 1);
121 strb->Base.Width = width;
122 strb->Base.Height = height;
123 strb->Base._BaseFormat = _mesa_base_fbo_format(ctx, internalFormat);
174 strb->Base.Format = st_pipe_format_to_mesa_format(format);
194 else if (strb->Base.Name != 0) {
261 _mesa_init_renderbuffer(&strb->Base, name);
262 strb->Base.Delete = st_renderbuffer_delete;
263 strb->Base.AllocStorage = st_renderbuffer_alloc_storage
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_fbo.c 93 strb->Base.Format = st_pipe_format_to_mesa_format(format);
95 size = _mesa_format_image_size(strb->Base.Format, width, height, 1);
121 strb->Base.Width = width;
122 strb->Base.Height = height;
123 strb->Base._BaseFormat = _mesa_base_fbo_format(ctx, internalFormat);
174 strb->Base.Format = st_pipe_format_to_mesa_format(format);
194 else if (strb->Base.Name != 0) {
261 _mesa_init_renderbuffer(&strb->Base, name);
262 strb->Base.Delete = st_renderbuffer_delete;
263 strb->Base.AllocStorage = st_renderbuffer_alloc_storage
    [all...]

Completed in 453 milliseconds

1 2 3 4 56 7 8 91011>>