HomeSort by relevance Sort by last modified time
    Searched refs:Deallocate (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
heap-profiler_unittest.cc 73 static void Deallocate(int start, int end) {
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/
heap-profiler_unittest.cc 73 static void Deallocate(int start, int end) {
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/
lsan_allocator.h 25 void Deallocate(void *p);
lsan_allocator.cc 88 void Deallocate(void *p) {
90 allocator.Deallocate(&cache, p);
98 allocator.Deallocate(&cache, p);
lsan_interceptors.cc 68 Deallocate(p);
156 Deallocate(ptr);
  /external/opencv/
WLNonFileByteStream.h 42 void Deallocate();
WLNonFileByteStream.cpp 29 Deallocate();
42 void WLNonFileByteStream::Deallocate()
67 Deallocate();
  /external/llvm/include/llvm/Support/
RecyclingAllocator.h 48 /// Deallocate - Release storage for the pointed-to object. The
52 void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); }
73 A.Deallocate(E);
Allocator.h 46 void Deallocate(const void *Ptr) { free(const_cast<void*>(Ptr)); }
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*/) {}
200 /// Call the destructor of each allocated object and deallocate all but the
Recycler.h 88 Allocator.Deallocate(t);
92 /// Special case for BumpPtrAllocator which has an empty Deallocate()
118 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) {
ArrayRecycler.h 106 Allocator.Deallocate(Ptr);
109 /// Special case for BumpPtrAllocator which has an empty Deallocate()
132 /// Deallocate an array with the specified Capacity.
136 void deallocate(Capacity Cap, T *Ptr) { function in class:llvm::ArrayRecycler
  /external/clang/lib/AST/
RecordLayout.cpp 22 Ctx.Deallocate(FieldOffsets);
24 Ctx.Deallocate(CXXInfo);
28 Ctx.Deallocate(this);
  /external/chromium_org/content/test/plugin/
plugin_npobject_identity_test.cc 20 static void Deallocate(NPObject* npobject) {
29 NPThingy::Deallocate,
plugin_delete_plugin_in_deallocate_test.cc 23 static void Deallocate(NPObject* npobject) {
28 // Call window.deletePlugin to tear-down our plugin from inside deallocate.
50 DeletePluginInDeallocateTestNPObject::Deallocate,
  /external/chromium_org/ppapi/c/dev/
ppp_class_deprecated.h 127 void (*Deallocate)(void* object);
  /external/oprofile/agents/jvmti/
libjvmti_oprofile.c 196 (*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/
Allocator.cpp 61 /// 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) {
185 Allocator.Deallocate(Slab);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.cc 82 return internal_allocator()->Deallocate(&internal_allocator_cache, ptr);
84 internal_allocator()->Deallocate(cache, ptr);
  /hardware/ti/omap3/dspbridge/inc/
dynamic_loader.h 307 * Deallocate
315 void (*Deallocate) (struct Dynamic_Loader_Sym * thisptr, void *memptr);
336 * A class used by the dynamic loader to allocate and deallocate target memory.
407 * Function deallocate
418 void (*Deallocate) (struct Dynamic_Loader_Allocate * thisptr,
  /external/chromium_org/ppapi/proxy/
ppp_instance_private_proxy_unittest.cc 72 // |PPB_Var_Deprecated->CreateObject| for a mock |Deallocate| method.
73 void Deallocate(void* object) {
85 &Deallocate
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 117 // 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(&stats, p)
    [all...]
  /external/llvm/include/llvm/MC/
MCContext.h 406 void Deallocate(void *Ptr) {
434 /// @c Context.Deallocate(Ptr).
453 C.Deallocate(Ptr);
468 /// @c Context.Deallocate(Ptr).
487 C.Deallocate(Ptr);
  /external/chromium_org/ppapi/cpp/dev/
scriptable_object_deprecated.cc 125 void Deallocate(void* object) {
138 &Deallocate
  /external/chromium_org/third_party/tcmalloc/chromium/src/
thread_cache.h 88 void Deallocate(void* ptr, size_t size_class);
374 inline void ThreadCache::Deallocate(void* ptr, size_t cl) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/
thread_cache.h 94 void Deallocate(void* ptr, size_t size_class);
347 inline void ThreadCache::Deallocate(void* ptr, size_t cl) {

Completed in 625 milliseconds

1 2 3