Home
last modified time | relevance | path

Searched refs:deallocate (Results 1 – 25 of 72) sorted by relevance

123

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/
Ddeallocate.pass.cpp29 a.deallocate((int*)10, 20); in main()
35 a.deallocate((int*)10, 20); in main()
41 a.deallocate((int*)10, 20); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
Ddeallocate.pass.cpp29 void deallocate(value_type* p, std::size_t n) in deallocate() function
40 std::allocator_traits<A<int> >::deallocate(a, (int*)0xDEADBEEF, 10); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
Dallocate.pass.cpp53 a.deallocate(ap, 3); in main()
60 a.deallocate(ap2, 3); in main()
Dconstruct.pass.cpp120 a.deallocate(ap, 3); in main()
149 a.deallocate(ap, 3); in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_alloc.h80 static void _STLP_CALL deallocate(void* __p, size_t /* __n */) { free((char*)__p); } in deallocate() function
93 static void _STLP_CALL deallocate(void* __p, size_t) { __stl_delete(__p); } in deallocate() function
134 static void _STLP_CALL deallocate(void *, size_t);
160 static void _STLP_CALL deallocate(void *__p, size_t __n) in deallocate() function
317 void deallocate(pointer __p, size_type __n) { in deallocate() function
323 __sgi_alloc::deallocate((void*)__p, __n * sizeof(value_type)); in deallocate()
328 …void deallocate(pointer __p) const { if (__p != 0) __sgi_alloc::deallocate((void*)__p, sizeof(val… in deallocate() function
540 void deallocate(_Tp* __p, size_type __n)
541 { __stl_alloc_rebind(__STATIC_CAST(_Base&, *this), __STATIC_CAST(_Tp*, 0)).deallocate(__p, __n); }
D_alloc.c55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) { in deallocate() function
78 __allocator_type::deallocate(__real_p, __real_n); in deallocate()
D_pthread_alloc.h79 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) { in deallocate() function
151 _S_Alloc::deallocate(__p, __n * sizeof(value_type)); in deallocate()
328 void deallocate(pointer __p, size_type __n) {
334 _S_Alloc::deallocate(__p, __n * sizeof(value_type), _M_state);
D_iostream_string.h69 void deallocate(pointer __p, size_type __n) { in deallocate() function
70 if (__p != _M_static_buf) _Base::deallocate(__p, __n); in deallocate()
D_deque.c43 _M_map.deallocate(_M_map._M_data, _M_map_size._M_data); in ~_Deque_base()
60 _STLP_UNWIND((_M_map.deallocate(_M_map._M_data, _M_map_size._M_data), in _M_initialize_map()
83 _M_map_size.deallocate(*__n, this->buffer_size()); in _M_destroy_nodes()
351 this->_M_map_size.deallocate(*__node, this->buffer_size()); in clear()
357 this->_M_map_size.deallocate(this->_M_finish._M_first, this->buffer_size()); in clear()
390 _STLP_UNWIND(this->_M_map_size.deallocate(*(this->_M_finish._M_node + 1), in _M_push_back_aux_v()
405 _STLP_UNWIND(this->_M_map_size.deallocate(*(this->_M_finish._M_node + 1), in _M_push_back_aux()
421 this->_M_map_size.deallocate(*(this->_M_start._M_node - 1), this->buffer_size()))) in _M_push_front_aux_v()
436 _STLP_UNWIND((++this->_M_start, this->_M_map_size.deallocate(*(this->_M_start._M_node - 1), in _M_push_front_aux()
444 this->_M_map_size.deallocate(this->_M_finish._M_first, this->buffer_size()); in _M_pop_back_aux()
[all …]
/ndk/tests/device/test-stlport/unit/
Dallocator_test.cpp44 charAllocator.deallocate(buf, 0); in zero_allocation()
46 charAllocator.deallocate(0, 0); in zero_allocation()
69 bigStructAlloc.deallocate(pbigStruct, 1024 * 1024 * 1024); in bad_alloc_test()
Drawriter_test.cpp60 a.deallocate(save_p, 5); in rawiter1()
/ndk/tests/device/test-gnustl-full/unit/
Dallocator_test.cpp44 charAllocator.deallocate(buf, 0); in zero_allocation()
46 charAllocator.deallocate(0, 0); in zero_allocation()
69 bigStructAlloc.deallocate(pbigStruct, 1024 * 1024 * 1024); in bad_alloc_test()
Drawriter_test.cpp60 a.deallocate(save_p, 5); in rawiter1()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
Dsp_counted_impl.hpp95 std::allocator<this_type>().deallocate( static_cast<this_type *>(p), 1 ); in operator delete()
165 std::allocator<this_type>().deallocate( static_cast<this_type *>(p), 1 ); in operator delete()
222 a2.deallocate( this, 1 ); in destroy()
/ndk/sources/cxx-stl/stlport/src/
Dallocators.cpp838 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) { in deallocate() function in _Pthread_alloc_impl
1021 __malloc_alloc::deallocate(__p, __n); in deallocate()
1059 void _Pthread_alloc_impl::deallocate(void *__p, size_t __n, __state_type* __a) { in deallocate() function in _Pthread_alloc_impl
1065 __malloc_alloc::deallocate(__p, __n); in deallocate()
1090 deallocate(__p, __old_sz); in reallocate()
1104 void _STLP_CALL _Pthread_alloc::deallocate(void *__p, size_t __n) in deallocate() function in _Pthread_alloc
1105 { _Pthread_alloc_impl::deallocate(__p, __n); } in deallocate()
1108 void _STLP_CALL _Pthread_alloc::deallocate(void *__p, size_t __n, __state_type* __a) in deallocate() function in _Pthread_alloc
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.special/
Dswap_noexcept.pass.cpp30 void deallocate(void*, unsigned) {} in deallocate() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
Dswap_noexcept.pass.cpp30 void deallocate(void*, unsigned) {} in deallocate() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/
Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} in deallocate() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.special/
Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} in deallocate() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.special/
Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} in deallocate() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.special/
Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} in deallocate() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/
Dtest_allocator.h61 void deallocate(pointer p, size_type n) in deallocate() function
95 void deallocate(T* p, std::size_t n) in deallocate() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/
Dtest_allocator.h61 void deallocate(pointer p, size_type n) in deallocate() function
95 void deallocate(T* p, std::size_t n) in deallocate() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/
Dtest_allocator.h61 void deallocate(pointer p, size_type n) in deallocate() function
95 void deallocate(T* p, std::size_t n) in deallocate() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.special/
Dswap_noexcept.pass.cpp31 void deallocate(void*, unsigned) {} in deallocate() function

123