Searched defs:resize (Results 1 - 25 of 87) sorted by relevance

1234

/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/skia/src/images/
H A DSkPageFlipper.cpp32 void SkPageFlipper::resize(int width, int height) { function in class:SkPageFlipper
/external/llvm/include/llvm/ADT/
H A DIndexedMap.h60 void resize(typename StorageT::size_type s) { function in class:llvm::IndexedMap
61 storage_.resize(s, nullVal_);
71 resize(NewSize);
H A DPackedVector.h108 void resize(unsigned N) { Bits.resize(N << (BitNum-1)); } function in class:llvm::PackedVector
118 resize(size()+1);
H A DBitVector.h191 /// resize - Grow or shrink the bitvector.
192 void resize(unsigned N, bool t = false) { function in class:llvm::BitVector
408 resize(RHS.size());
416 resize(RHS.size());
479 /// setBitsInMask - Add '1' bits from Mask to this vector. Don't resize.
486 /// Don't resize. This computes "*this &= ~Mask".
492 /// Don't resize. This computes "*this |= ~Mask".
498 /// Don't resize. This computes "*this &= Mask".
/external/deqp/framework/delibs/decpp/
H A DdeRingBuffer.hpp42 void resize (int newSize);
95 void RingBuffer<T>::resize (int newSize) function in class:de::RingBuffer
/external/deqp/framework/opengl/
H A DgluObjectWrapper.cpp93 resize(numObjects);
101 void ObjectVector::resize (size_t newSize) function in class:glu::ObjectVector
111 m_objects.resize(newSize, 0);
117 m_objects.resize(newSize);
/external/eigen/Eigen/src/Core/
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 DArrayWrapper.h130 * \sa DenseBase::resize(Index) */
131 void resize(Index newSize) { m_expression.const_cast_derived().resize(newSize); } function in class:Eigen::ArrayWrapper
133 * \sa DenseBase::resize(Index,Index)*/
134 void resize(Index nbRows, Index nbCols) { m_expression.const_cast_derived().resize(nbRows,nbCols); } function in class:Eigen::ArrayWrapper
252 * \sa DenseBase::resize(Index) */
253 void resize(Index newSize) { m_expression.const_cast_derived().resize(newSize); } function in class:Eigen::MatrixWrapper
255 * \sa DenseBase::resize(Inde
256 void resize(Index nbRows, Index nbCols) { m_expression.const_cast_derived().resize(nbRows,nbCols); } function in class:Eigen::MatrixWrapper
[all...]
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 DDiagonalMatrix.h204 inline void resize(Index size) { m_diagonal.resize(size); } function in class:Eigen::DiagonalMatrix
H A DTranspositions.h102 inline void resize(int newSize) function in class:Eigen::TranspositionsBase
104 indices().resize(newSize);
/external/regex-re2/util/
H A Dsparse_set.h91 void resize(int new_max_size) { function in class:re2::SparseSet
/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/skia/src/gpu/gl/
H A DGrGLVertexArray.h55 this->resize(arrayCount);
58 void resize(int newCount) { function in class:GrGLAttribArrayState
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DSparseFieldVector.java76 * @param resize The amount to resize it
78 protected SparseFieldVector(SparseFieldVector<T> v, int resize) { argument
80 virtualSize = v.getDimension() + resize;
/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);
/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.h319 inline T *resize(int32_t newCapacity, int32_t length=0);
364 inline T *MaybeStackArray<T, stackCapacity>::resize(int32_t newCapacity, int32_t length) { function in class:MaybeStackArray
367 ::fprintf(::stderr,"MaybeStacArray (resize) alloc %d * %lu\n", newCapacity,sizeof(T));
497 inline H *resize(int32_t newCapacity, int32_t length=0);
539 inline H *MaybeStackHeaderAndArray<H, T, stackCapacity>::resize(int32_t newCapacity, function in class:MaybeStackHeaderAndArray
/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/libvncserver/client_examples/
H A Dvnc2mpg.c317 static rfbBool resize(rfbClient* client) { function
402 client->MallocFrameBuffer=resize;
/external/libvncserver/test/
H A Dencodingstest.c102 static rfbBool resize(rfbClient* cl) { function
189 client->MallocFrameBuffer=resize;

Completed in 790 milliseconds

1234