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

1 2

  /external/compiler-rt/lib/lsan/
lsan_allocator.h 25 void Deallocate(void *p);
lsan_allocator.cc 105 void Deallocate(void *p) {
108 allocator.Deallocate(&cache, p);
116 allocator.Deallocate(&cache, p);
lsan_interceptors.cc 59 Deallocate(p);
164 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); }
74 A.Deallocate(E);
Allocator.h 13 /// 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) {
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(T *Ptr, size_t Num = 1)
    [all...]
Recycler.h 70 Allocator.Deallocate(t);
74 /// Special case for BumpPtrAllocator which has an empty Deallocate()
97 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);
25 Ctx.Deallocate(CXXInfo);
28 Ctx.Deallocate(this);
Stmt.cpp 300 C.Deallocate(Body);
435 C.Deallocate(this->Names);
439 C.Deallocate(this->Exprs);
443 C.Deallocate(this->Constraints);
447 C.Deallocate(this->Clobbers);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.cc 83 return internal_allocator()->Deallocate(&internal_allocator_cache, ptr);
85 internal_allocator()->Deallocate(cache, ptr);
sanitizer_quarantine.h 41 // void cb.Deallocate(void *ptr);
110 cb.Deallocate(b);
sanitizer_allocator.h 934 void Deallocate(SizeClassAllocator *allocator, uptr class_id, void *p) {
    [all...]
  /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/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 121 // Deallocate all.
127 cache.Deallocate(a, a->GetSizeClass(x), x);
183 cache.Deallocate(a, 1 + i % 50, allocated[i]);
308 a.Deallocate(&stats, x);
349 // Deallocate all.
354 a.Deallocate(&stats, p);
373 // Deallocate all in reverse order.
380 a.Deallocate(&stats, p);
398 a.Deallocate(&stats, allocated[i]);
408 a.Deallocate(&stats, p)
    [all...]
sanitizer_allocator_testlib.cc 85 allocator.Deallocate(&cache, p);
  /external/compiler-rt/lib/asan/
asan_fake_stack.h 123 // Deallocate the fake frame: read the saved flag address and write 0 there.
124 static void Deallocate(uptr x, uptr class_id) {
asan_allocator.cc 159 get_allocator().Deallocate(cache_, p);
166 void Deallocate(void *p) {
167 get_allocator().Deallocate(cache_, p);
512 void Deallocate(void *ptr, uptr delete_size, BufferedStackTrace *stack,
549 Deallocate(old_ptr, 0, stack, FROM_MALLOC);
709 instance.Deallocate(ptr, 0, stack, alloc_type);
714 instance.Deallocate(ptr, size, stack, alloc_type);
729 instance.Deallocate(p, 0, stack, FROM_MALLOC);
  /external/compiler-rt/lib/asan/tests/
asan_fake_stack_test.cc 129 fs->Deallocate(reinterpret_cast<uptr>(it->first), it->second);
142 fs->Deallocate(reinterpret_cast<uptr>(ff), class_id);
  /external/compiler-rt/lib/msan/
msan_allocator.cc 163 allocator.Deallocate(cache, p);
167 allocator.Deallocate(cache, p);
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 118 Allocator.Deallocate(RegInfo);
122 Allocator.Deallocate(MFInfo);
126 Allocator.Deallocate(FrameInfo);
129 Allocator.Deallocate(ConstantPool);
133 Allocator.Deallocate(JumpTableInfo);
138 Allocator.Deallocate(WinEHInfo);
232 InstructionRecycler.Deallocate(Allocator, MI);
248 BasicBlockRecycler.Deallocate(Allocator, MBB);
    [all...]
  /external/llvm/unittests/Support/
AllocatorTest.cpp 162 void Deallocate(void *Slab, size_t Size) {
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 101 void Deallocate(Storage *S) {
154 Allocator->Deallocate(DiagStorage);
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 374 /// \brief Deallocate memory in the preprocessing record.
375 void Deallocate(void *Ptr) { }
533 PR.Deallocate(ptr);

Completed in 1550 milliseconds

1 2