HomeSort by relevance Sort by last modified time
    Searched refs:Index (Results 301 - 325 of 983) sorted by null

<<11121314151617181920>>

  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedSelfAdjointEigenSolver.h 53 typedef typename Base::Index Index;
61 * GeneralizedSelfAdjointEigenSolver(Index) for dynamic-size matrices.
77 GeneralizedSelfAdjointEigenSolver(Index size)
  /external/eigen/Eigen/src/QR/
ColPivHouseholderQR_MKL.h 53 Index rows = matrix.rows();\
54 Index cols = matrix.cols();\
55 Index size = matrix.diagonalSize();\
61 /*Index number_of_transpositions = 0;*/ \
HouseholderQR_MKL.h 48 typename MatrixQR::Index maxBlockSize=32, \
  /external/eigen/test/
schur_real.cpp 16 typedef typename MatrixType::Index Index;
18 const Index size = T.cols();
diagonal.cpp 14 typedef typename MatrixType::Index Index;
20 Index rows = m.rows();
21 Index cols = m.cols();
eigensolver_complex.cpp 35 typedef typename MatrixType::Index Index;
39 Index rows = m.rows();
40 Index cols = m.cols();
eigensolver_generic.cpp 17 typedef typename MatrixType::Index Index;
21 Index rows = m.rows();
22 Index cols = m.cols();
product_selfadjoint.cpp 14 typedef typename MatrixType::Index Index;
22 Index rows = m.rows();
23 Index cols = m.cols();
sizeof.cpp 18 VERIFY(sizeof(MatrixType)==sizeof(Scalar*) + 2 * sizeof(typename MatrixType::Index));
  /external/eigen/unsupported/Eigen/src/BVH/
BVAlgorithms.h 19 bool intersect_helper(const BVH &tree, Intersector &intersector, typename BVH::Index root)
21 typedef typename BVH::Index Index;
28 std::vector<Index> todo(1, root);
95 typedef typename BVH1::Index Index1;
96 typedef typename BVH2::Index Index2;
149 typename Minimizer::Scalar minimize_helper(const BVH &tree, Minimizer &minimizer, typename BVH::Index root, typename Minimizer::Scalar minimum)
152 typedef typename BVH::Index Index;
153 typedef std::pair<Scalar, Index> QueueElement; //first element is priorit
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
covar.h 11 typedef DenseIndex Index;
14 Index i, j, k, l, ii, jj;
19 const Index n = r.cols();
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 69 DILineInfo getFrame(unsigned Index) const {
70 assert(Index < Frames.size());
71 return Frames[Index];
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 32 int Index;
39 : r_offset(0), Index(0), Type(0), Symbol(0), r_addend(0), Fixup(0) {}
43 : r_offset(RelocOffset), Index(Idx), Type(RelType), Symbol(Sym),
  /external/llvm/include/llvm/Support/
MathExtras.h 86 unsigned long Index;
87 _BitScanForward(&Index, Val);
88 return Index;
101 unsigned long Index;
102 _BitScanForward64(&Index, Val);
103 return Index;
152 unsigned long Index;
153 _BitScanReverse(&Index, Val);
154 return Index ^ 31;
167 unsigned long Index;
    [all...]
OutputBuffer.h 156 unsigned char &operator[](unsigned Index) {
157 return Output[Index];
159 const unsigned char &operator[](unsigned Index) const {
160 return Output[Index];
  /frameworks/compile/slang/
slang_rs_reflection_base.cpp 214 const char *RSReflectionBase::getVectorAccessor(unsigned Index) {
222 slangAssert((Index < (sizeof(VectorAccessorMap) / sizeof(const char*))) &&
223 "Out-of-bound index to access vector member");
225 return VectorAccessorMap[Index];
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_parameter_layout.c 59 * \param first Index of first element in \c src to copy
149 /* Previously the Index was just the offset from the parameter
151 * index can be updated to its actual value.
154 inst->Base.SrcReg[i].Index +=
166 const int idx = inst->SrcReg[i].Base.Index;
189 inst->Base.SrcReg[i].Index =
198 inst->Base.SrcReg[i].Index =
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 243 virtual SVal getArgSVal(unsigned Index) const;
247 virtual const Expr *getArgExpr(unsigned Index) const { return 0; }
252 virtual SourceRange getArgSourceRange(unsigned Index) const;
455 virtual const Expr *getArgExpr(unsigned Index) const {
456 return getOriginExpr()->getArg(Index);
602 virtual const Expr *getArgExpr(unsigned Index) const {
603 return getOriginExpr()->getArg(Index);
643 virtual const Expr *getArgExpr(unsigned Index) const {
644 return getOriginExpr()->getArg(Index + 1);
741 virtual const Expr *getArgExpr(unsigned Index) const
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IterativeSolverBase.h 27 typedef typename MatrixType::Index Index;
115 Index rows() const { return mp_matrix ? mp_matrix->rows() : 0; }
117 Index cols() const { return mp_matrix ? mp_matrix->cols() : 0; }
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 38 typedef typename _MatrixType::Index Index;
47 typedef typename _MatrixType::Index Index;
56 typedef typename _MatrixType::Index Index;
127 typedef typename MatrixType::Index Index;
195 Array<Index,IPARM_SIZE,1>& iparm()
200 /** Return a reference to a particular index parameter of the IPARM vector
    [all...]
  /external/eigen/unsupported/test/
sparse_extra.cpp 53 typedef typename SparseMatrixType::Index Index;
54 const Index rows = ref.rows();
55 const Index cols = ref.cols();
126 setter(i.index(), j) = i.value();
  /external/llvm/lib/Option/
Arg.cpp 21 : Opt(_Opt), BaseArg(_BaseArg), Spelling(S), Index(_Index),
27 : Opt(_Opt), BaseArg(_BaseArg), Spelling(S), Index(_Index),
34 : Opt(_Opt), BaseArg(_BaseArg), Spelling(S), Index(_Index),
53 llvm::errs() << " Index:" << Index;
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 118 unsigned Index = 0;
136 Index = 0;
184 Index = A_Base->getIndex();
188 Index = A_SD.getFragment()->getParent()->getOrdinal() + 1;
195 MRE.Word1 = ((Index << 0) |
203 Index = B_Base->getIndex();
207 Index = B_SD.getFragment()->getParent()->getOrdinal() + 1;
231 Index = Base->getIndex();
238 // The index is the section ordinal (1-based).
239 Index = SD.getFragment()->getParent()->getOrdinal() + 1
    [all...]
  /external/mesa3d/src/mesa/program/
prog_parameter_layout.c 59 * \param first Index of first element in \c src to copy
149 /* Previously the Index was just the offset from the parameter
151 * index can be updated to its actual value.
154 inst->Base.SrcReg[i].Index +=
166 const int idx = inst->SrcReg[i].Base.Index;
189 inst->Base.SrcReg[i].Index =
198 inst->Base.SrcReg[i].Index =
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM_Bitstream.c 171 * Returns : Code Book Index if successfull.
185 OMX_INT Index;
194 for (Index=0; pCodeBook->codeLen != 0; Index++)
202 return Index;

Completed in 1030 milliseconds

<<11121314151617181920>>