Searched refs:deallocate (Results 1 - 25 of 59) sorted by relevance

123

/external/llvm/unittests/Support/
H A DArrayRecyclerTest.cpp75 DUT.deallocate(Cap, A2);
87 DUT.deallocate(Cap, A2x);
88 DUT.deallocate(Cap, A1);
89 DUT.deallocate(Cap, A3);
/external/stlport/stlport/stl/
H A D_alloc.c55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) { function in class:_Alloc
78 __allocator_type::deallocate(__real_p, __real_n);
H A D_alloc.h80 static void _STLP_CALL deallocate(void* __p, size_t /* __n */) { free((char*)__p); } function in class:__malloc_alloc
93 static void _STLP_CALL deallocate(void* __p, size_t) { __stl_delete(__p); } function in class:__new_alloc
134 static void _STLP_CALL deallocate(void *, size_t);
160 static void _STLP_CALL deallocate(void *__p, size_t __n) function in class:__node_alloc
317 void deallocate(pointer __p, size_type __n) { function in class:allocator
323 __sgi_alloc::deallocate((void*)__p, __n * sizeof(value_type));
328 void deallocate(pointer __p) const { if (__p != 0) __sgi_alloc::deallocate((void*)__p, sizeof(value_type)); } function in class:allocator
534 // Unified interface to perform allocate()/deallocate() with limited
540 void deallocate(_T function in class:_STLP_alloc_proxy
[all...]
H A D_iostream_string.h69 void deallocate(pointer __p, size_type __n) { function in class:__iostring_allocator
70 if (__p != _M_static_buf) _Base::deallocate(__p, __n);
H A D_pthread_alloc.h35 * It is not an error to allocate memory in thread A and deallocate
79 static void _STLP_CALL deallocate(void *__p, size_t __n);
86 static void _STLP_CALL deallocate(void *__p, size_t __n, __state_type* __a);
145 void deallocate(pointer __p, size_type __n) { function in class:pthread_allocator
151 _S_Alloc::deallocate(__p, __n * sizeof(value_type));
328 void deallocate(pointer __p, size_type __n) { function in class:per_thread_allocator
334 _S_Alloc::deallocate(__p, __n * sizeof(value_type), _M_state);
H A D_deque.c43 _M_map.deallocate(_M_map._M_data, _M_map_size._M_data);
60 _STLP_UNWIND((_M_map.deallocate(_M_map._M_data, _M_map_size._M_data),
83 _M_map_size.deallocate(*__n, this->buffer_size());
351 this->_M_map_size.deallocate(*__node, this->buffer_size());
357 this->_M_map_size.deallocate(this->_M_finish._M_first, this->buffer_size());
390 _STLP_UNWIND(this->_M_map_size.deallocate(*(this->_M_finish._M_node + 1),
405 _STLP_UNWIND(this->_M_map_size.deallocate(*(this->_M_finish._M_node + 1),
421 this->_M_map_size.deallocate(*(this->_M_start._M_node - 1), this->buffer_size())))
436 _STLP_UNWIND((++this->_M_start, this->_M_map_size.deallocate(*(this->_M_start._M_node - 1),
444 this->_M_map_size.deallocate(thi
[all...]
H A D_string_base.h97 _M_start_of_storage.deallocate(_M_start_of_storage._M_data, _M_buffers._M_end_of_storage - _M_start_of_storage._M_data);
100 _M_start_of_storage.deallocate(_M_start_of_storage._M_data, _M_end_of_storage - _M_start_of_storage._M_data);
H A D_rope.c81 _M_size.deallocate(__cstr, _p_size);
324 _RopeLeaf).deallocate(__l, 1);
333 _RopeConcatenation).deallocate(__c, 1);
342 _RopeFunction).deallocate(__f, 1);
351 _RopeSubstring).deallocate(__rss, 1);
461 _RopeConcatenation).deallocate(__result,1)))
462 // In case of exception, we need to deallocate
831 __r->get_allocator().deallocate(__buffer, __len);
833 _STLP_UNWIND((__r->get_allocator().deallocate(__buffer, __len)))
1329 _STLP_CREATE_ALLOCATOR(allocator_type,(const allocator_type&)_M_tree_ptr, _CharT).deallocate(__old_c_strin
[all...]
/external/stlport/test/unit/
H A Dallocator_test.cpp44 charAllocator.deallocate(buf, 0);
46 charAllocator.deallocate(0, 0);
69 bigStructAlloc.deallocate(pbigStruct, 1024 * 1024 * 1024);
H A Drawriter_test.cpp60 a.deallocate(save_p, 5);
63 a.deallocate(save_p);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImplCF.cpp61 underlyingString->ref(); // Balanced by call to deref in deallocate below.
87 static void deallocate(void* pointer, void*) function in namespace:WTF::StringWrapperCFAllocator
115 CFAllocatorContext context = { 0, 0, retain, release, copyDescription, allocate, reallocate, deallocate, preferredSize };
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dstl_allocator.h85 void deallocate(pointer p, size_type n) { Alloc::Free(p, n * sizeof(T)); } function in class:STL_Allocator
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dstl_allocator.h85 void deallocate(pointer p, size_type n) { Alloc::Free(p, n * sizeof(T)); } function in class:STL_Allocator
/external/clang/include/clang/Lex/
H A DMacroArgs.h66 /// destroy - Destroy and deallocate the memory for this object.
118 /// deallocate - This should only be called by the Preprocessor when managing
120 MacroArgs *deallocate();
/external/stlport/test/eh/
H A DPrefix.h149 void deallocate(pointer __p, size_type __n) const { function in class:EH_allocator
151 if (__p != 0) EH_STD::__new_alloc::deallocate((void*)__p, __n * sizeof(value_type));
154 void deallocate(pointer __p) const { if (__p != 0) EH_STD::__new_alloc::deallocate((void*)__p, sizeof(value_type)); } function in class:EH_allocator
/external/chromium/base/
H A Dstack_container.h111 void deallocate(pointer p, size_type n) { function in class:StackAllocator
115 std::allocator<T>::deallocate(p, n);
/external/chromium_org/courgette/
H A Dmemory_allocator.h159 // deallocate it.
193 void deallocate(pointer ptr, size_type size) { function in class:courgette::MemoryAllocator
287 void deallocate(pointer ptr, size_type size) {
339 alloc_.deallocate(buffer_, alloc_size_);
367 alloc_.deallocate(buffer_, alloc_size_);
/external/llvm/include/llvm/Support/
H A DArrayRecycler.h136 void deallocate(Capacity Cap, T *Ptr) { function in class:llvm::ArrayRecycler
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DCppBoundClass.cpp117 static void deallocate(NPObject*);
150 CppNPObject::deallocate,
169 void CppNPObject::deallocate(NPObject* npObj) function in class:WebTestRunner::CppNPObject
/external/chromium_org/webkit/renderer/
H A Dcpp_bound_class.cc89 static void deallocate(NPObject* obj);
124 CppNPObject::deallocate,
142 /* static */ void CppNPObject::deallocate(NPObject* np_obj) { function in class:webkit_glue::CppNPObject
/external/stlport/src/
H A Dallocators.cpp467 /* We deallocate all the memory chunks */
662 /* We deallocate all the memory chunks */
838 static void deallocate(void *__p, size_t __n);
845 static void deallocate(void *__p, size_t __n, __state_type* __a);
1014 void _Pthread_alloc_impl::deallocate(void *__p, size_t __n) { function in class:_Pthread_alloc_impl
1021 __malloc_alloc::deallocate(__p, __n);
1059 void _Pthread_alloc_impl::deallocate(void *__p, size_t __n, __state_type* __a) { function in class:_Pthread_alloc_impl
1065 __malloc_alloc::deallocate(__p, __n);
1090 deallocate(__p, __old_sz);
1104 void _STLP_CALL _Pthread_alloc::deallocate(voi function in class:_Pthread_alloc
1108 void _STLP_CALL _Pthread_alloc::deallocate(void *__p, size_t __n, __state_type* __a) function in class:_Pthread_alloc
[all...]
/external/chromium/webkit/glue/
H A Dcpp_bound_class.cc85 static void deallocate(NPObject* obj);
120 CppNPObject::deallocate,
138 /* static */ void CppNPObject::deallocate(NPObject* np_obj) { function in class:CppNPObject
/external/chromium_org/tools/memory_watcher/
H A Dmemory_hook.h42 void deallocate(void* p, size_type) { function in class:PrivateHookAllocator
/external/chromium_org/base/containers/
H A Dstack_container.h111 void deallocate(pointer p, size_type n) { function in class:base::StackAllocator
115 std::allocator<T>::deallocate(p, n);
/external/chromium_org/third_party/angle/src/compiler/
H A DPoolAlloc.h149 // There is no deallocate. The point of this class is that
151 // of use is to simultaneously deallocate everything at once
264 // libCStd on some platforms have a different allocate/deallocate interface.
273 void deallocate(void*, size_type) {} function in class:pool_allocator
281 void deallocate(pointer, size_type) {} function in class:pool_allocator

Completed in 1568 milliseconds

123