HomeSort by relevance Sort by last modified time
    Searched refs:Index (Results 326 - 350 of 1147) sorted by null

<<11121314151617181920>>

  /external/eigen/Eigen/src/Eigenvalues/
EigenSolver.h 82 typedef typename MatrixType::Index Index;
121 EigenSolver(Index size)
285 EigenSolver& setMaxIterations(Index maxIters)
292 Index getMaxIterations()
323 Index n = m_eivalues.rows();
325 for (Index i=0; i<n; ++i)
344 Index n = m_eivec.cols();
346 for (Index j=0; j<n; ++j)
357 for (Index i=0; i<n; ++i
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 815 COFFObjectFile::getDataDirectory(uint32_t Index,
817 // Error if if there's no data directory or the index is out of range.
825 if (Index >= NumEnt) {
829 Res = &DataDirectory[Index];
833 std::error_code COFFObjectFile::getSection(int32_t Index,
836 if (COFF::isReservedSectionNumber(Index))
838 if (static_cast<uint32_t>(Index) <= getNumberOfSections()) {
840 Result = SectionTable + (Index - 1);
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRParser.h 56 - (void) traceIn:(NSString *)ruleName Index:(int)ruleIndex;
57 - (void) traceOut:(NSString *)ruleName Index:(NSInteger) ruleIndex;
ANTLRTreeParser.h 84 - (void) traceIn:(NSString *)ruleName Index:(NSInteger)ruleIndex;
85 - (void) traceOut:(NSString *)ruleName Index:(NSInteger)ruleIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRParser.h 56 - (void) traceIn:(NSString *)ruleName Index:(int)ruleIndex;
57 - (void) traceOut:(NSString *)ruleName Index:(NSInteger) ruleIndex;
ANTLRTreeParser.h 84 - (void) traceIn:(NSString *)ruleName Index:(NSInteger)ruleIndex;
85 - (void) traceOut:(NSString *)ruleName Index:(NSInteger)ruleIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRParser.h 56 - (void) traceIn:(NSString *)ruleName Index:(int)ruleIndex;
57 - (void) traceOut:(NSString *)ruleName Index:(NSInteger) ruleIndex;
ANTLRTreeParser.h 84 - (void) traceIn:(NSString *)ruleName Index:(NSInteger)ruleIndex;
85 - (void) traceOut:(NSString *)ruleName Index:(NSInteger)ruleIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRHashRule.h 65 - (void) insertObject:(ANTLRRuleMemo *)aRule atIndex:(NSInteger)Index;
66 - (ANTLRRuleMemo *) objectAtIndex:(NSInteger)Index;
ANTLRParser.h 56 - (void) traceIn:(NSString *)ruleName Index:(int)ruleIndex;
57 - (void) traceOut:(NSString *)ruleName Index:(NSInteger) ruleIndex;
ANTLRTreeParser.h 84 - (void) traceIn:(NSString *)ruleName Index:(NSInteger)ruleIndex;
85 - (void) traceOut:(NSString *)ruleName Index:(NSInteger)ruleIndex;
  /external/clang/lib/Serialization/
ASTCommon.h 94 unsigned Index = 0;
104 Visit(ND, Index++);
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefinedArraySubscriptChecker.cpp 38 const Expr *Index = A->getIdx();
39 if (!C.getSVal(Index).isUndef())
  /external/eigen/test/
diagonalmatrices.cpp 14 typedef typename MatrixType::Index Index;
23 Index rows = m.rows();
24 Index cols = m.cols();
55 Index i = internal::random<Index>(0, rows-1);
56 Index j = internal::random<Index>(0, cols-1);
eigensolver_selfadjoint.cpp 17 typedef typename MatrixType::Index Index;
21 Index rows = m.rows();
22 Index cols = m.cols();
36 Index count = 1;//internal::random<Index>(-cols,cols);
37 for(Index k=0; k<count; ++k)
39 Index i = internal::random<Index>(0,cols-1);
householder.cpp 15 typedef typename MatrixType::Index Index;
21 Index rows = m.rows();
22 Index cols = m.cols();
80 Index shift = internal::random<Index>(0, std::max<Index>(rows-2,0));
81 Index brows = rows - shift;
integer_types.cpp 21 typedef typename MatrixType::Index Index;
27 Index rows = m.rows();
28 Index cols = m.cols();
52 typedef typename MatrixType::Index Index;
61 Index rows = m.rows();
62 Index cols = m.cols();
mapstride.cpp 14 typedef typename VectorType::Index Index;
17 Index size = m.size();
21 Index arraysize = 3*size;
53 typedef typename MatrixType::Index Index;
56 Index rows = _m.rows(), cols = _m.cols();
60 Index arraysize = 2*(rows+4)*(cols+4);
qr_colpivoting.cpp 16 typedef typename MatrixType::Index Index;
18 Index rows = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols2 = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE);
19 Index rank = internal::random<Index>(1, (std::min)(rows, cols)-1);
upperbidiagonalization.cpp 15 const typename MatrixType::Index rows = m.rows();
16 const typename MatrixType::Index cols = m.cols();
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialSolver.h 39 typedef DenseIndex Index;
74 for(Index i=0; i<m_roots.size(); ++i )
85 Index res=0;
87 for( Index i=1; i<m_roots.size(); ++i )
124 Index res=0;
127 for( Index i=0; i<m_roots.size(); ++i )
165 Index res=0;
168 for( Index i=0; i<m_roots.size(); ++i )
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnit.h 44 DWARFUnitIndex *Index = nullptr);
90 const auto &Index = getDWARFUnitIndex(Context, UnitType::Section);
96 Index.getFromOffset(Offset));
171 bool getAddrOffsetSectionItem(uint32_t Index, uint64_t &Result) const;
173 bool getStringOffsetSectionItem(uint32_t Index, uint32_t &Result) const;
231 /// \brief Return the index of a DIE inside the unit's DIE vector.
243 /// \brief Return the DIE object at the given index.
244 const DWARFDebugInfoEntryMinimal *getDIEAtIndex(unsigned Index) const {
245 assert(Index < DieArray.size());
246 return &DieArray[Index];
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/
ConcreteSymbolEnumerator.h 31 std::unique_ptr<ChildType> getChildAtIndex(uint32_t Index) const override {
32 std::unique_ptr<PDBSymbol> Child = Enumerator->getChildAtIndex(Index);
  /external/llvm/include/llvm/Object/
FunctionIndexObjectFile.h 1 //===- FunctionIndexObjectFile.h - Function index file implementation -----===//
27 /// This class is used to read just the function summary index related
29 /// bitcode or be a combined index bitcode file). It builds a FunctionInfoIndex
32 std::unique_ptr<FunctionInfoIndex> Index;
65 FunctionInfoIndex &getIndex() { return *Index; }
86 /// \brief Parse function index in the given memory buffer.
88 /// summary/index.
95 /// stored on the index object saved in this object.
103 /// Parse the function index out of an IR file and return the function
104 /// index object if found, or nullptr if not
    [all...]
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIAEnumDebugStreams.cpp 26 DIAEnumDebugStreams::getChildAtIndex(uint32_t Index) const {
30 VarIndex.lVal = Index;

Completed in 692 milliseconds

<<11121314151617181920>>