| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_coverage_win_sections.cpp | 35 __declspec(allocate(".SCOV$CA")) uint64_t __start___sancov_cntrs = 0; 45 __declspec(allocate(".SCOV$CZ")) __declspec(align(1)) uint8_t 49 __declspec(allocate(".SCOV$GA")) uint64_t __start___sancov_guards = 0; 51 __declspec(allocate(".SCOV$GZ")) __declspec(align(1)) uint8_t 60 __declspec(allocate(".SCOVP$A")) uint64_t __start___sancov_pcs = 0; 62 __declspec(allocate(".SCOVP$Z")) __declspec(align(1)) uint8_t
|
| H A D | sanitizer_win_thunk_interception.cpp | 64 __declspec(allocate( 66 __declspec(allocate(".INTR$Z")) sanitizer_thunk __sanitizer_intercept_thunk_end; 68 __declspec(allocate( 70 __declspec(allocate( 95 __declspec(allocate(".CRT$XIB")) int (*__sanitizer_thunk_init_ptr)() = 105 __declspec(allocate(".CRT$XLAB")) void(
|
| H A D | sanitizer_win_thunk_interception.h | 56 __pragma(section(".INTR$M", long, read)) __declspec(allocate( \ 85 __pragma(section(".WEAK$M", long, read)) __declspec(allocate( \
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | wrappers_cpp.cpp | 39 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::New); in operator new() 44 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::NewArray); in operator new[]() 50 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::New); in operator new() 56 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::NewArray); 61 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::New, in operator delete[]() 67 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::NewArray, in operator delete[]() 74 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::New, in operator delete[]() 81 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::NewArray, in operator delete()
|
| H A D | wrappers_c.inc | 60 void *Ptr = SCUDO_ALLOCATOR.allocate(Product, scudo::Chunk::Origin::Malloc, 110 void *Ptr = SCUDO_ALLOCATOR.allocate(size, scudo::Chunk::Origin::Malloc, 143 SCUDO_ALLOCATOR.allocate(size, scudo::Chunk::Origin::Memalign, alignment); 156 SCUDO_ALLOCATOR.allocate(size, scudo::Chunk::Origin::Memalign, alignment); 174 // pvalloc(0) should allocate one page. 176 SCUDO_ALLOCATOR.allocate(size ? scudo::roundUp(size, PageSize) : PageSize, 185 void *Ptr = SCUDO_ALLOCATOR.allocate(size, scudo::Chunk::Origin::Malloc, 221 void *Ptr = SCUDO_ALLOCATOR.allocate(size, scudo::Chunk::Origin::Memalign, 311 SCUDO_ALLOCATOR.allocate(size, scudo::Chunk::Origin::Malloc, alignment);
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_globals_win.cpp | 21 __declspec(allocate(".ASAN$GA")) __asan_global __asan_globals_start = {}; 23 __declspec(allocate(".ASAN$GZ")) __asan_global __asan_globals_end = {}; 56 extern "C" __declspec(allocate(".CRT$XCU")) 58 extern "C" __declspec(allocate(".CRT$XTX"))
|
| H A D | asan_win_dynamic_runtime_thunk.cpp | 36 __declspec(allocate(".CRT$XTW")) void *before_global_dtors = 0; 37 __declspec(allocate(".CRT$XTY")) void *after_global_dtors = 0; 50 extern "C" __declspec(allocate(".CRT$XID")) int (
|
| H A D | asan_win_common_runtime_thunk.cpp | 86 extern "C" __declspec(allocate(".CRT$XIB")) int (*__asan_thunk_init)() = 90 extern "C" __declspec(allocate(".CRT$XLAB")) void(WINAPI *__asan_tls_init)( 104 extern "C" __declspec(allocate(".CRT$XCAB")) int (*__asan_seh_interceptor)() = in WIN_FORCE_LINK()
|
| /freebsd/contrib/llvm-project/libc/src/__support/ |
| H A D | freelist_heap.h | 41 void *allocate(size_t size); 100 auto block_info = Block::allocate(block, alignment, size); in allocate_impl() 110 LIBC_INLINE void *FreeListHeap::allocate(size_t size) { in allocate() function 168 return allocate(size); in realloc() 185 void *new_ptr = allocate(size); in realloc() 199 void *ptr = allocate(bytes); in calloc()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | DynamicAllocator.cpp | 42 Block *DynamicAllocator::allocate(const Expr *Source, PrimType T, in allocate() function in DynamicAllocator 51 return allocate(D, EvalID, AllocForm); in allocate() 54 Block *DynamicAllocator::allocate(const Descriptor *ElementDesc, in allocate() function in DynamicAllocator 65 return allocate(D, EvalID, AllocForm); in allocate() 68 Block *DynamicAllocator::allocate(const Descriptor *D, unsigned EvalID, in allocate() function in DynamicAllocator
|
| H A D | InterpState.h | 130 void *allocate(size_t Size, unsigned Align = 8) const { 133 template <typename T> T *allocate(size_t Num = 1) const { 134 return static_cast<T *>(allocate(Num * sizeof(T), alignof(T))); 141 uint64_t *Mem = (uint64_t *)this->allocate(NumWords * sizeof(uint64_t)); in allocAP() 152 uint64_t *Mem = (uint64_t *)this->allocate(NumWords * sizeof(uint64_t)); in allocFloat()
|
| H A D | DynamicAllocator.h | 71 Block *allocate(const Descriptor *D, unsigned EvalID, Form AllocForm); 73 Block *allocate(const Expr *Source, PrimType T, size_t NumElements, 76 Block *allocate(const Descriptor *D, size_t NumElements, unsigned EvalID,
|
| /freebsd/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | allocator.h | 98 [[__nodiscard__]] _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp* allocate(size_t __n) { 112 return {allocate(__n), __n}; 143 …[[__nodiscard__]] _LIBCPP_HIDE_FROM_ABI _LIBCPP_DEPRECATED_IN_CXX17 _Tp* allocate(size_t __n, cons… 144 return allocate(__n);
|
| H A D | allocator_traits.h | 175 …decltype((void)std::declval<_Alloc>().allocate(std::declval<_SizeType>(), std::declval<_ConstVoidP… 258 allocate(allocator_type& __a, size_type __n) { 259 return __a.allocate(__n); 264 allocate(allocator_type& __a, size_type __n, const_void_pointer __hint) { 266 return __a.allocate(__n, __hint); 271 allocate(allocator_type& __a, size_type __n, const_void_pointer) { 272 return __a.allocate(__n); 282 return {__alloc.allocate(__n), __n};
|
| /freebsd/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_environment.cpp | 76 static inline void *allocate(size_t size) { in allocate() function 82 } // allocate in allocate() 267 vars = (kmp_env_var_t *)allocate((delimiters + 1) * sizeof(kmp_env_var_t)); in ___kmp_env_blk_parse_string() 341 bulk = (char *)allocate(size); in ___kmp_env_blk_parse_windows() 344 vars = (kmp_env_var_t *)allocate(count * sizeof(kmp_env_var_t)); in ___kmp_env_blk_parse_windows() 398 bulk = (char *)allocate(size); in ___kmp_env_blk_parse_unix() 399 vars = (kmp_env_var_t *)allocate(count * sizeof(kmp_env_var_t)); in ___kmp_env_blk_parse_unix()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerExtraCountersWindows.cpp | 33 __declspec(allocate(".data$__libfuzzer_extra_countaaa")) uint8_t 62 __declspec(allocate(".data$__libfuzzer_extra_countzzz")) uint8_t
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCRegisterInfoMMA.td | 57 // We want to allocate these registers even before we allocate 77 // least 32 as we want to allocate these registers before we allocate other 88 // Placing Altivec registers first and allocate the rest as underlying VSX
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A D | JITLinkMemoryManager.h | 163 virtual void allocate(const JITLinkDylib *JD, LinkGraph &G, 167 AllocResult allocate(const JITLinkDylib *JD, LinkGraph &G) { in allocate() function 170 allocate(JD, G, [&](AllocResult Alloc) { in allocate() 375 void allocate(const JITLinkDylib *JD, LinkGraph &G, 379 using JITLinkMemoryManager::allocate;
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__memory/ |
| H A D | allocator.h | 106 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _Tp* allocate(size_t __n) { 138 …_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _Tp* allocate(size_t __n, const void*) { return allocate(_…
|
| H A D | allocator_traits.h | 181 …decltype((void)std::declval<_Alloc>().allocate(std::declval<_SizeType>(), std::declval<_ConstVoidP… 248 …_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI static pointer allocate(allocator_type& __a, size_type __n… 249 return __a.allocate(__n); 254 allocate(allocator_type& __a, size_type __n, const_void_pointer __hint) { 256 return __a.allocate(__n, __hint); 263 allocate(allocator_type& __a, size_type __n, const_void_pointer) { 264 return __a.allocate(__n);
|
| /freebsd/usr.bin/sort/ |
| H A D | file.h | 110 void file_list_add(struct file_list *fl, const char *fn, bool allocate); 111 void file_list_populate(struct file_list *fl, int argc, char **argv, bool allocate);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | MapperJITLinkMemoryManager.h | 41 void allocate(const jitlink::JITLinkDylib *JD, jitlink::LinkGraph &G, 44 using JITLinkMemoryManager::allocate;
|
| H A D | EPCGenericJITLinkMemoryManager.h | 44 void allocate(const jitlink::JITLinkDylib *JD, jitlink::LinkGraph &G, 48 using JITLinkMemoryManager::allocate;
|
| /freebsd/contrib/llvm-project/libc/src/__support/GPU/ |
| H A D | allocator.cpp | 247 void *allocate(uint64_t lane_mask, uint64_t uniform) { in allocate() function 526 void *allocate(uint64_t size) { in allocate() function 542 void *ptr = slab->allocate(lane_mask, uniform); in allocate() 563 return gpu::allocate(size); in reallocate() 576 void *new_ptr = gpu::allocate(size); in reallocate() 590 return gpu::allocate(size); in aligned_allocate() 600 void *ptr = gpu::allocate(rounded); in aligned_allocate()
|
| /freebsd/contrib/llvm-project/libcxx/src/include/ |
| H A D | sso_allocator.h | 59 _LIBCPP_HIDE_FROM_ABI pointer allocate(size_type __n, typename __sso_allocator<void, _Np>::const_pointer = nullptr) { 64 return allocator<_Tp>().allocate(__n);
|