/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/ |
D | deallocate.pass.cpp | 29 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/ |
D | deallocate.pass.cpp | 29 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/ |
D | allocate.pass.cpp | 53 a.deallocate(ap, 3); in main() 60 a.deallocate(ap2, 3); in main()
|
D | construct.pass.cpp | 120 a.deallocate(ap, 3); in main() 149 a.deallocate(ap, 3); in main()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _alloc.h | 80 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.c | 55 __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.h | 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) { 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.h | 69 void deallocate(pointer __p, size_type __n) { in deallocate() function 70 if (__p != _M_static_buf) _Base::deallocate(__p, __n); in deallocate()
|
D | _deque.c | 43 _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-gnustl-full/unit/ |
D | allocator_test.cpp | 44 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()
|
D | rawriter_test.cpp | 60 a.deallocate(save_p, 5); in rawiter1()
|
/ndk/tests/device/test-stlport/unit/ |
D | allocator_test.cpp | 44 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()
|
D | rawriter_test.cpp | 60 a.deallocate(save_p, 5); in rawiter1()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/ |
D | sp_counted_impl.hpp | 95 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/ |
D | allocators.cpp | 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) { 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/ |
D | swap_noexcept.pass.cpp | 30 void deallocate(void*, unsigned) {} in deallocate() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/ |
D | swap_noexcept.pass.cpp | 30 void deallocate(void*, unsigned) {} in deallocate() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/ |
D | swap_noexcept.pass.cpp | 31 void deallocate(void*, unsigned) {} in deallocate() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.special/ |
D | swap_noexcept.pass.cpp | 31 void deallocate(void*, unsigned) {} in deallocate() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.special/ |
D | swap_noexcept.pass.cpp | 31 void deallocate(void*, unsigned) {} in deallocate() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.special/ |
D | swap_noexcept.pass.cpp | 31 void deallocate(void*, unsigned) {} in deallocate() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.special/ |
D | swap_noexcept.pass.cpp | 31 void deallocate(void*, unsigned) {} in deallocate() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.special/ |
D | swap_noexcept.pass.cpp | 31 void deallocate(void*, unsigned) {} in deallocate() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.special/ |
D | swap_noexcept.pass.cpp | 31 void deallocate(void*, unsigned) {} in deallocate() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.special/ |
D | swap_noexcept.pass.cpp | 31 void deallocate(void*, unsigned) {} in deallocate() function
|