| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| py-color-leak.py | 33 def deallocate(self): member in class:color_leak_detector
|
| py-read-memory-leak.py | 35 def deallocate(self): member in class:read_leak_detector
|
| gdb_leak_detector.py | 29 # deallocate(). See the comments on the various methods below for 43 # calling deallocate(), otherwise, deallocate() is not called. 60 self.deallocate() 91 # to the allocated object, which should allow Python to deallocate the 117 # Sub-classes must override this method. Deallocate the object(s) 120 def deallocate(self): member in class:gdb_leak_detector
|
| py-inferior-leak.py | 47 def deallocate(self): member in class:inferior_leak_detector
|
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| InterpState.cpp | 57 void InterpState::deallocate(Block *B) { function in class:InterpState
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| MacroArgs.cpp | 76 /// destroy - Destroy and deallocate the memory for this object. 80 // would deallocate the element vectors. 89 /// deallocate - This should only be called by the Preprocessor when managing 91 MacroArgs *MacroArgs::deallocate() { function in class:MacroArgs 94 // Run the dtor to deallocate the vectors.
|
| /src/external/apache2/llvm/dist/libcxx/src/include/ |
| sso_allocator.h | 60 _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type __n) function in class:__sso_allocator 65 allocator<_Tp>().deallocate(__p, __n);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| allocator.h | 111 // No deallocate member because it would be undefined to call it 201 deallocate(_Tp* __p, size_t __n) function in class:allocator 208 __allocator_base<_Tp>::deallocate(__p, __n);
|
| memory_resource.h | 79 deallocate(void* __p, size_t __bytes, size_t __alignment = _S_max_align) function in class:pmr::memory_resource 167 deallocate(_Tp* __p, size_t __n) noexcept 169 { _M_resource->deallocate(__p, __n * sizeof(_Tp), alignof(_Tp)); } 180 { _M_resource->deallocate(__p, __nbytes, __alignment); } 470 * @brief Deallocate memory. 472 * @param __p Pointer to the memory to deallocate. 475 * Calls `a.deallocate(p, n)`. 478 deallocate(allocator_type& __a, pointer __p, size_type __n) function in struct:allocator_traits 479 { __a.deallocate(__p, __n); }
|
| new_allocator.h | 156 deallocate(_Tp* __p, size_type __n __attribute__ ((__unused__))) function in class:__new_allocator
|
| /src/external/apache2/llvm/dist/libcxx/include/__memory/ |
| allocator.h | 87 void deallocate(_Tp* __p, size_t __n) _NOEXCEPT { 168 void deallocate(const _Tp* __p, size_t __n) { function in class:allocator
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| ArrayRecycler.h | 107 Allocator.Deallocate(Ptr); 110 /// Special case for BumpPtrAllocator which has an empty Deallocate() 133 /// Deallocate an array with the specified Capacity. 137 void deallocate(Capacity Cap, T *Ptr) { function in class:llvm::ArrayRecycler
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
| malloc_allocator.h | 143 deallocate(__ret, __n); 152 deallocate(_Tp* __p, size_type) function in class:malloc_allocator
|
| alloc_traits.h | 62 using _Base_type::deallocate; 149 static void deallocate(_Alloc& __a, pointer __p, size_type __n) function in struct:__alloc_traits 150 { __a.deallocate(__p, __n); }
|
| debug_allocator.h | 141 deallocate(pointer __p, size_type __n) function in class:debug_allocator 148 __throw_runtime_error("debug_allocator::deallocate wrong size"); 149 _M_allocator.deallocate(__real_p, __n + _M_extra); 152 __throw_runtime_error("debug_allocator::deallocate null pointer");
|
| extptr_allocator.h | 100 void deallocate(pointer __p, size_type __n) function in class:_ExtPtr_allocator 101 { _M_real_alloc.deallocate(__p.get(), __n); }
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| allocator.h | 112 // No deallocate member because it would be undefined to call it 198 deallocate(_Tp* __p, size_t __n) function in class:allocator 205 __allocator_base<_Tp>::deallocate(__p, __n);
|
| new_allocator.h | 153 deallocate(_Tp* __p, size_type __n __attribute__ ((__unused__))) function in class:__new_allocator
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
| malloc_allocator.h | 141 deallocate(__ret, __n); 150 deallocate(_Tp* __p, size_type) function in class:malloc_allocator
|
| alloc_traits.h | 65 using _Base_type::deallocate; 140 static void deallocate(_Alloc& __a, pointer __p, size_type __n) function in struct:__alloc_traits 141 { __a.deallocate(__p, __n); }
|
| /src/external/apache2/llvm/dist/libcxx/src/ |
| thread.cpp | 131 void deallocate(T* __p, size_t) {::operator delete(static_cast<void*>(__p));} function in class:__hidden_allocator
|
| /src/external/gpl3/binutils/dist/include/ |
| splay-tree.h | 60 /* The type of a function used to deallocate any resources associated 69 /* The type of a function used to deallocate any resources associated 111 /* The deallocate-key function. NULL if no cleanup is necessary. */ 114 /* The deallocate-value function. NULL if no cleanup is necessary. */ 121 splay_tree_deallocate_fn deallocate; member in struct:splay_tree_s
|
| /src/external/gpl3/binutils.old/dist/include/ |
| splay-tree.h | 60 /* The type of a function used to deallocate any resources associated 69 /* The type of a function used to deallocate any resources associated 111 /* The deallocate-key function. NULL if no cleanup is necessary. */ 114 /* The deallocate-value function. NULL if no cleanup is necessary. */ 121 splay_tree_deallocate_fn deallocate; member in struct:splay_tree_s
|
| /src/external/gpl3/gcc/dist/include/ |
| splay-tree.h | 60 /* The type of a function used to deallocate any resources associated 69 /* The type of a function used to deallocate any resources associated 111 /* The deallocate-key function. NULL if no cleanup is necessary. */ 114 /* The deallocate-value function. NULL if no cleanup is necessary. */ 121 splay_tree_deallocate_fn deallocate; member in struct:splay_tree_s
|
| /src/external/gpl3/gcc.old/dist/include/ |
| splay-tree.h | 60 /* The type of a function used to deallocate any resources associated 69 /* The type of a function used to deallocate any resources associated 111 /* The deallocate-key function. NULL if no cleanup is necessary. */ 114 /* The deallocate-value function. NULL if no cleanup is necessary. */ 121 splay_tree_deallocate_fn deallocate; member in struct:splay_tree_s
|