HomeSort by: relevance | last modified time | path
    Searched defs:allocate (Results 1 - 25 of 83) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-color-leak.py 30 def allocate(self): member in class:color_leak_detector
py-read-memory-leak.py 32 def allocate(self): member in class:read_leak_detector
gdb_leak_detector.py 28 # method, and the sub-class should override allocate() and
41 # allocate() method to allocate an object from GDB's Python API.
54 # Generate the GDB Python API object by calling the allocate
56 self.allocate()
111 # Sub-classes must override this method. Allocate an object (or
114 def allocate(self): member in class:gdb_leak_detector
115 raise NotImplementedError("allocate() not implemented")
118 # allocated by the allocate() method. All that is required is for
119 # the references created in allocate() to be set to None
    [all...]
py-inferior-leak.py 37 def allocate(self): member in class:inferior_leak_detector
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
die.c 26 die_info::allocate (struct obstack *obstack, int num_attrs) function in class:die_info
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
die.c 26 die_info::allocate (struct obstack *obstack, int num_attrs) function in class:die_info
  /src/external/apache2/llvm/dist/libcxx/src/include/
sso_allocator.h 51 _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, typename __sso_allocator<void, _Np>::const_pointer = nullptr) function in class:__sso_allocator
58 return allocator<_Tp>().allocate(__n);
  /src/external/gpl3/binutils/dist/gprofng/src/
DbeArray.h 44 int n = allocate (1);
57 allocate (int cnt) function in class:DbeArray
  /src/external/gpl3/binutils.old/dist/gprofng/src/
DbeArray.h 44 int n = allocate (1);
57 allocate (int cnt) function in class:DbeArray
  /src/external/gpl3/gcc/dist/gcc/
memory-block.h 36 static inline void *allocate () ATTRIBUTE_MALLOC;
54 /* Allocate a single block. Reuse a previously returned block, if possible. */
56 memory_block_pool::allocate () function in class:memory_block_pool
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
allocator.h 110 // No allocate member because it's ill-formed by LWG 3307.
112 // with any pointer which wasn't obtained from allocate.
187 allocate(size_t __n) function in class:allocator
196 return __allocator_base<_Tp>::allocate(__n, 0);
  /src/external/gpl3/gcc.old/dist/gcc/
memory-block.h 36 static inline void *allocate () ATTRIBUTE_MALLOC;
54 /* Allocate a single block. Reuse a previously returned block, if possible. */
56 memory_block_pool::allocate () function in class:memory_block_pool
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
standalone_malloc_test.cc 26 bool allocate = (i % 5) <= 2; // 60% malloc, 40% free local
28 allocate = i % 2; // then switch to 50% malloc, 50% free
29 if (allocate) {
  /src/sys/external/bsd/drm/dist/bsd-core/
drm_sman.h 30 * Simple memory MANager interface that keeps track on allocate regions on a
60 /* Allocate a memory block with given size and alignment.
63 void *(*allocate) (void *private, unsigned long size, member in struct:drm_sman_mm
105 * Allocate structures for a manager.
138 * Allocate a memory block. Aligment is not implemented yet.
  /src/external/apache2/llvm/dist/libcxx/include/__memory/
allocator.h 75 _Tp* allocate(size_t __n) { function in class:allocator
77 __throw_length_error("allocator<T>::allocate(size_t n)"
117 _Tp* allocate(size_t __n, const void*) { function in class:allocator
118 return allocate(__n);
156 const _Tp* allocate(size_t __n) { function in class:allocator
158 __throw_length_error("allocator<const T>::allocate(size_t n)"
194 const _Tp* allocate(size_t __n, const void*) { function in class:allocator
195 return allocate(__n);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ArrayRecycler.h 119 /// Allocate an array of at least the requested capacity.
121 /// Return an existing recycled array, or allocate one from Allocator if
125 T *allocate(Capacity Cap, AllocatorType &Allocator) { function in class:llvm::ArrayRecycler
130 return static_cast<T*>(Allocator.Allocate(sizeof(T)*Cap.getSize(), Align));
135 /// Cap must be the same capacity that was given to allocate().
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
JITLinkMemoryManager.cpp 20 InProcessMemoryManager::allocate(const JITLinkDylib *JD, function in class:llvm::jitlink::InProcessMemoryManager
86 // Compute the total number of pages to allocate.
101 // Allocate one slab to cover all the segments.
109 // Allocate segment memory from the slab.
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
malloc_allocator.h 105 allocate(size_type __n, const void* = 0) function in class:malloc_allocator
109 // 3308. std::allocator<void>().allocate(n)
110 static_assert(sizeof(_Tp) != 0, "cannot allocate incomplete types");
116 // 3190. allocator::allocate sometimes returns too little storage
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
allocator.h 111 // No allocate member because it's ill-formed by LWG 3307.
113 // with any pointer which wasn't obtained from allocate.
184 allocate(size_t __n) function in class:allocator
193 return __allocator_base<_Tp>::allocate(__n, 0);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
malloc_allocator.h 103 allocate(size_type __n, const void* = 0) function in class:malloc_allocator
107 // 3308. std::allocator<void>().allocate(n)
108 static_assert(sizeof(_Tp) != 0, "cannot allocate incomplete types");
114 // 3190. allocator::allocate sometimes returns too little storage
  /src/usr.sbin/makefs/v7fs/
v7fs_populate.c 81 allocate(struct v7fs_self *fs, struct v7fs_inode *parent_inode, fsnode *node, function
156 /* Allocate file */
157 if ((error = allocate(fs, parent_inode, node, 0, &inode))) {
158 errmsg = "file allocate";
212 if ((error = allocate(fs, parent_inode, cur,
221 /* Allocate this directory. */
222 if ((error = allocate(fs, parent_inode, cur, 0,
241 if ((error = allocate(fs, parent_inode, cur, 0,
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 51 void *allocate(size_t Sz) { function in class:clang::threadSafety::til::MemRegionRef
52 return Allocator->Allocate(Sz, alignof(AlignmentType));
55 template <typename T> T *allocateT() { return Allocator->Allocate<T>(); }
58 return Allocator->Allocate<T>(NumElems);
72 return R.allocate(Sz);
  /src/external/apache2/llvm/dist/libcxx/src/
thread.cpp 129 T* allocate(size_t __n) function in class:__hidden_allocator
  /src/external/gpl3/binutils/dist/include/
splay-tree.h 78 /* The type of a function used to allocate memory for tree root and
117 /* Node allocate function. Takes allocate_data as a parameter. */
118 splay_tree_allocate_fn allocate; member in struct:splay_tree_s
123 /* Parameter for allocate/free functions. */
  /src/external/gpl3/binutils.old/dist/include/
splay-tree.h 78 /* The type of a function used to allocate memory for tree root and
117 /* Node allocate function. Takes allocate_data as a parameter. */
118 splay_tree_allocate_fn allocate; member in struct:splay_tree_s
123 /* Parameter for allocate/free functions. */

Completed in 60 milliseconds

1 2 3 4