HomeSort by relevance Sort by last modified time
    Searched refs:Index (Results 201 - 225 of 1156) sorted by null

1 2 3 4 5 6 7 891011>>

  /system/bt/embdrv/sbc/encoder/srce/
sbc_dct.c 161 UINT8 Index, k;
164 for(Index=0; Index<8; Index++)
169 /*temp += (SINT32)(((SINT64)M[(Index*strEncParams->numOfSubBands*2)+k] * Y[k]) >> 16 );*/
170 temp += (gas16AnalDCTcoeff8[(Index*8*2)+k] * (pInVect[k] >> 16));
171 temp += ((gas16AnalDCTcoeff8[(Index*8*2)+k] * (pInVect[k] & 0xFFFF)) >> 16);
173 pOutVect[Index] = temp;
230 UINT8 Index, k;
233 for(Index=0; Index<4; Index++
    [all...]
  /external/eigen/Eigen/src/Core/
SelfAdjointView.h 65 typedef typename MatrixType::Index Index;
75 inline Index rows() const { return m_matrix.rows(); }
76 inline Index cols() const { return m_matrix.cols(); }
77 inline Index outerStride() const { return m_matrix.outerStride(); }
78 inline Index innerStride() const { return m_matrix.innerStride(); }
83 inline Scalar coeff(Index row, Index col) const
92 inline Scalar& coeffRef(Index row, Index col
    [all...]
MatrixBase.h 55 typedef typename internal::traits<Derived>::Index Index;
101 inline Index diagonalSize() const { return (std::min)(rows(),cols()); }
219 template<int Index> struct DiagonalIndexReturnType { typedef Diagonal<Derived,Index> Type; };
220 template<int Index> struct ConstDiagonalIndexReturnType { typedef const Diagonal<const Derived,Index> Type; };
222 template<int Index> typename DiagonalIndexReturnType<Index>::Type diagonal();
223 template<int Index> typename ConstDiagonalIndexReturnType<Index>::Type diagonal() const
    [all...]
BooleanRedux.h 91 for(Index j = 0; j < cols(); ++j)
92 for(Index i = 0; i < rows(); ++i)
115 for(Index j = 0; j < cols(); ++j)
116 for(Index i = 0; i < rows(); ++i)
127 inline typename DenseBase<Derived>::Index DenseBase<Derived>::count() const
129 return derived().template cast<bool>().template cast<Index>().sum();
DenseBase.h 18 // The index type defined by EIGEN_DEFAULT_DENSE_INDEX_TYPE must be a signed type.
61 typedef typename internal::traits<Derived>::Index Index;
185 inline Index nonZeros() const { return size(); }
196 Index outerSize() const
207 Index innerSize() const
217 void resize(Index newSize)
227 void resize(Index nbRows, Index nbCols)
298 Constant(Index rows, Index cols, const Scalar& value)
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
ComplexSchur.h 66 typedef typename MatrixType::Index Index;
94 ComplexSchur(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime)
187 * \sa compute(const MatrixType&, bool, Index)
226 ComplexSchur& setMaxIterations(Index maxIters)
233 Index getMaxIterations()
251 Index m_maxIters;
254 bool subdiagonalEntryIsNeglegible(Index i);
255 ComplexScalar computeShift(Index iu, Index iter)
    [all...]
RealQZ.h 70 typedef typename MatrixType::Index Index;
86 RealQZ(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime) :
174 Index iterations() const
183 RealQZ& setMaxIterations(Index maxIters)
194 Index m_maxIters;
198 Index m_global_iter;
207 Index findSmallSubdiagEntry(Index iu);
208 Index findSmallDiagEntry(Index f, Index l)
    [all...]
  /external/eigen/Eigen/src/Cholesky/
LLT.h 62 typedef typename MatrixType::Index Index;
86 LLT(Index size) : m_matrix(size, size),
170 inline Index rows() const { return m_matrix.rows(); }
171 inline Index cols() const { return m_matrix.cols(); }
197 static typename MatrixType::Index llt_rank_update_lower(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma)
202 typedef typename MatrixType::Index Index;
209 Index n = mat.cols();
221 for(Index i=0; i<n; ++i
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
fdjac1.h 17 typedef DenseIndex Index;
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/llvm/include/llvm/DebugInfo/
DIContext.h 56 DILineInfo getFrame(unsigned Index) const {
57 assert(Index < Frames.size());
58 return Frames[Index];
60 DILineInfo *getMutableFrame(unsigned Index) {
61 assert(Index < Frames.size());
62 return &Frames[Index];
  /external/llvm/lib/Target/AArch64/
AArch64MachineFunctionInfo.h 117 void setVarArgsStackIndex(int Index) { VarArgsStackIndex = Index; }
120 void setVarArgsGPRIndex(int Index) { VarArgsGPRIndex = Index; }
126 void setVarArgsFPRIndex(int Index) { VarArgsFPRIndex = Index; }
  /external/llvm/lib/IR/
LegacyPassManager.cpp 190 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
191 BasicBlockPass *BP = getContainedPass(Index);
348 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
349 ModulePass *MP = getContainedPass(Index);
909 for (unsigned Index = 0; Index < PMT_Last; ++Index)
    [all...]
Attributes.cpp 574 uint64_t AttributeSetImpl::Raw(unsigned Index) const {
576 if (getSlotIndex(I) != Index) continue;
657 unsigned Index = I->first;
659 while (I != E && I->first == Index) {
664 AttrPairVec.push_back(std::make_pair(Index,
681 AttributeSet AttributeSet::get(LLVMContext &C, unsigned Index,
712 Attrs.push_back(std::make_pair(Index, Attr));
718 std::make_pair(Index, Attribute::get(C, TDA.first, TDA.second)));
723 AttributeSet AttributeSet::get(LLVMContext &C, unsigned Index,
727 Attrs.push_back(std::make_pair(Index, Attribute::get(C, K)))
    [all...]
Operator.cpp 29 // Handle a struct index, which adds its field offset to the pointer.
37 // For array or vector indices, scale the index by the size of the type.
38 APInt Index = OpC->getValue().sextOrTrunc(Offset.getBitWidth());
39 Offset += Index * APInt(Offset.getBitWidth(),
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixSquareRoot.h 56 typedef typename MatrixType::Index Index;
61 void compute2x2diagonalBlock(MatrixType& sqrtT, const MatrixType& T, typename MatrixType::Index i);
63 typename MatrixType::Index i, typename MatrixType::Index j);
65 typename MatrixType::Index i, typename MatrixType::Index j);
67 typename MatrixType::Index i, typename MatrixType::Index j);
69 typename MatrixType::Index i, typename MatrixType::Index j)
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseUtil.h 52 typedef typename Eigen::internal::traits<Derived >::Index Index; \
103 typedef typename traits<T>::Index _Index;
110 typedef typename traits<T>::Index _Index;
117 typedef typename traits<T>::Index _Index;
132 typedef typename traits<T>::Index _Index;
148 template<typename Scalar, typename Index=typename SparseMatrix<Scalar>::Index >
154 Triplet(const Index& i, const Index& j, const Scalar& v = Scalar(0)
    [all...]
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 163 /// This is a simple wrapper around an index into the reverse-post-order
170 IndexType Index;
172 bool operator==(const BlockNode &X) const { return Index == X.Index; }
173 bool operator!=(const BlockNode &X) const { return Index != X.Index; }
174 bool operator<=(const BlockNode &X) const { return Index <= X.Index; }
175 bool operator>=(const BlockNode &X) const { return Index >= X.Index; }
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRHashRule.h 69 - (void) insertObject:(ANTLRRuleMemo *)aRule atIndex:(NSInteger)Index;
70 - (ANTLRRuleMemo *) objectAtIndex:(NSInteger)Index;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRHashRule.h 69 - (void) insertObject:(ANTLRRuleMemo *)aRule atIndex:(NSInteger)Index;
70 - (ANTLRRuleMemo *) objectAtIndex:(NSInteger)Index;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRHashRule.h 69 - (void) insertObject:(ANTLRRuleMemo *)aRule atIndex:(NSInteger)Index;
70 - (ANTLRRuleMemo *) objectAtIndex:(NSInteger)Index;
  /external/clang/bindings/python/examples/cindex/
cindex-includes.py 19 from clang.cindex import Index
32 index = Index.create()
33 tu = index.parse(None, args)
  /external/clang/include/clang/AST/
SelectorLocationsKind.h 57 SourceLocation getStandardSelectorLoc(unsigned Index,
75 SourceLocation getStandardSelectorLoc(unsigned Index,
  /external/elfutils/tests/
run-readelf-test4.sh 20 testfiles testfile19.index
22 testrun_compare ${abs_top_builddir}/src/readelf -c testfile19.index <<\EOF
24 Index of archive 'testfile19.index' has 4 entries:
  /external/llvm/include/llvm/Linker/
Linker.h 50 const FunctionInfoIndex *Index = nullptr,
73 const FunctionInfoIndex *Index);
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIAEnumLineNumbers.cpp 26 DIAEnumLineNumbers::getChildAtIndex(uint32_t Index) const {
28 if (S_OK != Enumerator->Item(Index, &Item))

Completed in 1936 milliseconds

1 2 3 4 5 6 7 891011>>