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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
deallocate.pass.cpp 17 // void deallocate(pointer p, size_type n);
30 a.deallocate((int*)10, 20);
36 a.deallocate((int*)10, 20);
42 a.deallocate((int*)10, 20);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
deallocate.pass.cpp 17 // void deallocate(pointer p, size_type n);
30 a.deallocate((int*)10, 20);
36 a.deallocate((int*)10, 20);
42 a.deallocate((int*)10, 20);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/allocator.traits/allocator.traits.members/
deallocate.pass.cpp 15 // static void deallocate(allocator_type& a, pointer p, size_type n);
30 void deallocate(value_type* p, std::size_t n) function in struct:A
41 std::allocator_traits<A<int> >::deallocate(a, reinterpret_cast<int*>(static_cast<std::uintptr_t>(0xDEADBEEF)), 10);
  /external/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/
deallocate.pass.cpp 15 // TESTING void * memory_resource::deallocate(void *, size_t, size_t = max_align)
18 // A) 'memory_resource' contains a member 'deallocate' with the required
20 // B) The return type of 'deallocate' is 'void'.
21 // C) 'deallocate' is not marked as 'noexcept'.
22 // D) Invoking 'deallocate' invokes 'do_deallocate' with the same arguments.
41 std::is_same<decltype(M.deallocate(nullptr, 0, 0)), void>::value
45 std::is_same<decltype(M.deallocate(nullptr, 0)), void>::value
51 ! noexcept(M.deallocate(nullptr, 0, 0))
55 ! noexcept(M.deallocate(nullptr, 0))
63 M.deallocate(p, s, a)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource/memory.resource.public/
deallocate.pass.cpp 15 // TESTING void * memory_resource::deallocate(void *, size_t, size_t = max_align)
18 // A) 'memory_resource' contains a member 'deallocate' with the required
20 // B) The return type of 'deallocate' is 'void'.
21 // C) 'deallocate' is not marked as 'noexcept'.
22 // D) Invoking 'deallocate' invokes 'do_deallocate' with the same arguments.
41 std::is_same<decltype(M.deallocate(nullptr, 0, 0)), void>::value
45 std::is_same<decltype(M.deallocate(nullptr, 0)), void>::value
51 ! noexcept(M.deallocate(nullptr, 0, 0))
55 ! noexcept(M.deallocate(nullptr, 0))
63 M.deallocate(p, s, a)
    [all...]
  /external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
deallocate.pass.cpp 15 // static void deallocate(allocator_type& a, pointer p, size_type n);
32 void deallocate(value_type* p, std::size_t n) function in struct:A
44 std::allocator_traits<A<int> >::deallocate(a, reinterpret_cast<int*>(static_cast<std::uintptr_t>(0xDEADBEEF)), 10);
52 std::allocator_traits<Alloc >::deallocate(a, reinterpret_cast<VT*>(static_cast<std::uintptr_t>(0xDEADBEEF)), 10);
  /external/libcxx/test/libcxx/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
db_deallocate.pass.cpp 16 // T* polymorphic_allocator<T>::deallocate(T*, size_t size)
38 a.deallocate(nullptr, maxSize);
40 a.deallocate(nullptr, maxSize + 1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
db_deallocate.pass.cpp 16 // T* polymorphic_allocator<T>::deallocate(T*, size_t size)
38 a.deallocate(nullptr, maxSize);
40 a.deallocate(nullptr, maxSize + 1);
  /system/chre/util/include/chre/util/
synchronized_memory_pool_impl.h 34 void SynchronizedMemoryPool<ElementType, kSize>::deallocate( function in class:chre::SynchronizedMemoryPool
37 mMemoryPool.deallocate(element);
synchronized_memory_pool.h 52 void deallocate(ElementType *element);
  /external/clang/test/Analysis/Inputs/
system-header-simulator-cxx-std-suppression.h 18 void deallocate(void *p) { function in class:std::allocator
26 static void deallocate(void *p) { function in class:std::allocator_traits
27 _Alloc().deallocate(p);
81 // Fake deallocate stack-based storage.
84 __alloc_traits::deallocate(getBuffer());
88 // Fake deallocate stack-based storage, then use the variable in the
92 __alloc_traits::deallocate(getBuffer());
  /external/libcxx/test/libcxx/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/
db_deallocate.pass.cpp 16 // T* polymorphic_allocator<T>::deallocate(T*, size_t size)
41 m1.deallocate(nullptr, maxSize);
43 m1.deallocate(nullptr, maxSize + 1);
  /external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
allocate.pass.cpp 41 a.deallocate(ap, 3);
50 a.deallocate(ap2, 3);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
handler_alloc_helpers.hpp 39 inline void deallocate(void* p, std::size_t s, Handler& h) function in namespace:asio_handler_alloc_helpers
51 #define ASIO_DEFINE_HANDLER_PTR(op) struct ptr { Handler* h; void* v; op* p; ~ptr() { reset(); } void reset() { if (p) { p->~op(); p = 0; } if (v) { asio_handler_alloc_helpers::deallocate(v, sizeof(op), *h); v = 0; } } } /**/
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/bin_search_tree_/
r_erase_fn_imps.hpp 50 s_node_allocator.deallocate(p_z, 1);
102 s_node_allocator.deallocate(p_nd, 1);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binary_heap_/
split_join_fn_imps.hpp 73 s_entry_allocator.deallocate(a_entries, new_size);
76 s_entry_allocator.deallocate(a_other_entries, other_actual_size);
88 s_entry_allocator.deallocate(m_a_entries, m_actual_size);
89 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size);
132 s_entry_allocator.deallocate(a_entries, new_size);
135 s_entry_allocator.deallocate(a_other_entries, resize_policy::min_size);
144 s_entry_allocator.deallocate(m_a_entries, m_actual_size);
151 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 50 s_entry_allocator.deallocate(p_dealloc_e, 1);
89 s_entry_allocator.deallocate(p_e, 1);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/bin_search_tree_/
r_erase_fn_imps.hpp 50 s_node_allocator.deallocate(p_z, 1);
102 s_node_allocator.deallocate(p_nd, 1);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/binary_heap_/
split_join_fn_imps.hpp 73 s_entry_allocator.deallocate(a_entries, new_size);
76 s_entry_allocator.deallocate(a_other_entries, other_actual_size);
88 s_entry_allocator.deallocate(m_a_entries, m_actual_size);
89 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size);
132 s_entry_allocator.deallocate(a_entries, new_size);
135 s_entry_allocator.deallocate(a_other_entries, resize_policy::min_size);
144 s_entry_allocator.deallocate(m_a_entries, m_actual_size);
151 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 50 s_entry_allocator.deallocate(p_dealloc_e, 1);
89 s_entry_allocator.deallocate(p_e, 1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/
db_deallocate.pass.cpp 16 // T* polymorphic_allocator<T>::deallocate(T*, size_t size)
41 m1.deallocate(nullptr, maxSize);
43 m1.deallocate(nullptr, maxSize + 1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/default.allocator/allocator.members/
allocate.pass.cpp 41 a.deallocate(ap, 3);
50 a.deallocate(ap2, 3);
  /system/vold/
KeyBuffer.h 45 void deallocate(pointer p, size_type n) function in class:android::vold::ZeroingAllocator
48 std::allocator<char>::deallocate(p, n);
  /external/swiftshader/src/Common/
Memory.hpp 26 void deallocate(void *memory);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
insert_fn_imps.hpp 59 s_metadata_alloc.deallocate(m_a_metadata, m_size);

Completed in 359 milliseconds

1 2 3 4 5 6 7 8 91011>>