HomeSort by relevance Sort by last modified time
    Searched refs:reallocate (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/heap/
HeapTerminatedArray.h 41 return reinterpret_cast<HeapTerminatedArray*>(Heap::reallocate<HeapTerminatedArray>(ptr, capacity * sizeof(T)));
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringBuffer.h 69 m_data = StringImpl::reallocate(m_data.release(), newLength);
StringImplCF.cpp 69 static void* reallocate(void* pointer, CFIndex newSize, CFOptionFlags, void*) function in namespace:WTF::StringWrapperCFAllocator
115 CFAllocatorContext context = { 0, 0, retain, release, copyDescription, allocate, reallocate, deallocate, preferredSize };
StringBuilder.cpp 163 // If the buffer has only one ref (by this StringBuilder), reallocate it,
171 m_buffer = StringImpl::reallocate(m_buffer.release(), requiredLength);
180 // If the buffer has only one ref (by this StringBuilder), reallocate it,
187 m_buffer = StringImpl::reallocate(m_buffer.release(), requiredLength);
StringImpl.h 205 // Reallocate the StringImpl. The originalString must be only owned by the PassRefPtr.
207 static PassRefPtr<StringImpl> reallocate(PassRefPtr<StringImpl> originalString, unsigned length);
  /external/icu/icu4c/source/i18n/
sortkey.cpp 63 (count > getCapacity() && reallocate(count, 0) == NULL)) {
84 if (length > getCapacity() && reallocate(length, 0) == NULL) {
99 uint8_t *CollationKey::reallocate(int32_t newCapacity, int32_t length) { function in class:CollationKey
157 if (length > getCapacity() && reallocate(length, 0) == NULL) {
  /external/eigen/Eigen/src/SparseCore/
CompressedStorage.h 77 reallocate(newAllocatedSize);
83 reallocate(m_size);
89 reallocate(size + size_t(reserveSizeFactor*double(size)));
205 inline void reallocate(size_t size) function in class:Eigen::internal::CompressedStorage
AmbiVector.h 57 reallocate(size);
65 void reallocate(Index size) function in class:Eigen::internal::AmbiVector
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineStorage.h 90 reallocate(size, upperProfileSize, lowerProfileSize, upperSize, lowerSize);
95 reallocate(m_diagSize, m_upperProfileSize, m_lowerProfileSize, m_upperSize, m_lowerSize);
100 reallocate(diagSize, upperProfileSize, lowerProfileSize, upperSize + Index(reserveSizeFactor * upperSize), lowerSize + Index(reserveSizeFactor * lowerSize));
203 inline void reallocate(Index diagSize, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize) { function in class:Eigen::SkylineStorage
  /external/icu/icu4c/source/i18n/unicode/
sortkey.h 250 uint8_t *reallocate(int32_t newCapacity, int32_t length);
  /frameworks/native/opengl/libagl/
TextureObjectManager.h 54 status_t reallocate(GLint level,
TextureObjectManager.cpp 160 status_t EGLTextureObject::reallocate( function in class:android::EGLTextureObject
mipmap.cpp 47 if (tex->reallocate(level, w, h, w,
texture.cpp 386 status_t err = tex->reallocate(level,
397 status_t err = tex->reallocate(level,
    [all...]
  /frameworks/native/include/ui/
GraphicBuffer.h 95 status_t reallocate(uint32_t w, uint32_t h, PixelFormat f, uint32_t usage);
  /external/stlport/src/
allocators.cpp 847 static void * reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
1078 void *_Pthread_alloc_impl::reallocate(void *__p, size_t __old_sz, size_t& __new_sz) { function in class:_Pthread_alloc_impl
1110 void * _STLP_CALL _Pthread_alloc::reallocate(void *__p, size_t __old_sz, size_t& __new_sz) function in class:_Pthread_alloc
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
allocators.cpp 847 static void * reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
1078 void *_Pthread_alloc_impl::reallocate(void *__p, size_t __old_sz, size_t& __new_sz) { function in class:_Pthread_alloc_impl
1110 void * _STLP_CALL _Pthread_alloc::reallocate(void *__p, size_t __old_sz, size_t& __new_sz) function in class:_Pthread_alloc
    [all...]
  /external/stlport/stlport/stl/
_pthread_alloc.h 88 static void * _STLP_CALL reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_pthread_alloc.h 88 static void * _STLP_CALL reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_pthread_alloc.h 88 static void * _STLP_CALL reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_pthread_alloc.h 88 static void * _STLP_CALL reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_pthread_alloc.h 88 static void * _STLP_CALL reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_pthread_alloc.h 88 static void * _STLP_CALL reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_pthread_alloc.h 88 static void * _STLP_CALL reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
  /frameworks/native/libs/ui/
GraphicBuffer.cpp 134 status_t GraphicBuffer::reallocate(uint32_t w, uint32_t h, PixelFormat f, function in class:android::GraphicBuffer

Completed in 756 milliseconds

1 2