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

1234

/external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
H A Ddeallocate.pass.cpp15 // static void deallocate(allocator_type& a, pointer p, size_type n);
29 void deallocate(value_type* p, std::size_t n) function in struct:A
40 std::allocator_traits<A<int> >::deallocate(a, (int*)0xDEADBEEF, 10);
H A DAndroid.mk43 test_name := utilities/memory/allocator.traits/allocator.traits.members/deallocate
44 test_src := deallocate.pass.cpp
/external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/
H A Ddeallocate.pass.cpp15 // void deallocate(pointer p, size_type n);
29 a.deallocate((int*)10, 20);
35 a.deallocate((int*)10, 20);
41 a.deallocate((int*)10, 20);
H A DAndroid.mk51 test_name := utilities/allocator.adaptor/allocator.adaptor.members/deallocate
52 test_src := deallocate.pass.cpp
/external/libcxx/test/utilities/memory/default.allocator/allocator.members/
H A Dallocate.pass.cpp53 a.deallocate(ap, 3);
60 a.deallocate(ap2, 3);
H A Dconstruct.pass.cpp120 a.deallocate(ap, 3);
149 a.deallocate(ap, 3);
/external/libcxx/test/strings/basic.string/string.nonmembers/string.special/
H A Dswap_noexcept.pass.cpp30 void deallocate(void*, unsigned) {} function in struct:some_alloc
/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);
/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/libcxx/test/containers/associative/map/map.special/
H A Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} function in struct:some_comp
/external/libcxx/test/containers/associative/multimap/multimap.special/
H A Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} function in struct:some_comp
/external/libcxx/test/containers/associative/multiset/multiset.special/
H A Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} function in struct:some_comp
/external/libcxx/test/containers/associative/set/set.special/
H A Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} function in struct:some_comp
/external/libcxx/test/containers/sequences/deque/deque.special/
H A Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} function in struct:some_alloc
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/
H A Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} function in struct:some_alloc
/external/libcxx/test/containers/sequences/list/list.special/
H A Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} function in struct:some_alloc
/external/libcxx/test/containers/sequences/vector/vector.special/
H A Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} function in struct:some_alloc
/external/libcxx/test/containers/sequences/vector.bool/
H A Dswap_noexcept.pass.cpp30 void deallocate(void*, unsigned) {} function in struct:some_alloc
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h123 void deallocate(void *p) { function in class:std::allocator
131 static void deallocate(void *p) { function in class:std::allocator_traits
132 _Alloc().deallocate(p);
186 // Fake deallocate stack-based storage.
189 __alloc_traits::deallocate(getBuffer());
193 // Fake deallocate stack-based storage, then use the variable in the
197 __alloc_traits::deallocate(getBuffer());
/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

Completed in 1944 milliseconds

1234