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

12

/external/chromium_org/ppapi/c/dev/
H A Dppp_class_deprecated.h127 void (*Deallocate)(void* object); member in struct:PPP_Class_Deprecated
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dheap-profiler_unittest.cc73 static void Deallocate(int start, int end) { function
92 Deallocate(0, 40);
111 Deallocate(0, 40);
134 Deallocate(0, 40);
140 Deallocate(0, 1000);
143 Deallocate(0, 10);
144 Deallocate(10, 20);
145 Deallocate(90, 100);
146 Deallocate(20, 90);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dheap-profiler_unittest.cc73 static void Deallocate(int start, int end) { function
92 Deallocate(0, 40);
111 Deallocate(0, 40);
134 Deallocate(0, 40);
140 Deallocate(0, 1000);
143 Deallocate(0, 10);
144 Deallocate(10, 20);
145 Deallocate(90, 100);
146 Deallocate(20, 90);
/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
74 A.Deallocate(E);
H A DRecycler.h87 Allocator.Deallocate(t);
91 /// Special case for BumpPtrAllocator which has an empty Deallocate()
117 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) { function in class:llvm::Recycler
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
98 void Deallocate(const void *Ptr, size_t /*Size*/) { function in class:llvm::MallocAllocator
251 void Deallocate(const void * /*Ptr*/, size_t /*Size*/) {} function in class:llvm::BumpPtrAllocatorImpl
[all...]
/external/llvm/unittests/Support/
H A DAllocatorTest.cpp142 void Deallocate(void *Slab, size_t Size) { function in class:__anon26521::MockSlabAllocator
/external/opencv/
H A DWLNonFileByteStream.cpp29 Deallocate();
42 void WLNonFileByteStream::Deallocate() function in class:WLNonFileByteStream
67 Deallocate();
/external/chromium_org/content/test/plugin/
H A Dplugin_npobject_identity_test.cc20 static void Deallocate(NPObject* npobject) { function in class:__anon7910::NPThingy
29 NPThingy::Deallocate,
H A Dplugin_delete_plugin_in_deallocate_test.cc23 static void Deallocate(NPObject* npobject) { function in class:__anon7909::DeletePluginInDeallocateTestNPObject
50 DeletePluginInDeallocateTestNPObject::Deallocate,
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_memory_mapping.h60 // Deallocate an existing mapping, if any.
61 void Deallocate() { function in class:crazy::MemoryMapping
83 ~ScopedMemoryMapping() { Deallocate(); }
/external/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.cc125 void Deallocate(void* object) { function in namespace:pp::deprecated::__anon9970
138 &Deallocate
/external/chromium_org/ppapi/proxy/
H A Dppp_instance_private_proxy_unittest.cc72 // |PPB_Var_Deprecated->CreateObject| for a mock |Deallocate| method.
73 void Deallocate(void* object) { function in namespace:ppapi::proxy::__anon10134
85 &Deallocate
H A Dppp_class_proxy.cc166 void Deallocate(void* object) { function in namespace:ppapi::proxy::__anon10128
185 &Deallocate
376 CallWhileUnlocked(ToPPPClass(ppp_class)->Deallocate, ToUserData(object));
/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_allocator2.cc260 allocator.Deallocate(cache_, p);
267 void Deallocate(void *p) { function in struct:__asan::QuarantineCallback
268 allocator.Deallocate(cache_, p);
467 static void Deallocate(void *ptr, StackTrace *stack, AllocType alloc_type) { function in namespace:__asan
499 Deallocate(old_ptr, stack, FROM_MALLOC);
598 Deallocate(ptr, stack, alloc_type);
620 Deallocate(p, stack, FROM_MALLOC);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dthread_cache.h94 void Deallocate(void* ptr, size_t size_class);
347 inline void ThreadCache::Deallocate(void* ptr, size_t cl) { function in class:tcmalloc::ThreadCache
H A Ddebugallocation.cc158 // A circular buffer to hold freed blocks of memory. MallocBlock::Deallocate
160 // underlying allocator immediately. See MallocBlock::Deallocate for more
165 // code in MallocBlock::Deallocate is not re-entrant.
540 void Deallocate(int type) { function in class:MallocBlock
997 if (ptr) MallocBlock::FromRawPointer(ptr)->Deallocate(type);
/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.cc93 void Deallocate(void *p) { function in namespace:__lsan
95 allocator.Deallocate(&cache, p);
103 allocator.Deallocate(&cache, p);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dthread_cache.h88 void Deallocate(void* ptr, size_t size_class);
374 inline void ThreadCache::Deallocate(void* ptr, size_t cl) { function in class:tcmalloc::ThreadCache
H A Ddebugallocation.cc156 // A circular buffer to hold freed blocks of memory. MallocBlock::Deallocate
158 // underlying allocator immediately. See MallocBlock::Deallocate for more
163 // code in MallocBlock::Deallocate is not re-entrant.
538 void Deallocate(int type) { function in class:MallocBlock
1004 if (ptr) MallocBlock::FromRawPointer(ptr)->Deallocate(type);
/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
613 PR.Deallocate(ptr);
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp278 void Deallocate(void *Slab, size_t Size);
545 /// deallocateFunctionBody - Deallocate all memory for the specified
577 void JITAllocator::Deallocate(void *Slab, size_t Size) { function in class:JITAllocator
/external/llvm/include/llvm/MC/
H A DMCContext.h423 void Deallocate(void *Ptr) { function in class:llvm::MCContext
451 /// @c Context.Deallocate(Ptr).
470 C.Deallocate(Ptr);
485 /// @c Context.Deallocate(Ptr).
504 C.Deallocate(Ptr);

Completed in 939 milliseconds

12