Searched defs:Deallocate (Results 1 - 25 of 28) 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
73 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:__anon21866::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:__anon8136::NPThingy
29 NPThingy::Deallocate,
H A Dplugin_delete_plugin_in_deallocate_test.cc23 static void Deallocate(NPObject* npobject) { function in class:__anon8135::DeletePluginInDeallocateTestNPObject
50 DeletePluginInDeallocateTestNPObject::Deallocate,
/external/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.cc125 void Deallocate(void* object) { function in namespace:pp::deprecated::__anon9320
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::__anon9489
85 &Deallocate
H A Dppp_class_proxy.cc166 void Deallocate(void* object) { function in namespace:ppapi::proxy::__anon9484
185 &Deallocate
376 CallWhileUnlocked(ToPPPClass(ppp_class)->Deallocate, ToUserData(object));
/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/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.h106 void Deallocate(Storage *S) { function in class:clang::PartialDiagnostic::StorageAllocator
159 Allocator->Deallocate(DiagStorage);
/external/compiler-rt/lib/lsan/
H A Dlsan_allocator.cc88 void Deallocate(void *p) { function in namespace:__lsan
90 allocator.Deallocate(&cache, p);
98 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/chromium_org/content/browser/renderer_host/java/
H A Djava_bound_object.cc59 static void Deallocate(NPObject* np_object);
72 JavaNPObject::Deallocate,
88 void JavaNPObject::Deallocate(NPObject* np_object) { function in class:content::__anon7711::JavaNPObject
/external/chromium_org/remoting/host/plugin/
H A Dhost_plugin.cc158 &Deallocate,
239 static void Deallocate(NPObject* npobj) { function in class:__anon9764::HostNPPlugin
240 VLOG(2) << "static Deallocate";
/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
606 PR.Deallocate(ptr);
/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);
539 /// deallocateFunctionBody - Deallocate all memory for the specified
576 void JITSlabAllocator::Deallocate(MemSlab *Slab) { function in class:JITSlabAllocator

Completed in 449 milliseconds

12