Searched defs:Deallocate (Results 1 - 11 of 11) sorted by relevance

/external/llvm/include/llvm/Support/
H A DRecycler.h70 Allocator.Deallocate(t);
74 /// Special case for BumpPtrAllocator which has an empty Deallocate()
97 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) { function in class:llvm::Recycler
H A DRecyclingAllocator.h48 /// Deallocate - Release storage for the pointed-to object. The
52 void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); } function in class:llvm::RecyclingAllocator
74 A.Deallocate(E);
H A DAllocator.h13 /// 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) { function in class:llvm::AllocatorBase
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( function in class:llvm::AllocatorBase
101 void Deallocate(const void *Ptr, size_t /*Size*/) { function in class:llvm::MallocAllocator
262 void Deallocate(const void *Ptr, size_t Size) { function in class:llvm::BumpPtrAllocatorImpl
[all...]
/external/llvm/unittests/Support/
H A DAllocatorTest.cpp162 void Deallocate(void *Slab, size_t Size) { function in class:__anon13214::MockSlabAllocator
/external/opencv/
H A DWLNonFileByteStream.cpp29 Deallocate();
42 void WLNonFileByteStream::Deallocate() function in class:WLNonFileByteStream
67 Deallocate();
/external/compiler-rt/lib/asan/
H A Dasan_fake_stack.h123 // Deallocate the fake frame: read the saved flag address and write 0 there.
124 static void Deallocate(uptr x, uptr class_id) { function in class:__asan::FakeStack
H A Dasan_allocator.cc159 get_allocator().Deallocate(cache_, p);
166 void Deallocate(void *p) { function in struct:__asan::QuarantineCallback
167 get_allocator().Deallocate(cache_, p);
512 void Deallocate(void *ptr, uptr delete_size, BufferedStackTrace *stack, function in struct:__asan::Allocator
549 Deallocate(old_ptr, 0, stack, FROM_MALLOC);
709 instance.Deallocate(ptr, 0, stack, alloc_type);
714 instance.Deallocate(ptr, size, stack, alloc_type);
729 instance.Deallocate(p, 0, stack, FROM_MALLOC);
/external/clang/include/clang/Basic/
H A DPartialDiagnostic.h101 void Deallocate(Storage *S) { function in class:clang::PartialDiagnostic::StorageAllocator
154 Allocator->Deallocate(DiagStorage);
/external/compiler-rt/lib/lsan/
H A Dlsan_allocator.cc105 void Deallocate(void *p) { function in namespace:__lsan
108 allocator.Deallocate(&cache, p);
116 allocator.Deallocate(&cache, p);
/external/clang/include/clang/Lex/
H A DPreprocessingRecord.h374 /// \brief Deallocate memory in the preprocessing record.
375 void Deallocate(void *Ptr) { } function in class:clang::PreprocessingRecord
533 PR.Deallocate(ptr);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h934 void Deallocate(SizeClassAllocator *allocator, uptr class_id, void *p) { function in struct:__sanitizer::SizeClassAllocatorLocalCache
985 Deallocate(allocator, SizeClassMap::ClassID(sizeof(Batch)), b);
1077 void Deallocate(AllocatorStats *stat, void *p) { function in class:__sanitizer::LargeMmapAllocator
1156 // Do one-time sort. chunks_sorted_ is reset in Allocate/Deallocate.
1334 void Deallocate(AllocatorCache *cache, void *p) { function in class:__sanitizer::CombinedAllocator
1337 cache->Deallocate(&primary_, primary_.GetSizeClass(p), p);
1339 secondary_.Deallocate(&stats_, p);
1347 Deallocate(cache, p);
1356 Deallocate(cache, p);

Completed in 181 milliseconds