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

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/test-gnustl-full/unit/
rawriter_test.cpp 60 a.deallocate(save_p, 5);
63 a.deallocate(save_p);
  /ndk/tests/device/test-stlport/unit/
rawriter_test.cpp 60 a.deallocate(save_p, 5);
63 a.deallocate(save_p);
  /external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
deallocate.pass.cpp 15 // 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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/
deallocate.pass.cpp 15 // 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);
  /system/core/libmemunreachable/
Allocator.h 54 // Deallocate allocation returned by allocate
55 void deallocate(void*);
59 static void deallocate(HeapImpl* impl, void* ptr);
76 // deallocate
86 deallocate(impl, ptr);
91 // deallocate
129 void deallocate(T* ptr, std::size_t) {
130 heap_.deallocate(ptr);
171 using STLAllocator<T>::deallocate;
177 void deallocate(void* ptr)
    [all...]
  /system/core/libmemunreachable/tests/
Allocator_test.cpp 45 allocator.deallocate(ptr);
55 allocator.deallocate(ptr1);
58 allocator.deallocate(ptr3);
59 allocator.deallocate(ptr2);
83 allocator.deallocate(ptr[i]);
92 allocator.deallocate(ptr);
108 allocator.deallocate(ptr[i]);
129 b.deallocate(ptr1);
130 d.deallocate(ptr2);
131 a.deallocate(ptr3)
    [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);
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);
  /external/srtp/googlepatches/
google-9-rdbx-leak-plug.patch 137 * fails, then we report that fact without trying to deallocate
141 /* deallocate cipher, if it is not the same as that in template */
152 /* deallocate auth function, if it is not the same as that in template */
163 /* deallocate key usage limit, if it is not the same as that in template */
175 * deallocate rtcp cipher, if it is not the same as that in
188 * deallocate rtcp auth function, if it is not the same as that in
201 /* DAM - need to deallocate EKT here */
204 /* deallocate srtp stream context */
235 /* deallocate stream template, if there is one */
254 /* deallocate session context *
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
deallocate.pass.cpp 15 // 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);
  /external/llvm/include/llvm/Support/
RecyclingAllocator.h 48 /// Deallocate - Release storage for the pointed-to object. The
52 void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); }
74 A.Deallocate(E);
Allocator.h 13 /// Allocate method accepting a size and alignment, and a Deallocate accepting
15 /// Allocate and Deallocate for setting size and alignment based on the final
58 /// \brief Deallocate \a Ptr to \a Size bytes of memory allocated by this
60 void Deallocate(const void *Ptr, size_t Size) {
63 &AllocatorBase::Deallocate) !=
65 &DerivedT::Deallocate),
67 "core Deallocate(void *) overload!");
69 return static_cast<DerivedT *>(this)->Deallocate(Ptr, Size);
80 /// \brief Deallocate space for a sequence of objects without constructing them.
84 Deallocate(T *Ptr, size_t Num = 1)
    [all...]
  /external/valgrind/massif/tests/
basic.c 3 // Allocate some memory and then deallocate it, to get a nice up-then-down
  /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.11-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/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/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/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/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);
  /external/libcxx/test/std/containers/associative/map/map.special/
swap_noexcept.pass.cpp 35 void deallocate(void*, unsigned) {} function in struct:some_comp
47 void deallocate(void*, unsigned) {} function in struct:some_comp2
63 void deallocate(void*, unsigned) {} function in struct:some_alloc
75 void deallocate(void*, unsigned) {} function in struct:some_alloc2
88 void deallocate(void*, unsigned) {} function in struct:some_alloc3
  /external/libcxx/test/std/containers/associative/multimap/multimap.special/
swap_noexcept.pass.cpp 35 void deallocate(void*, unsigned) {} function in struct:some_comp
47 void deallocate(void*, unsigned) {} function in struct:some_comp2
63 void deallocate(void*, unsigned) {} function in struct:some_alloc
75 void deallocate(void*, unsigned) {} function in struct:some_alloc2
88 void deallocate(void*, unsigned) {} function in struct:some_alloc3
  /external/libcxx/test/std/containers/associative/multiset/multiset.special/
swap_noexcept.pass.cpp 35 void deallocate(void*, unsigned) {} function in struct:some_comp
47 void deallocate(void*, unsigned) {} function in struct:some_comp2
63 void deallocate(void*, unsigned) {} function in struct:some_alloc
75 void deallocate(void*, unsigned) {} function in struct:some_alloc2
88 void deallocate(void*, unsigned) {} function in struct:some_alloc3
  /external/libcxx/test/std/containers/associative/set/set.special/
swap_noexcept.pass.cpp 35 void deallocate(void*, unsigned) {} function in struct:some_comp
47 void deallocate(void*, unsigned) {} function in struct:some_comp2
63 void deallocate(void*, unsigned) {} function in struct:some_alloc
75 void deallocate(void*, unsigned) {} function in struct:some_alloc2
88 void deallocate(void*, unsigned) {} function in struct:some_alloc3
  /packages/apps/Nfc/nxp/jni/
com_android_nfc_list.cpp 112 ALOGE("Failed to deallocate (list empty)");
142 ALOGE("Failed to deallocate (not found %8p)", pData);
153 /* Deallocate the node */
174 ALOGE("Failed to deallocate (list empty)");
188 /* Remove and deallocate the node */
  /external/clang/test/Analysis/Inputs/
system-header-simulator-cxx.h 123 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());
  /device/huawei/angler/camera/QCamera2/HAL3/
QCamera3StreamMem.h 76 void deallocate(); //TODO: replace with unified clear() function?
78 // Clear function: unregister for gralloc buffer, and deallocate for heap buffer
79 void clear() {unregisterBuffers(); deallocate(); }
  /device/lge/bullhead/camera/QCamera2/HAL3/
QCamera3StreamMem.h 76 void deallocate(); //TODO: replace with unified clear() function?
78 // Clear function: unregister for gralloc buffer, and deallocate for heap buffer
79 void clear() {unregisterBuffers(); deallocate(); }

Completed in 1153 milliseconds

1 2 3 4 5 6 7 8 91011>>