/external/eigen/Eigen/src/StlSupport/ |
H A D | StdDeque.h | 56 #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 D | StdList.h | 55 #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 D | StdVector.h | 77 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 D | SkPageFlipper.cpp | 32 void SkPageFlipper::resize(int width, int height) { function in class:SkPageFlipper
|
/external/llvm/include/llvm/ADT/ |
H A D | IndexedMap.h | 60 void resize(typename StorageT::size_type s) { function in class:llvm::IndexedMap 61 storage_.resize(s, nullVal_); 71 resize(NewSize);
|
H A D | PackedVector.h | 108 void resize(unsigned N) { Bits.resize(N << (BitNum-1)); } function in class:llvm::PackedVector 118 resize(size()+1);
|
H A D | BitVector.h | 191 /// 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 D | deRingBuffer.hpp | 42 void resize (int newSize); 95 void RingBuffer<T>::resize (int newSize) function in class:de::RingBuffer
|
/external/deqp/framework/opengl/ |
H A D | gluObjectWrapper.cpp | 93 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 D | DenseStorage.h | 133 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 D | ArrayWrapper.h | 130 * \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 D | DenseBase.h | 213 /** 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 D | DiagonalMatrix.h | 204 inline void resize(Index size) { m_diagonal.resize(size); } function in class:Eigen::DiagonalMatrix
|
H A D | Transpositions.h | 102 inline void resize(int newSize) function in class:Eigen::TranspositionsBase 104 indices().resize(newSize);
|
/external/regex-re2/util/ |
H A D | sparse_set.h | 91 void resize(int new_max_size) { function in class:re2::SparseSet
|
/external/eigen/test/ |
H A D | array_for_matrix.cpp | 183 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 D | GrGLVertexArray.h | 55 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 D | SparseFieldVector.java | 76 * @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 D | AmbiVector.h | 33 resize(size); 54 void resize(Index size) function in class:Eigen::internal::AmbiVector
|
H A D | CompressedStorage.h | 42 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 D | SkylineStorage.h | 57 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 D | cmemory.h | 319 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 D | nasty_containers.hpp | 121 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 D | vnc2mpg.c | 317 static rfbBool resize(rfbClient* client) { function 402 client->MallocFrameBuffer=resize;
|
/external/libvncserver/test/ |
H A D | encodingstest.c | 102 static rfbBool resize(rfbClient* cl) { function 189 client->MallocFrameBuffer=resize;
|