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

1 2 3 4 5 6 7 8 9

  /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/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) { function in class:_Alloc
78 __allocator_type::deallocate(__real_p, __real_n);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.special/
swap_noexcept.pass.cpp 31 void deallocate(void*, unsigned) {} function in struct:some_comp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.special/
swap_noexcept.pass.cpp 31 void deallocate(void*, unsigned) {} function in struct:some_comp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.special/
swap_noexcept.pass.cpp 31 void deallocate(void*, unsigned) {} function in struct:some_comp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.special/
swap_noexcept.pass.cpp 31 void deallocate(void*, unsigned) {} function in struct:some_comp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.special/
swap_noexcept.pass.cpp 31 void deallocate(void*, unsigned) {} function in struct:some_alloc
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/
swap_noexcept.pass.cpp 31 void deallocate(void*, unsigned) {} function in struct:some_alloc
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.special/
swap_noexcept.pass.cpp 31 void deallocate(void*, unsigned) {} function in struct:some_alloc
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.special/
swap_noexcept.pass.cpp 31 void deallocate(void*, unsigned) {} function in struct:some_alloc
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
swap_noexcept.pass.cpp 30 void deallocate(void*, unsigned) {} function in struct:some_alloc
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.special/
swap_noexcept.pass.cpp 30 void deallocate(void*, unsigned) {} function in struct:some_alloc
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) { function in class:_Alloc
78 __allocator_type::deallocate(__real_p, __real_n);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) { function in class:_Alloc
78 __allocator_type::deallocate(__real_p, __real_n);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) { function in class:_Alloc
78 __allocator_type::deallocate(__real_p, __real_n);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) { function in class:_Alloc
78 __allocator_type::deallocate(__real_p, __real_n);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) { function in class:_Alloc
78 __allocator_type::deallocate(__real_p, __real_n);
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) { function in class:_Alloc
78 __allocator_type::deallocate(__real_p, __real_n);
  /art/runtime/gc/accounting/
gc_allocator.h 66 void deallocate(PT p, size_type n) { function in class:art::gc::accounting::GCAllocatorImpl
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/cf/
StringImplCF.cpp 61 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/
stl_allocator.h 85 void deallocate(pointer p, size_type n) { Alloc::Free(p, n * sizeof(T)); } function in class:STL_Allocator
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
stl_allocator.h 85 void deallocate(pointer p, size_type n) { Alloc::Free(p, n * sizeof(T)); } function in class:STL_Allocator
  /external/llvm/include/llvm/Support/
ArrayRecycler.h 106 Allocator.Deallocate(Ptr);
109 /// Special case for BumpPtrAllocator which has an empty Deallocate()
132 /// Deallocate an array with the specified Capacity.
136 void deallocate(Capacity Cap, T *Ptr) { function in class:llvm::ArrayRecycler
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/
stack_allocator.h 43 void deallocate(pointer p, size_type n) function in class:stack_allocator
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
splay-tree.h 72 /* The type of a function used to deallocate any resources associated
76 /* The type of a function used to deallocate any resources associated
116 /* The deallocate-key function. NULL if no cleanup is necessary. */
119 /* The deallocate-value function. NULL if no cleanup is necessary. */
126 splay_tree_deallocate_fn deallocate; variable

Completed in 307 milliseconds

1 2 3 4 5 6 7 8 9