HomeSort by relevance Sort by last modified time
    Searched refs:Base (Results 76 - 100 of 914) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/eigen/Eigen/src/SparseCore/
SparseTranspose.h 36 typedef typename _MatrixTypeNested::InnerIterator Base;
41 : Base(trans.derived().nestedExpression(), outer)
43 typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); }
44 typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); }
50 typedef typename _MatrixTypeNested::ReverseInnerIterator Base;
55 : Base(xpr.derived().nestedExpression(), outer)
57 typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); }
58 typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); }
  /external/eigen/Eigen/src/misc/
Kernel.h 41 typedef ReturnByValue<kernel_retval_base> Base;
42 typedef typename Base::Index Index;
72 typedef Eigen::internal::kernel_retval_base<DecompositionType> Base; \
73 using Base::dec; \
74 using Base::rank; \
75 using Base::rows; \
76 using Base::cols; \
77 kernel_retval(const DecompositionType& dec) : Base(dec) {}
Image.h 40 typedef ReturnByValue<image_retval_base> Base;
41 typedef typename Base::Index Index;
73 typedef Eigen::internal::image_retval_base<DecompositionType> Base; \
74 using Base::dec; \
75 using Base::originalMatrix; \
76 using Base::rank; \
77 using Base::rows; \
78 using Base::cols; \
80 : Base(dec, originalMatrix) {}
Solve.h 37 typedef ReturnByValue<solve_retval_base> Base;
38 typedef typename Base::Index Index;
66 typedef Eigen::internal::solve_retval_base<DecompositionType,Rhs> Base; \
67 using Base::dec; \
68 using Base::rhs; \
69 using Base::rows; \
70 using Base::cols; \
72 : Base(dec, rhs) {}
  /external/mesa3d/src/mesa/state_tracker/
