Searched refs:Deallocate (Results 1 - 25 of 58) sorted by relevance

123

/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/compiler-rt/lib/lsan/
H A Dlsan_allocator.h25 void Deallocate(void *p);
H A Dlsan_allocator.cc88 void Deallocate(void *p) { function in namespace:__lsan
90 allocator.Deallocate(&cache, p);
98 allocator.Deallocate(&cache, p);
H A Dlsan_interceptors.cc68 Deallocate(p);
156 Deallocate(ptr);
/external/opencv/
H A DWLNonFileByteStream.h42 void Deallocate();
H A DWLNonFileByteStream.cpp29 Deallocate();
42 void WLNonFileByteStream::Deallocate() function in class:WLNonFileByteStream
67 Deallocate();
/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 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
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 DArrayRecycler.h106 Allocator.Deallocate(Ptr);
109 /// Special case for BumpPtrAllocator which has an empty Deallocate()
132 /// Deallocate an array with the specified Capacity.
/external/clang/lib/AST/
H A DRecordLayout.cpp22 Ctx.Deallocate(FieldOffsets);
24 Ctx.Deallocate(CXXInfo);
28 Ctx.Deallocate(this);
/external/chromium_org/content/test/plugin/
H A Dplugin_npobject_identity_test.cc20 static void Deallocate(NPObject* npobject) { function in class:__anon8614::NPThingy
29 NPThingy::Deallocate,
H A Dplugin_delete_plugin_in_deallocate_test.cc23 static void Deallocate(NPObject* npobject) { function in class:__anon8613::DeletePluginInDeallocateTestNPObject
50 DeletePluginInDeallocateTestNPObject::Deallocate,
/external/chromium_org/ppapi/c/dev/
H A Dppp_class_deprecated.h127 void (*Deallocate)(void* object); member in struct:PPP_Class_Deprecated
/external/oprofile/agents/jvmti/
H A Dlibjvmti_oprofile.c196 (*jvmti)->Deallocate(jvmti, (unsigned char *)method_name);
197 (*jvmti)->Deallocate(jvmti, (unsigned char *)method_signature);
199 (*jvmti)->Deallocate(jvmti, (unsigned char *)class_signature);
200 (*jvmti)->Deallocate(jvmti, (unsigned char *)table_ptr);
201 (*jvmti)->Deallocate(jvmti, (unsigned char *)source_filename);
/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/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.cc82 return internal_allocator()->Deallocate(&internal_allocator_cache, ptr);
84 internal_allocator()->Deallocate(cache, ptr);
/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::__anon10197
85 &Deallocate
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cc117 // Deallocate all.
123 cache.Deallocate(a, a->GetSizeClass(x), x);
179 cache.Deallocate(a, 1 + i % 50, allocated[i]);
304 a.Deallocate(&stats, x);
344 // Deallocate all.
349 a.Deallocate(&stats, p);
368 // Deallocate all in reverse order.
375 a.Deallocate(&stats, p);
393 a.Deallocate(&stats, allocated[i]);
403 a.Deallocate(
[all...]
/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/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.cc125 void Deallocate(void* object) { function in namespace:pp::deprecated::__anon10039
138 &Deallocate
/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
/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
/external/compiler-rt/lib/asan/
H A Dasan_allocator2.cc294 allocator.Deallocate(cache_, p);
301 void Deallocate(void *p) { function in struct:__asan::QuarantineCallback
302 allocator.Deallocate(cache_, p);
497 static void Deallocate(void *ptr, StackTrace *stack, AllocType alloc_type) { function in namespace:__asan
529 Deallocate(old_ptr, stack, FROM_MALLOC);
630 Deallocate(ptr, stack, alloc_type);
652 Deallocate(p, stack, FROM_MALLOC);

Completed in 626 milliseconds

123