Searched defs:Index (Results 101 - 125 of 515) sorted by relevance

1234567891011>>

/external/eigen/test/
H A Dstable_norm.cpp37 typedef typename MatrixType::Index Index; typedef
55 Index rows = m.rows();
56 Index cols = m.cols();
H A Dtriangular.cpp22 typename MatrixType::Index rows = m.rows();
23 typename MatrixType::Index cols = m.cols();
122 typedef const typename MatrixType::Index Index; typedef
127 Index rows = m.rows();
128 Index cols = m.cols();
H A Dvectorwiseop.cpp16 typedef typename ArrayType::Index Index; typedef
21 Index rows = m.rows();
22 Index cols = m.cols();
23 Index r = internal::random<Index>(0, rows-1),
24 c = internal::random<Index>(0, cols-1);
118 typedef typename MatrixType::Index Index; typedef
126 Index row
[all...]
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffJacobian.h39 typedef typename JacobianType::Index Index; typedef in class:Eigen::AutoDiffJacobian
63 for (Index j=0; j<jac.rows(); j++)
66 for (Index i=0; i<jac.cols(); i++)
71 for (Index i=0; i<jac.rows(); i++)
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DIncompleteLU.h20 typedef typename Vector::Index Index; typedef in class:Eigen::IncompleteLU
34 Index rows() const { return m_lu.rows(); }
35 Index cols() const { return m_lu.cols(); }
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
H A DLMpar.h33 typedef typename QRSolver::Index Index; typedef
36 Index j;
39 Index iter;
51 const Index n = qr.matrixR().cols();
60 // const Index rank = qr.nonzeroPivots(); // exactly double(0.)
61 const Index rank = qr.rank(); // use a threshold
137 for (Index i = j+1; i < n; ++i)
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Ddogleg.h16 typedef DenseIndex Index; typedef
19 Index i, j;
26 const Index n = qrfac.cols();
H A Dfdjac1.h17 typedef DenseIndex Index; typedef
21 Index j, k;
23 Index msum;
25 Index start, length;
29 const Index n = x.size();
68 start = std::max<Index>(0,j-mu);
/external/eigen/unsupported/test/
H A Dsparse_extra.cpp52 typedef typename SparseMatrixType::Index Index; typedef
53 const Index rows = ref.rows();
54 const Index cols = ref.cols();
/external/llvm/include/llvm/Object/
H A DMachOUniversal.h37 /// \brief Index of object in the universal binary.
38 uint32_t Index; member in class:llvm::object::MachOUniversalBinary::ObjectForArch
43 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index);
47 Index = 0;
51 return (Parent == Other.Parent) && (Index == Other.Index);
54 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
/external/llvm/include/llvm/Option/
H A DArg.h48 unsigned Index; member in class:llvm::opt::Arg
62 Arg(const Option Opt, StringRef Spelling, unsigned Index,
64 Arg(const Option Opt, StringRef Spelling, unsigned Index,
66 Arg(const Option Opt, StringRef Spelling, unsigned Index,
72 unsigned getIndex() const { return Index; }
/external/llvm/include/llvm/Support/
H A DArrayRecycler.h71 uint8_t Index; member in class:llvm::ArrayRecycler::Capacity
72 explicit Capacity(uint8_t idx) : Index(idx) {}
75 Capacity() : Index(0) {}
83 size_t getSize() const { return size_t(1u) << Index; }
86 unsigned getBucket() const { return Index; }
91 Capacity getNext() const { return Capacity(Index + 1); }
/external/llvm/lib/Object/
H A DMachOUniversal.cpp54 const MachOUniversalBinary *Parent, uint32_t Index)
55 : Parent(Parent), Index(Index) {
56 if (!Parent || Index >= Parent->getNumberOfObjects()) {
62 Index * sizeof(MachO::fat_arch);
53 ObjectForArch( const MachOUniversalBinary *Parent, uint32_t Index) argument
/external/llvm/lib/Option/
H A DOption.cpp104 unsigned &Index,
110 Spelling = StringRef(Args.getArgString(Index), ArgSize);
118 if (ArgSize != strlen(Args.getArgString(Index)))
121 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
134 const char *Value = Args.getArgString(Index) + ArgSize;
135 return new Arg(UnaliasedOption, Spelling, Index++, Value);
139 const char *Str = Args.getArgString(Index) + ArgSize;
140 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
168 if (ArgSize != strlen(Args.getArgString(Index)))
171 Index
103 accept(const ArgList &Args, unsigned &Index, unsigned ArgSize) const argument
[all...]
/external/llvm/lib/Target/SystemZ/InstPrinter/
H A DSystemZInstPrinter.cpp22 unsigned Index, raw_ostream &O) {
26 if (Index)
27 O << '%' << getRegisterName(Index) << ',';
30 assert(!Index && "Shouldn't have an index without a base");
21 printAddress(unsigned Base, int64_t Disp, unsigned Index, raw_ostream &O) argument
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp63 uint64_t Index; local
65 for (Index = 0; Index < Bytes.size(); Index += Size) {
69 S = DisAsm.getInstruction(Inst, Size, memoryObject, Index,
73 SM.PrintMessage(SMLoc::getFromPointer(Bytes[Index].second),
86 SM.PrintMessage(SMLoc::getFromPointer(Bytes[Index].second),
/external/eigen/unsupported/Eigen/src/KroneckerProduct/
H A DKroneckerTensorProduct.h17 template<typename Scalar, int Options, typename Index> class SparseMatrix;
35 typedef typename Base::Index Index; typedef in class:Eigen::KroneckerProduct
46 inline Index rows() const { return m_A.rows() * m_B.rows(); }
47 inline Index cols() const { return m_A.cols() * m_B.cols(); }
49 Scalar coeff(Index row, Index col) const
55 Scalar coeff(Index i) const
83 typedef typename internal::traits<KroneckerProductSparse>::Index Index; typedef in class:Eigen::KroneckerProductSparse
178 typedef typename promote_index_type<typename Lhs::Index, typename Rhs::Index>::type Index; typedef in struct:Eigen::internal::traits
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRStringStream.cs117 public virtual int Index { property in class:Antlr.Runtime.ANTLRStringStream
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTokenStream.cs53 public virtual int Index { property in class:Antlr.Runtime.Debug.DebugTokenStream
55 return input.Index;
80 int a = input.Index;
83 int b = input.Index;
95 int firstOnChannelTokenIndex = input.Index;
H A DDebugTreeNodeStream.cs70 public virtual int Index { property in class:Antlr.Runtime.Debug.DebugTreeNodeStream
72 return input.Index;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DLookaheadStream.cs153 public virtual int Index { property in class:Antlr.Runtime.Misc.LookaheadStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DANTLRStringStream.cs124 public virtual int Index property in class:Antlr.Runtime.ANTLRStringStream
H A DLegacyCommonTokenStream.cs101 public virtual int Index property in class:Antlr.Runtime.LegacyCommonTokenStream
431 lastMarker = Index;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTreeNodeStream.cs76 public virtual int Index property in class:Antlr.Runtime.Debug.DebugTreeNodeStream
80 return input.Index;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimStringStream.cs120 public int Index property in class:Antlr.Runtime.SlimStringStream

Completed in 283 milliseconds

1234567891011>>