Searched refs:allocate (Results 26 - 50 of 74) sorted by relevance

123

/freebsd-10.3-release/contrib/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp36 uint64_t allocate(uint32_t Alignment, uint32_t Size);
114 uint64_t Addr = allocate(Alignment, AllocSize);
/freebsd-10.3-release/contrib/libstdc++/include/ext/
H A Dmalloc_allocator.h87 allocate(size_type __n, const void* = 0) function in class:malloc_allocator
H A Darray_allocator.h125 allocate(size_type __n, const void* = 0) function in class:array_allocator
H A Dthrow_allocator.h223 allocate(size_type num, std::allocator<void>::const_pointer hint = 0) function in class:throw_allocator
226 value_type* const a = std::allocator<value_type>().allocate(num, hint);
H A Dbitmap_allocator.h99 allocate(size_type __n) function in class:__detail::__mini_vector
195 iterator __new_start = this->allocate(__new_size);
1050 allocate(size_type __n) function in class:bitmap_allocator
1065 allocate(size_type __n, typename bitmap_allocator<void>::const_pointer) function in class:bitmap_allocator
1066 { return allocate(__n); }
H A Dmt_allocator.h650 allocate(size_type __n, const void* = 0);
670 allocate(size_type __n, const void*) function in class:__mt_alloc
/freebsd-10.3-release/contrib/libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
H A Dresize_fn_imps.hpp99 a_entries_resized = s_entry_allocator.allocate(new_size);
/freebsd-10.3-release/contrib/libstdc++/include/ext/pb_ds/detail/left_child_next_sibling_heap_/
H A Dconstructors_destructor_fn_imps.hpp123 node_pointer p_ret = s_node_allocator.allocate(1);
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DArrayRecycler.h120 /// Return an existing recycled array, or allocate one from Allocator if
124 T *allocate(Capacity Cap, AllocatorType &Allocator) { function in class:llvm::ArrayRecycler
134 /// Cap must be the same capacity that was given to allocate().
/freebsd-10.3-release/contrib/gdb/include/
H A Dsplay-tree.h68 /* The type of a function used to allocate memory for tree root and
110 splay_tree_allocate_fn allocate; local
/freebsd-10.3-release/contrib/groff/src/preproc/tbl/
H A Dtable.h110 void allocate(int r);
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DAttributeList.h476 /// these as long as you don't actually allocate anything in it.
519 void *allocate(size_t size);
537 void *allocate(size_t size) {
538 return Factory.allocate(size);
585 void *memory = allocate(sizeof(AttributeList)
602 void *memory = allocate(AttributeFactory::AvailabilityAllocSize);
619 void *memory = allocate(AttributeFactory::TypeTagForDatatypeAllocSize);
631 void *memory = allocate(sizeof(AttributeList) + sizeof(void *));
642 void *memory = allocate(AttributeFactory::PropertyAllocSize);
/freebsd-10.3-release/contrib/libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
H A Dconstructors_destructor_fn_imps.hpp144 value_vector a_values = s_value_alloc.allocate(len);
187 value_vector a_values = s_value_alloc.allocate(len);
/freebsd-10.3-release/lib/libelf/
H A Dlibelf_ehdr.c103 _libelf_ehdr(Elf *e, int ec, int allocate) argument
164 if (allocate)
/freebsd-10.3-release/lib/libc/mips/gen/
H A Dsetjmp.S67 PTR_SUBU sp, sp, SETJMP_FRAME_SIZE # allocate stack frame
149 PTR_SUBU sp, sp, LONGJMP_FRAME_SIZE # allocate stack frame
/freebsd-10.3-release/sys/dev/aic7xxx/aicasm/
H A Daicasm_scan.l491 stop("Unable to allocate include stack entry",
/freebsd-10.3-release/contrib/byacc/
H A Dlr0.c301 p = (core *)allocate((sizeof(core) + (n - 1) * sizeof(Value_t)));
406 p = (shifts *)allocate((sizeof(shifts) +
454 p = (reductions *)allocate((sizeof(reductions) +
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DAttributeList.cpp51 void *AttributeFactory::allocate(size_t size) { function in class:AttributeFactory
61 // Otherwise, allocate something new.
/freebsd-10.3-release/contrib/libc++/src/
H A Dthread.cpp150 T* allocate(size_t __n) function in class:__hidden_allocator
/freebsd-10.3-release/sys/compat/ndis/
H A Dwinx64_wrap.S81 * we allocate some memory and copy the template function into it,
97 subq $96,%rsp # allocate space on stack
/freebsd-10.3-release/contrib/ntp/lib/isc/include/isc/
H A Dmem.h174 #define isc_mem_allocate(c, s) ISCMEMFUNC(allocate)((c), (s) _ISC_MEM_FILELINE)
709 ISCMEMFUNC(allocate)(isc_mem_t *, size_t _ISC_MEM_FLARG);
/freebsd-10.3-release/sys/dev/drm/
H A Ddrm_sman.c33 * Simple memory manager interface that keeps track on allocate regions on a
147 sman_mm->allocate = drm_sman_mm_allocate;
209 tmp = sman_mm->allocate(sman_mm->private, size, alignment);
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h920 void *allocate() { function in class:clang::ento::CallEventManager
929 return new (allocate()) T(A, St, LCtx);
934 return new (allocate()) T(A1, A2, St, LCtx);
940 return new (allocate()) T(A1, A2, A3, St, LCtx);
947 return new (allocate()) T(A1, A2, A3, A4, St, LCtx);
998 T *Copy = static_cast<T *>(Mgr.allocate());
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCleanup.cpp96 char *EHScopeStack::allocate(size_t Size) { function in class:EHScopeStack
157 char *Buffer = allocate(EHCleanupScope::getSizeForCleanupSize(Size));
204 char *buffer = allocate(EHFilterScope::getSizeForNumFilters(numFilters));
220 char *buffer = allocate(EHCatchScope::getSizeForNumHandlers(numHandlers));
228 char *Buffer = allocate(EHTerminateScope::getSize());
/freebsd-10.3-release/contrib/gcclibs/libiberty/
H A Dsplay-tree.c242 values. Use xmalloc to allocate the splay tree structure, and any
274 sp->allocate = allocate_fn;
318 (*sp->allocate) (sizeof (struct splay_tree_node_s),

Completed in 313 milliseconds

123