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

/external/llvm/include/llvm/Support/
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
70 A.Deallocate(E);
H A DRecycler.h88 Allocator.Deallocate(t);
92 /// Special case for BumpPtrAllocator which has an empty Deallocate()
118 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) { function in class:llvm::Recycler
H A DAllocator.h46 void Deallocate(const void *Ptr) { free(const_cast<void*>(Ptr)); } function in class:llvm::MallocAllocator
68 virtual void Deallocate(MemSlab *Slab) = 0;
83 virtual void Deallocate(MemSlab *Slab) LLVM_OVERRIDE;
132 /// DeallocateSlabs - Deallocate all memory slabs after and including this
144 /// Reset - Deallocate all but the current slab and reset the current pointer
175 void Deallocate(const void * /*Ptr*/) {} function in class:llvm::BumpPtrAllocator
/external/llvm/unittests/Support/
H A DAllocatorTest.cpp130 virtual void Deallocate(MemSlab *Slab) { function in class:__anon10098::MockSlabAllocator
/external/opencv/
H A DWLNonFileByteStream.cpp29 Deallocate();
42 void WLNonFileByteStream::Deallocate() function in class:WLNonFileByteStream
67 Deallocate();
/external/llvm/lib/Support/
H A DAllocator.cpp61 /// DeallocateSlabs - Deallocate all memory slabs after and including this
72 Allocator.Deallocate(Slab);
77 /// Reset - Deallocate all but the current slab and reset the current pointer
184 void MallocSlabAllocator::Deallocate(MemSlab *Slab) { function in class:llvm::MallocSlabAllocator
185 Allocator.Deallocate(Slab);
/external/clang/include/clang/Basic/
H A DPartialDiagnostic.h106 void Deallocate(Storage *S) { function in class:clang::PartialDiagnostic::StorageAllocator
159 Allocator->Deallocate(DiagStorage);
/external/clang/include/clang/Lex/
H A DPreprocessingRecord.h371 /// \brief Deallocate memory in the preprocessing record.
372 void Deallocate(void *Ptr) { } function in class:clang::PreprocessingRecord
605 PR.Deallocate(ptr);
/external/compiler-rt/lib/asan/
H A Dasan_allocator2.cc281 allocator.Deallocate(cache_, p);
288 void Deallocate(void *p) { function in struct:__asan::QuarantineCallback
289 allocator.Deallocate(cache_, p);
418 static void Deallocate(void *ptr, StackTrace *stack, AllocType alloc_type) { function in namespace:__asan
490 Deallocate(old_ptr, stack, FROM_MALLOC);
596 Deallocate(ptr, stack, alloc_type);
618 Deallocate(p, stack, FROM_MALLOC);
/external/llvm/include/llvm/MC/
H A DMCContext.h406 void Deallocate(void *Ptr) { function in class:llvm::MCContext
434 /// @c Context.Deallocate(Ptr).
453 C.Deallocate(Ptr);
468 /// @c Context.Deallocate(Ptr).
487 C.Deallocate(Ptr);
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp278 virtual void Deallocate(MemSlab *Slab);
554 /// deallocateFunctionBody - Deallocate all memory for the specified
560 /// deallocateExceptionTable - Deallocate memory for the specified
597 void JITSlabAllocator::Deallocate(MemSlab *Slab) { function in class:JITSlabAllocator
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h833 void Deallocate(SizeClassAllocator *allocator, uptr class_id, void *p) { function in struct:__sanitizer::SizeClassAllocatorLocalCache
884 Deallocate(allocator, SizeClassMap::ClassID(sizeof(Batch)), b);
955 void Deallocate(AllocatorStats *stat, void *p) { function in class:__sanitizer::LargeMmapAllocator
1124 void Deallocate(AllocatorCache *cache, void *p) { function in class:__sanitizer::CombinedAllocator
1127 cache->Deallocate(&primary_, primary_.GetSizeClass(p), p);
1129 secondary_.Deallocate(&stats_, p);
1137 Deallocate(cache, p);
1146 Deallocate(cache, p);
/external/clang/include/clang/AST/
H A DASTContext.h457 void Deallocate(void *Ptr) const { } function in class:clang::ASTContext
2304 /// @c Context.Deallocate(Ptr).
2322 C.Deallocate(Ptr);
2341 /// @c Context.Deallocate(Ptr).
2360 C.Deallocate(Ptr);

Completed in 314 milliseconds