Searched defs:reserve (Results 26 - 50 of 84) sorted by relevance

1234

/external/chromium_org/base/memory/
H A Dscoped_vector.h83 void reserve(size_t capacity) { v_.reserve(capacity); } function in class:ScopedVector
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dcompat.hpp91 reserve(size_t m) { function in class:clover::compat::vector
105 reserve(m);
114 reserve(n + 1);
/external/chromium_org/third_party/skia/include/core/
H A DSkTDArray.h168 void setReserve(int reserve) { argument
169 if (reserve > fReserve) {
170 this->resizeStorageToAtLeast(reserve);
H A DSkWriter32.h30 * SkWriter32 will try to back reserve and write calls with this external storage until the
62 uint32_t* reserve(size_t size) { function in class:SkWriter32
106 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFF;
110 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFFFF;
114 *(int32_t*)this->reserve(sizeof(value)) = value;
118 *(void**)this->reserve(sizeof(value)) = value;
122 *(SkScalar*)this->reserve(sizeof(value)) = value;
126 *(SkPoint*)this->reserve(sizeof(pt)) = pt;
130 *(SkRect*)this->reserve(sizeof(rect)) = rect;
134 *(SkIRect*)this->reserve(sizeo
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkTextBlob.cpp325 void SkTextBlobBuilder::reserve(size_t size) { function in class:SkTextBlobBuilder
375 this->reserve(sizeDelta);
377 // reserve may have realloced
405 this->reserve(runSize);
/external/chromium_org/third_party/skia/src/pdf/
H A DSkTSet.h202 void setReserve(int reserve) { argument
205 fSetArray->setReserve(reserve);
206 fOrderedArray->setReserve(reserve);
/external/chromium_org/third_party/smhasher/src/
H A DTypes.h108 virtual void reserve ( int keycount ) function in struct:KeyCallback
136 virtual void reserve ( int keycount ) function in struct:HashCallback
138 m_hashes.reserve(keycount);
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dscoped_vector.h93 void reserve(size_t capacity) { v_.reserve(capacity); } function in class:webrtc::ScopedVector
/external/chromium_org/tools/gn/
H A Dunique_vector.h129 void reserve(size_t s) { vector_.reserve(s); } function in class:UniqueVector
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h59 reserve(C, N);
178 void reserve(BumpVectorContext &C, unsigned N) { function in class:clang::BumpVector
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArray.java333 public void mark(int reserve) { argument
/external/eigen/Eigen/src/SparseCore/
H A DCompressedStorage.h73 void reserve(size_t size) function in class:Eigen::internal::CompressedStorage
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineStorage.h87 void reserve(Index size, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize) { function in class:Eigen::SkylineStorage
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DDynamicSparseMatrix.h130 void reserve(Index reserveSize = 1000) function in class:Eigen::DynamicSparseMatrix
137 m_data[j].reserve(reserveSizePerVector);
281 * Set the matrix to zero and reserve the memory for \a reserveSize nonzero coefficients. */
285 reserve(reserveSize);
/external/libcxx/test/support/
H A Dnasty_containers.hpp70 void reserve(size_type n) { v_.reserve(n); }; function in class:nasty_vector
/external/libpcap/missing/
H A Dsnprintf.c73 int (*reserve)(struct state *, size_t); member in struct:state
583 state.reserve = as_reserve;
622 state.reserve = sn_reserve;
/external/llvm/include/llvm/ADT/
H A DBitVector.h229 void reserve(unsigned N) { function in class:llvm::BitVector
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dcompat.hpp91 reserve(size_t m) { function in class:clover::compat::vector
105 reserve(m);
114 reserve(n + 1);
/external/qemu/android/base/
H A DString.cpp57 reserve(0U);
205 reserve(newSize);
217 reserve(newCapacity);
225 void String::reserve(size_t newSize) { function in class:android::String
329 strings[n - 1U].reserve(0U);
/external/qemu/android/base/containers/
H A DPodVector.h91 void reserve(size_t newSize, size_t itemSize);
144 // use resize() or reserve() instead.
153 // items. This may or may not call reserve() under the hood.
162 void reserve(size_t newSize) { function in class:android::base::PodVector
163 PodVectorBase::reserve(newSize, sizeof(T));
/external/skia/include/core/
H A DSkTDArray.h168 void setReserve(int reserve) { argument
169 if (reserve > fReserve) {
170 this->resizeStorageToAtLeast(reserve);
H A DSkWriter32.h30 * SkWriter32 will try to back reserve and write calls with this external storage until the
62 uint32_t* reserve(size_t size) { function in class:SkWriter32
106 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFF;
110 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFFFF;
114 *(int32_t*)this->reserve(sizeof(value)) = value;
118 *(void**)this->reserve(sizeof(value)) = value;
122 *(SkScalar*)this->reserve(sizeof(value)) = value;
126 *(SkPoint*)this->reserve(sizeof(pt)) = pt;
130 *(SkRect*)this->reserve(sizeof(rect)) = rect;
134 *(SkIRect*)this->reserve(sizeo
[all...]
/external/skia/src/pdf/
H A DSkTSet.h202 void setReserve(int reserve) { argument
205 fSetArray->setReserve(reserve);
206 fOrderedArray->setReserve(reserve);
/external/stlport/stlport/stl/pointers/
H A D_vector.h153 void reserve(size_type __n) {_M_impl.reserve(__n);} function in class:vector
/external/tcpdump/missing/
H A Dsnprintf.c73 int (*reserve)(struct state *, size_t); member in struct:state
583 state.reserve = as_reserve;
622 state.reserve = sn_reserve;

Completed in 509 milliseconds

1234