HomeSort by relevance Sort by last modified time
    Searched defs:Base (Results 226 - 250 of 396) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/Eigen/src/SparseCore/
SparseBlock.h 349 typedef typename _MatrixTypeNested::InnerIterator Base;
355 : Base(block.derived().nestedExpression(), outer + (IsRowMajor ? block.m_startRow.value() : block.m_startCol.value())),
359 while( (Base::operator bool()) && (Base::index() < (IsRowMajor ? m_block.m_startCol.value() : m_block.m_startRow.value())) )
360 Base::operator++();
363 inline Index index() const { return Base::index() - (IsRowMajor ? m_block.m_startCol.value() : m_block.m_startRow.value()); }
364 inline Index outer() const { return Base::outer() - (IsRowMajor ? m_block.m_startRow.value() : m_block.m_startCol.value()); }
365 inline Index row() const { return Base::row() - m_block.m_startRow.value(); }
366 inline Index col() const { return Base::col() - m_block.m_startCol.value(); }
368 inline operator bool() const { return Base::operator bool() && Base::index() < m_end;
    [all...]
SparseDenseProduct.h 78 typedef SparseMatrixBase<SparseDenseOuterProduct> Base;
119 typedef typename _LhsNested::InnerIterator Base;
123 : Base(prod.lhs(), 0), m_outer(outer), m_factor(get(prod.rhs(), outer, typename internal::traits<Rhs>::StorageKind() ))
127 inline Index row() const { return Transpose ? m_outer : Base::index(); }
128 inline Index col() const { return Transpose ? Base::index() : m_outer; }
130 inline Scalar value() const { return Base::value() * m_factor; }
264 SparseTimeDenseProduct(const Lhs& lhs, const Rhs& rhs) : Base(lhs,rhs)
294 DenseTimeSparseProduct(const Lhs& lhs, const Rhs& rhs) : Base(lhs,rhs)
SparseDiagonalProduct.h 111 typedef typename CwiseUnaryOp<scalar_multiple_op<typename Lhs::Scalar>,const Rhs>::InnerIterator Base;
116 : Base(expr.rhs()*(expr.lhs().diagonal().coeff(outer)), outer)
131 const typename Lhs::DiagonalVectorType>::InnerIterator Base;
137 : Base(expr.rhs().innerVector(outer) .cwiseProduct(expr.lhs().diagonal()), 0), m_outer(outer)
149 typedef typename CwiseUnaryOp<scalar_multiple_op<typename Rhs::Scalar>,const Lhs>::InnerIterator Base;
154 : Base(expr.lhs()*expr.rhs().diagonal().coeff(outer), outer)
169 const Transpose<const typename Rhs::DiagonalVectorType> >::InnerIterator Base;
175 : Base(expr.lhs().innerVector(outer) .cwiseProduct(expr.rhs().diagonal().transpose()), 0), m_outer(outer)
SparseMatrixBase.h 19 * \brief Base class of any sparse matrices or sparse expressions
39 typedef EigenBase<Derived> Base;
SparseProduct.h 85 typedef SparseMatrixBase<SparseSparseProduct> Base;
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 36 * \param _DerType the vector type used to store/represent the derivatives. The base scalar type
68 typename NumTraits<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar>::Real>::value> Base;
73 using Base::operator+;
74 using Base::operator*;
387 // is_same<Scalar,typename NumTraits<Scalar>::Real>::value> Base;
389 // using Base::operator+;
390 // using Base::operator+=;
391 // using Base::operator-;
392 // using Base::operator-=;
393 // using Base::operator*
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 269 typedef IterativeSolverBase<GMRES> Base;
270 using Base::mp_matrix;
271 using Base::m_error;
272 using Base::m_iterations;
273 using Base::m_info;
274 using Base::m_isInitialized;
289 GMRES() : Base(), m_restart(30) {}
301 GMRES(const MatrixType& A) : Base(A), m_restart(30) {}
324 eigen_assert(Base::rows()==b.rows()
337 m_iterations = Base::maxIterations()
    [all...]
  /external/eigen/unsupported/Eigen/src/KroneckerProduct/
KroneckerTensorProduct.h 33 typedef ReturnByValue<KroneckerProduct> Base;
34 typedef typename Base::Scalar Scalar;
35 typedef typename Base::Index Index;
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineProduct.h 57 MatrixBase<SkylineProduct<LhsNested, RhsNested, ProductMode> > >::type Base;
63 public traits<SkylineProduct<LhsNested, RhsNested, ProductMode> >::Base {
  /external/llvm/include/llvm/IR/
CallSite.h 334 CallInst, InvokeInst, User::op_iterator> Base;
337 CallSite(Base B) : Base(B) {}
338 CallSite(Value* V) : Base(V) {}
339 CallSite(CallInst *CI) : Base(CI) {}
340 CallSite(InvokeInst *II) : Base(II) {}
341 CallSite(Instruction *II) : Base(II) {}
355 typedef CallSiteBase<> Base;
357 ImmutableCallSite(const Value* V) : Base(V) {}
358 ImmutableCallSite(const CallInst *CI) : Base(CI) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 10 // This implements the ScheduleDAG class, which is a base class used by
204 /// This function finds loads of the same base and different offsets. If the
217 // the same base pointer and different offsets.
222 SDNode *Base = Node;
232 if (!TII->areLoadsFromSameBasePtr(Base, User, Offset1, Offset2) ||
237 if (O2SMap.insert(std::make_pair(Offset1, Base)).second)
242 Base = User;
    [all...]
  /external/llvm/lib/Support/
FoldingSet.cpp 94 const unsigned *Base = (const unsigned*) String.data();
97 if (!((intptr_t)Base & 3)) {
98 Bits.append(Base, Base + Units);
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 46 } Base;
67 if (BaseType == RegBase && Base.Reg.getNode() != nullptr) {
68 errs() << "Base.Reg ";
69 Base.Reg.getNode()->dump();
71 errs() << " Base.FrameIndex " << Base.FrameIndex << '\n';
124 bool SelectAddr(SDValue Addr, SDValue &Base, SDValue &Disp);
173 // Is the base register already occupied?
174 if (AM.BaseType != MSP430ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
181 AM.Base.Reg = N
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16InstrInfo.cpp 215 int Base = 2040; // should create template function like isUInt that
217 int64_t Remainder = FrameSize - Base;
218 MIB.addImm(Base);
240 unsigned Base = 2040;
241 int64_t Remainder = FrameSize - Base;
242 FrameSize = Base; // should create template function like isUInt that
MipsFastISel.cpp 28 } Base;
33 Address() : BaseType(RegBase), Offset(0) { Base.Reg = 0; }
151 Addr.Base.Reg = getRegForValue(Obj);
152 return Addr.Base.Reg != 0;
190 EmitInstLoad(Opc, ResultReg, Addr.Base.Reg, Addr.Offset);
239 EmitInstStore(Opc, SrcReg, Addr.Base.Reg, Addr.Offset);
  /external/llvm/unittests/Support/
Casting.cpp 184 // for example, Derived inherits from Base, and we do `isa<Base>(Derived)`.
189 class Base {
192 Base() {}
195 class Derived : public Base {
200 // Even with no explicit classof() in Base, we should still be able to cast
201 // Derived to its base class.
204 EXPECT_TRUE(isa<Base>(D));
205 Base *BP = dyn_cast<Base>(&D)
    [all...]
  /external/lzma/C/
Ppmd7.h 51 Byte *Base, *LoUnit, *HiUnit, *Text, *UnitsStart;
66 #define Ppmd7_WasAllocated(p) ((p)->Base != NULL)
78 #define Ppmd7_GetPtr(p, offs) ((void *)((p)->Base + (offs)))
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 113 struct radeon_compiler Base;
132 struct radeon_compiler Base;
  /external/mesa3d/src/mesa/state_tracker/
st_program.h 91 struct gl_fragment_program Base;
146 struct gl_vertex_program Base; /**< The Mesa vertex program */
195 struct gl_geometry_program Base; /**< The Mesa geometry program */
  /external/chromium_org/base/strings/
string_number_conversions.cc 5 #include "base/strings/string_number_conversions.h"
14 #include "base/logging.h"
15 #include "base/scoped_clear_errno.h"
16 #include "base/strings/utf_string_conversions.h"
17 #include "base/third_party/dmg_fp/dmg_fp.h"
19 namespace base { namespace
97 // Utility to convert a character to a digit in a given base
98 template<typename CHAR, int BASE, bool BASE_LTE_10> class BaseCharToDigit {
102 template<typename CHAR, int BASE> class BaseCharToDigit<CHAR, BASE, true>
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xm_dd.c 119 x, xrb->Base.Base.Height - y - height,
196 if (width == xrb->Base.Base.Width && height == xrb->Base.Base.Height) {
198 const GLuint n = xrb->Base.Base.Width * xrb->Base.Base.Height
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program_parser.h 111 struct prog_src_register Base;
116 * If \c Base::RelAddr is 1, this will point to the symbol for the parameter
117 * that is being dereferenced. Further, \c Base::Index will be the offset
125 struct prog_instruction Base;
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 38 /// A hierarchy (base-to-derived or derived-to-base) conversion.
39 /// The target is the base class.
40 enum BaseNonce { Base };
79 /// Retrieves the base object type, important when accessing
  /external/clang/lib/AST/
APValue.cpp 39 /// Path - The sequence of base classes, fields and array indices to follow to
40 /// walk from Base to the subobject. When performing GCC-style folding, there
377 LValueBase Base = getLValueBase();
378 if (!Base) {
404 if (const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>())
407 assert(Base.get<const Expr *>() != nullptr &&
409 Base.get<const Expr*>()->printPretty(Out, nullptr,
428 if (const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>()) {
432 const Expr *E = Base.get<const Expr*>();
442 // The lvalue refers to a class type, so the next path entry is a base
    [all...]
CXXInheritance.cpp 23 /// \brief Computes the set of declarations referenced by these base
48 /// different base class subobjects of the same type. BaseType must be
76 bool CXXRecordDecl::isDerivedFrom(const CXXRecordDecl *Base) const {
79 return isDerivedFrom(Base, Paths);
82 bool CXXRecordDecl::isDerivedFrom(const CXXRecordDecl *Base,
84 if (getCanonicalDecl() == Base->getCanonicalDecl())
89 const_cast<CXXRecordDecl*>(Base->getCanonicalDecl()),
93 bool CXXRecordDecl::isVirtuallyDerivedFrom(const CXXRecordDecl *Base) const {
100 if (getCanonicalDecl() == Base->getCanonicalDecl())
105 const void *BasePtr = static_cast<const void*>(Base->getCanonicalDecl())
    [all...]

Completed in 876 milliseconds

1 2 3 4 5 6 7 8 91011>>