Home
last modified time | relevance | path

Searched refs:tempVector (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
DWebFormElement.cpp82 Vector<RefPtr<Node> > tempVector; in getNamedElements() local
83 unwrap<HTMLFormElement>()->getNamedElements(name, tempVector); in getNamedElements()
84 result.assign(tempVector); in getNamedElements()
90 Vector<RefPtr<HTMLFormControlElement> > tempVector; in getFormControlElements() local
100 tempVector.append(element); in getFormControlElements()
102 result.assign(tempVector); in getFormControlElements()
/external/eigen/Eigen/src/SparseCore/
DTriangularSolver.h216 AmbiVector<Scalar,Index> tempVector(other.rows()*2);
217 tempVector.setBounds(0,other.rows());
225 tempVector.init(.99/*float(other.col(col).nonZeros())/float(other.rows())*/);
226 tempVector.setZero();
227 tempVector.restart();
230 tempVector.coeffRef(rhsIt.index()) = rhsIt.value();
237 tempVector.restart();
238 Scalar& ci = tempVector.coeffRef(i);
253 tempVector.restart();
259 tempVector.coeffRef(it.index()) -= ci * it.value();
[all …]
DSparseSparseProductWithPruning.h34 AmbiVector<Scalar,Index> tempVector(rows); in sparse_sparse_product_with_pruning_impl()
57 tempVector.init(ratioColRes); in sparse_sparse_product_with_pruning_impl()
58 tempVector.setZero(); in sparse_sparse_product_with_pruning_impl()
62 tempVector.restart(); in sparse_sparse_product_with_pruning_impl()
66 tempVector.coeffRef(lhsIt.index()) += lhsIt.value() * x; in sparse_sparse_product_with_pruning_impl()
70 for (typename AmbiVector<Scalar,Index>::Iterator it(tempVector,tolerance); it; ++it) in sparse_sparse_product_with_pruning_impl()
/external/eigen/Eigen/src/QR/
DHouseholderQR.h205 TempType tempVector; variable
208 tempVector.resize(cols);
209 tempData = tempVector.data();
243 TempType tempVector; variable
246 tempVector.resize(cols);
247 tempData = tempVector.data();
/external/webkit/Source/JavaScriptCore/heap/
DHeap.cpp161 void Heap::pushTempSortVector(Vector<ValueStringPair>* tempVector) in pushTempSortVector() argument
163 m_tempSortingVectors.append(tempVector); in pushTempSortVector()
166 void Heap::popTempSortVector(Vector<ValueStringPair>* tempVector) in popTempSortVector() argument
168 ASSERT_UNUSED(tempVector, tempVector == m_tempSortingVectors.last()); in popTempSortVector()