st_debug.c 94 if (st->vp->Base.Base.Parameters)
95 _mesa_print_parameter_list(st->vp->Base.Base.Parameters);
98 if (st->fp->Base.Base.Parameters)
99 _mesa_print_parameter_list(st->fp->Base.Base.Parameters);
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p8.cpp 70 template <class T> struct Base {
71 typedef Base type;
75 template <class T> struct Derived : Base<T> {
78 using Base<T>::foo; // expected-note {{previous using decl}}
79 using Base<T>::type::foo; //expected-error {{redeclaration of using decl}}
  /external/clang/test/SemaCXX/
composite-pointer-type.cpp 3 class Base { };
4 class Derived1 : public Base { };
5 class Derived2 : public Base { };
7 void f0(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
18 void f1(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
  /external/clang/test/SemaTemplate/
member-access-ambig.cpp 14 class Base
20 class Derived1 : public Base { };
22 class Derived2 : public Base { };
40 typedef A<Derived> Base;
41 using Base::member;
57 S<A>().f(); // ok, &T::X is 'int (A::*)', not 'int *', even though T is a base class
member-access-expr.cpp 4 x.Base::f0();
7 struct Base {
11 struct X0 : Base {
12 typedef Base CrazyBase;
26 call_f0_through_typedef<Base>(x0);
38 struct X1 : Base, OtherBase {
43 call_f0_through_typedef2<Base>(x0);
45 call_f0_through_typedef2<Base>(x1); // expected-note{{instantiation}}
114 struct Base {
118 template <class T> struct Foo : Base {
    [all...]
typo-dependent-name.cpp 5 struct Base {
  /external/clang/include/clang/AST/
VTTBuilder.h 34 VTTVTable(const CXXRecordDecl *Base, CharUnits BaseOffset, bool BaseIsVirtual)
35 : BaseAndIsVirtual(Base, BaseIsVirtual), BaseOffset(BaseOffset) {}
36 VTTVTable(BaseSubobject Base, bool BaseIsVirtual)
37 : BaseAndIsVirtual(Base.getBase(), BaseIsVirtual),
38 BaseOffset(Base.getBaseOffset()) {}
102 void AddVTablePointer(BaseSubobject Base, uint64_t VTableIndex,
105 /// \brief Lay out the secondary VTTs of the given base subobject.
106 void LayoutSecondaryVTTs(BaseSubobject Base);
108 /// \brief Lay out the secondary virtual pointers for the given base
111 /// \param BaseIsMorallyVirtual whether the base subobject is a virtual bas
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 4 import SevenZip.Compression.LZMA.Base;
13 BitTreeDecoder[] m_LowCoder = new BitTreeDecoder[Base.kNumPosStatesMax];
14 BitTreeDecoder[] m_MidCoder = new BitTreeDecoder[Base.kNumPosStatesMax];
15 BitTreeDecoder m_HighCoder = new BitTreeDecoder(Base.kNumHighLenBits);
22 m_LowCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumLowLenBits);
23 m_MidCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumMidLenBits);
42 int symbol = Base.kNumLowLenSymbols;
46 symbol += Base.kNumMidLenSymbols + m_HighCoder.Decode(rangeDecoder);
126 short[] m_IsMatchDecoders = new short[Base.kNumStates << Base.kNumPosStatesBitsMax];
    [all...]
  /external/eigen/Eigen/src/Core/
Matrix.h 132 /** \brief Base class typedef.
135 typedef PlainObjectBase<Matrix> Base;
141 typedef typename Base::PlainObject PlainObject;
143 using Base::base;
144 using Base::coeffRef;
156 return Base::_set(other);
172 return Base::_set(other);
184 return Base::operator=(other);
190 return Base::operator=(func)
    [all...]
Array.h 47 typedef PlainObjectBase<Array> Base;
51 typedef typename Base::PlainObject PlainObject;
57 using Base::m_storage;
61 using Base::base;
62 using Base::coeff;
63 using Base::coeffRef;
67 * using Base::operator=;
74 return Base::operator=(other);
89 return Base::_set(other)
    [all...]
ArrayBase.h 20 * \brief Base class for all 1D and 2D array, and related expressions
30 * This class is the base that is inherited by all array expression types.
44 /** The base class for a given storage type. */
58 typedef DenseBase<Derived> Base;
59 using Base::RowsAtCompileTime;
60 using Base::ColsAtCompileTime;
61 using Base::SizeAtCompileTime;
62 using Base::MaxRowsAtCompileTime;
63 using Base::MaxColsAtCompileTime;
64 using Base::MaxSizeAtCompileTime
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedSelfAdjointEigenSolver.h 50 typedef SelfAdjointEigenSolver<_MatrixType> Base;
53 typedef typename Base::Index Index;
63 GeneralizedSelfAdjointEigenSolver() : Base() {}
78 : Base(size)
109 : Base(matA.cols())
189 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly );
193 cholB.matrixU().solveInPlace(Base::m_eivec);
202 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly);
206 cholB.matrixU().solveInPlace(Base::m_eivec);
215 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
dtlstransport.h 31 #include "talk/p2p/base/dtlstransportchannel.h"
32 #include "talk/p2p/base/transport.h"
42 // Base should be a descendant of cricket::Transport
43 template<class Base>
44 class DtlsTransport : public Base {
51 : Base(signaling_thread, worker_thread, content_name, allocator),
57 Base::DestroyAllChannels();
73 Base::local_description()->identity_fingerprint.get();
103 // Apply the description in the base class.
104 return Base::ApplyLocalTransportDescription_w(channel, error_desc)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_buffer_objects.h 40 struct gl_buffer_object Base;
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_parameter_layout.c 39 _mesa_combine_swizzles(unsigned base, unsigned applied)
47 swiz |= ((s <= SWIZZLE_W) ? GET_SWZ(base, s) : s) << (i * 3);
75 const int base = dst->NumParameters; local
108 return base;
131 if (inst->SrcReg[i].Base.RelAddr) {
150 * array. Now that the base of the parameter array is known, the
153 inst->Base.SrcReg[i] = inst->SrcReg[i].Base;
154 inst->Base.SrcReg[i].Index +=
166 const int idx = inst->SrcReg[i].Base.Index
    [all...]
  /external/clang/test/Analysis/
cxx-for-range-cfg.cpp 10 T *Base;
  /external/clang/test/CodeGenCXX/
apple-kext-indirect-call-2.C 28 struct Base { virtual char* abc(void) const; };
30 char* Base::abc() const { return 0; }
32 struct Derived : public Base {
38 char* c = p->Base::abc();
cxx0x-delegating-ctors.cpp 10 // We use a virtual base to ensure that the constructor
11 // delegation optimization (complete->base) can't be
74 class Base {
76 Base() { squawk(); }
77 virtual ~Base() {}
83 class Foo : public virtual Base {
  /external/eigen/Eigen/src/Eigen2Support/
QR.h 21 typedef HouseholderQR<MatrixType> Base;
24 QR() : Base() {}
27 explicit QR(const T& t) : Base(t) {}
32 *result = static_cast<const Base*>(this)->solve(b);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_buffer_objects.h 40 struct gl_buffer_object Base;
  /external/mesa3d/src/mesa/program/
prog_parameter_layout.c 39 _mesa_combine_swizzles(unsigned base, unsigned applied)
47 swiz |= ((s <= SWIZZLE_W) ? GET_SWZ(base, s) : s) << (i * 3);
75 const int base = dst->NumParameters; local
108 return base;
131 if (inst->SrcReg[i].Base.RelAddr) {
150 * array. Now that the base of the parameter array is known, the
153 inst->Base.SrcReg[i] = inst->SrcReg[i].Base;
154 inst->Base.SrcReg[i].Index +=
166 const int idx = inst->SrcReg[i].Base.Index
    [all...]

Completed in 6425 milliseconds

1 2 34 5 6 7 8 91011>>