Searched defs:resize (Results 76 - 100 of 158) sorted by path

1234567

/external/eigen/Eigen/src/Core/
H A DDenseBase.h213 /** Only plain matrices/arrays, not expressions, may be resized; therefore the only useful resize methods are
214 * Matrix::resize() and Array::resize(). The present method only asserts that the new size equals the old size, and does
217 void resize(Index newSize) function in class:Eigen::DenseBase
221 && "DenseBase::resize() does not actually allow to resize.");
223 /** Only plain matrices/arrays, not expressions, may be resized; therefore the only useful resize methods are
224 * Matrix::resize() and Array::resize(). The present method only asserts that the new size equals the old size, and does
227 void resize(Inde function in class:Eigen::DenseBase
[all...]
H A DDenseStorage.h133 inline void resize(DenseIndex,DenseIndex,DenseIndex) {} function in class:Eigen::DenseStorage
149 inline void resize(DenseIndex,DenseIndex,DenseIndex) {} function in class:Eigen::DenseStorage
180 inline void resize(DenseIndex, DenseIndex nbRows, DenseIndex nbCols) { m_rows = nbRows; m_cols = nbCols; } function in class:Eigen::DenseStorage
199 inline void resize(DenseIndex, DenseIndex nbRows, DenseIndex) { m_rows = nbRows; } function in class:Eigen::DenseStorage
218 inline void resize(DenseIndex, DenseIndex, DenseIndex nbCols) { m_cols = nbCols; } function in class:Eigen::DenseStorage
247 void resize(DenseIndex size, DenseIndex nbRows, DenseIndex nbCols) function in class:Eigen::DenseStorage
284 EIGEN_STRONG_INLINE void resize(DenseIndex size, DenseIndex, DenseIndex nbCols) function in class:Eigen::DenseStorage
320 EIGEN_STRONG_INLINE void resize(DenseIndex size, DenseIndex nbRows, DenseIndex) function in class:Eigen::DenseStorage
H A DDiagonalMatrix.h204 inline void resize(Index size) { m_diagonal.resize(size); } function in class:Eigen::DiagonalMatrix
H A DPermutationMatrix.h142 inline void resize(Index newSize) function in class:Eigen::PermutationBase
144 indices().resize(newSize);
158 resize(newSize);
H A DPlainObjectBase.h223 * of rows and/or of columns, you can use resize(NoChange_t, Index), resize(Index, NoChange_t).
233 * \sa resize(Index) for vectors, resize(NoChange_t, Index), resize(Index, NoChange_t)
235 EIGEN_STRONG_INLINE void resize(Index nbRows, Index nbCols) function in class:Eigen::PlainObjectBase
246 m_storage.resize(size, nbRows, nbCols);
250 m_storage.resize(nbRows*nbCols, nbRows, nbCols);
263 * \sa resize(Index,Index), resize(NoChange_
265 inline void resize(Index size) function in class:Eigen::PlainObjectBase
289 inline void resize(NoChange_t, Index nbCols) function in class:Eigen::PlainObjectBase
302 inline void resize(Index nbRows, NoChange_t) function in class:Eigen::PlainObjectBase
[all...]
H A DTranspositions.h102 inline void resize(int newSize) function in class:Eigen::TranspositionsBase
104 indices().resize(newSize);
/external/eigen/Eigen/src/SparseCore/
H A DAmbiVector.h33 resize(size);
54 void resize(Index size) function in class:Eigen::internal::AmbiVector
H A DCompressedStorage.h42 resize(size);
53 resize(other.size());
86 void resize(size_t size, double reserveSizeFactor = 0) function in class:Eigen::internal::CompressedStorage
96 resize(m_size+1, 1);
175 resize(m_size+1,1);
200 resize(k,0);
H A DSparseMatrix.h323 m_data.resize(m_outerIndex[m_outerSize]);
340 m_data.resize(count);
473 m_data.resize(m_outerIndex[m_outerSize]);
526 m_data.resize(k,0);
538 if(rows==0 || cols==0) return resize(rows,cols);
596 void resize(Index rows, Index cols) function in class:Eigen::SparseMatrix
622 m_data.resize(size);
633 resize(0, 0);
641 resize(rows, cols);
698 this->m_data.resize(row
[all...]
H A DSparseVector.h171 m_data.resize(p+2,1);
196 void resize(Index rows, Index cols) function in class:Eigen::SparseVector
199 resize(IsColVector ? rows : cols);
202 void resize(Index newSize) function in class:Eigen::SparseVector
208 void resizeNonZeros(Index size) { m_data.resize(size); }
210 inline SparseVector() : m_size(0) { check_template_parameters(); resize(0); }
212 inline SparseVector(Index size) : m_size(0) { check_template_parameters(); resize(size); }
214 inline SparseVector(Index rows, Index cols) : m_size(0) { check_template_parameters(); resize(rows,cols); }
249 resize(other.size());
/external/eigen/Eigen/src/StlSupport/
H A DStdDeque.h56 #if !(defined(_GLIBCXX_DEQUE) && (!EIGEN_GNUC_AT_LEAST(4,1))) /* Note that before gcc-4.1 we already have: std::deque::resize(size_type,const T&). */
88 void resize(size_type new_size) function in class:std::deque
89 { resize(new_size, T()); }
93 void resize(size_type new_size, const value_type& x) function in class:std::deque
111 void resize(size_type new_size, const value_type& x) function in class:std::deque
121 void resize(size_type new_size, const value_type& x) function in class:std::deque
H A DStdList.h55 #if !(defined(_GLIBCXX_VECTOR) && (!EIGEN_GNUC_AT_LEAST(4,1))) /* Note that before gcc-4.1 we already have: std::list::resize(size_type,const T&). */
88 void resize(size_type new_size) function in class:std::list
89 { resize(new_size, T()); }
91 void resize(size_type new_size, const value_type& x) function in class:std::list
H A DStdVector.h77 void resize(size_type new_size) function in class:std::vector
78 { resize(new_size, T()); }
82 void resize(size_type new_size, const value_type& x) function in class:std::vector
97 /* Note that before gcc-4.1 we already have: std::vector::resize(size_type,const T&).
99 void resize(size_type new_size, const value_type& x) function in class:std::vector
101 vector_base::resize(new_size,x);
105 void resize(size_type new_size, const value_type& x) function in class:std::vector
115 void resize(size_type new_size, const value_type& x) function in class:std::vector
/external/eigen/test/
H A Darray_for_matrix.cpp183 template<typename MatrixTraits> void resize(const MatrixTraits& t) function
199 m.array().resize(rows+1,cols+1);
201 a2.matrix().resize(rows+1,cols+1);
203 v.array().resize(cols);
205 a1.matrix().resize(cols);
248 CALL_SUBTEST_4( resize(MatrixXcf(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
249 CALL_SUBTEST_5( resize(MatrixXf(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
250 CALL_SUBTEST_6( resize(MatrixXi(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineStorage.h57 resize(other.diagSize(), other.m_upperProfileSize, other.m_lowerProfileSize, other.upperSize(), other.lowerSize());
98 void resize(Index diagSize, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize, float reserveSizeFactor = 0) { function in class:Eigen::SkylineStorage
/external/icu/icu4c/source/common/
H A Dcmemory.h318 inline T *resize(int32_t newCapacity, int32_t length=0);
363 inline T *MaybeStackArray<T, stackCapacity>::resize(int32_t newCapacity, int32_t length) { function in class:MaybeStackArray
366 ::fprintf(::stderr,"MaybeStacArray (resize) alloc %d * %lu\n", newCapacity,sizeof(T));
496 inline H *resize(int32_t newCapacity, int32_t length=0);
538 inline H *MaybeStackHeaderAndArray<H, T, stackCapacity>::resize(int32_t newCapacity, function in class:MaybeStackHeaderAndArray
H A Ddictbe.cpp932 // resize without copy
933 void resize(size_t size) { function in class:AutoBuffer
1007 charPositions.resize(normalizedString.length() + 1);
H A Dnormalizer2impl.cpp71 if(remainingCapacity<2 && !resize(2, errorCode)) {
95 if(remainingCapacity<length && !resize(length, errorCode)) {
129 if(remainingCapacity<cpLength && !resize(cpLength, errorCode)) {
150 if(remainingCapacity<length && !resize(length, errorCode)) {
179 UBool ReorderingBuffer::resize(int32_t appendLength, UErrorCode &errorCode) { function in class:ReorderingBuffer
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp1053 Value::resize( ArrayIndex newSize ) function in class:Json::Value
1073 value_.array_->resize( newSize );
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp1049 Value::resize( ArrayIndex newSize ) function in class:Json::Value
1069 value_.array_->resize( newSize );
/external/libcxx/test/support/
H A Dnasty_containers.hpp121 void resize(size_type sz) { v_.resize(sz); } function in class:nasty_vector
122 void resize(size_type sz, const value_type& c) { v_.resize(sz, c); } function in class:nasty_vector
240 void resize(size_type sz) { l_.resize(); } function in class:nasty_list
241 void resize(size_type sz, const value_type& c) { l_.resize(c); } function in class:nasty_list
/external/libvterm/include/
H A Dvterm.h167 int (*resize)(int rows, int cols, void *user); member in struct:__anon25013
189 int (*resize)(int rows, int cols, VTermPos *delta, void *user); member in struct:__anon25014
231 int (*resize)(int rows, int cols, void *user); member in struct:__anon25017
/external/libvterm/src/
H A Dscreen.c471 static int resize(int new_rows, int new_cols, VTermPos *delta, void *user) function
565 if(screen->callbacks && screen->callbacks->resize)
566 return (*screen->callbacks->resize)(new_rows, new_cols, screen->cbdata);
580 .resize = &resize,
728 /* static because it's only used internally for sb_popline during resize */
/external/llvm/include/llvm/ADT/
H A DBitVector.h208 /// resize - Grow or shrink the bitvector.
209 void resize(unsigned N, bool t = false) { function in class:llvm::BitVector
424 resize(RHS.size());
432 resize(RHS.size());
494 /// setBitsInMask - Add '1' bits from Mask to this vector. Don't resize.
501 /// Don't resize. This computes "*this &= ~Mask".
507 /// Don't resize. This computes "*this |= ~Mask".
513 /// Don't resize. This computes "*this &= Mask".

Completed in 577 milliseconds

1234567