/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_dll_thunk.cpp | 62 __declspec(allocate(".DLLTH$A")) DllThunkCB __start_dll_thunk; 63 __declspec(allocate(".DLLTH$Z")) DllThunkCB __stop_dll_thunk; 89 __declspec(allocate(".CRT$XIB")) int (*__dll_thunk_preinit)() = 98 __declspec(allocate(".CRT$XLAB")) void (WINAPI *__dll_thunk_tls_init)(void *,
|
H A D | sanitizer_win_weak_interception.cpp | 62 __declspec(allocate(".WEAK$A")) InterceptCB __start_weak_list; 63 __declspec(allocate(".WEAK$Z")) InterceptCB __stop_weak_list; 82 __declspec(allocate(".CRT$XIB")) int (*__weak_intercept_preinit)() = 91 __declspec(allocate(".CRT$XLAB")) void(WINAPI *__weak_intercept_tls_init)(
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_win_dynamic_runtime_thunk.cpp | 77 __declspec(allocate(".CRT$XIB")) int (*__asan_initialize_cloned_variables)() = 79 __declspec(allocate(".CRT$XLAB")) void (NTAPI *__asan_tls_init)(void *, 95 __declspec(allocate(".CRT$XTW")) void* before_global_dtors = 0; 96 __declspec(allocate(".CRT$XTY")) void* after_global_dtors = 0; 111 __declspec(allocate(".CRT$XID")) 124 __declspec(allocate(".CRT$XCAB")) int (*__asan_seh_interceptor)() =
|
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 = {}; 54 extern "C" __declspec(allocate(".CRT$XCU")) 56 extern "C" __declspec(allocate(".CRT$XTX"))
|
H A D | asan_win_dll_thunk.cpp | 152 __declspec(allocate(".CRT$XIB")) int (*__asan_preinit)() = asan_dll_thunk_init; 160 __declspec(allocate(".CRT$XLAB")) void (WINAPI *__asan_tls_init)(void *,
|
H A D | asan_win.cpp | 378 __declspec(allocate(".CRT$XCAB")) int (*__intercept_seh)() = 391 __declspec(allocate(".CRT$XLAB")) void(NTAPI *__asan_tls_init)( 405 __declspec(allocate(".CRT$XLY")) void(NTAPI *__asan_tls_exit)(
|
/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);
|
H A D | local_cache.h | 40 void *allocate(uptr ClassId) { in appendFromTransferBatch() 68 // See comment in allocate() about memory accesses. 99 void *B = allocate(BatchClassId); in init() 107 void *allocate(uptr ClassId) { allocate() function
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | allocator.h | 112 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp* allocate(size_t __n) { 124 return {allocate(__n), __n}; 155 …_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_DEPRECATED_IN_CXX17 _Tp* allocate(size_t __n, cons… 156 return allocate(__n); 193 …_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 const _Tp* allocate(size_t _… 205 return {allocate(__n), __n}; 233 …_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_DEPRECATED_IN_CXX17 const _Tp* allocate(size_t __n… 234 return allocate(__n);
|
H A D | allocator_traits.h | 193 …decltype((void)std::declval<_Alloc>().allocate(std::declval<_SizeType>(), std::declval<_ConstVoidP… 279 allocate(allocator_type& __a, size_type __n) { 280 return __a.allocate(__n); 285 allocate(allocator_type& __a, size_type __n, const_void_pointer __hint) { 287 return __a.allocate(__n, __hint); 294 allocate(allocator_type& __a, size_type __n, const_void_pointer) { 295 return __a.allocate(__n); 305 return {__alloc.allocate(__n), __n};
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | DynamicAllocator.cpp | 42 Block *DynamicAllocator::allocate(const Expr *Source, PrimType T, in allocate() function in DynamicAllocator 50 return allocate(D, EvalID); in allocate() 53 Block *DynamicAllocator::allocate(const Descriptor *ElementDesc, in allocate() function in DynamicAllocator 60 return allocate(D, EvalID); in allocate() 63 Block *DynamicAllocator::allocate(const Descriptor *D, unsigned EvalID) { in allocate() function in DynamicAllocator
|
H A D | DynamicAllocator.h | 61 Block *allocate(const Descriptor *D, unsigned EvalID); 63 Block *allocate(const Expr *Source, PrimType T, size_t NumElements, 66 Block *allocate(const Descriptor *D, size_t NumElements, unsigned EvalID);
|
/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/include/llvm/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.h | 159 virtual void allocate(const JITLinkDylib *JD, LinkGraph &G, 163 AllocResult allocate(const JITLinkDylib *JD, LinkGraph &G) { in allocate() function 166 allocate(JD, G, [&](AllocResult Alloc) { in allocate() 257 /// Returns the total number of required to allocate all segments (with each 368 void allocate(const JITLinkDylib *JD, LinkGraph &G, 372 using JITLinkMemoryManager::allocate;
|
/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/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 | 39 void allocate(const jitlink::JITLinkDylib *JD, jitlink::LinkGraph &G, 42 using JITLinkMemoryManager::allocate;
|
H A D | EPCGenericJITLinkMemoryManager.h | 42 void allocate(const jitlink::JITLinkDylib *JD, jitlink::LinkGraph &G, 46 using JITLinkMemoryManager::allocate;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonCallingConv.td | 34 // Pass split values in pairs, allocate odd register if necessary. 41 // Make sure to allocate any skipped 32-bit register, so it does not get 64 // Pass split values in pairs, allocate odd register if necessary. 71 // Make sure to allocate any skipped 32-bit register, so it does not get
|
/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);
|
/freebsd/lib/libpmcstat/ |
H A D | libpmcstat_process.c | 216 pmcstat_process_lookup(pid_t pid, int allocate) in pmcstat_process_lookup() argument 227 if (allocate && pp->pp_isactive == 0) { in pmcstat_process_lookup() 243 if (!allocate) in pmcstat_process_lookup()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | ParsedAttr.h | 677 void *allocate(size_t size); 700 void *allocate(size_t size) { in allocate() function 701 return Factory.allocate(size); in allocate() 756 void *memory = allocate( 774 void *memory = allocate(AttributeFactory::AvailabilityAllocSize); in create() 785 void *memory = allocate( in create() 799 void *memory = allocate(AttributeFactory::TypeTagForDatatypeAllocSize); in createTypeTagForDatatype() 811 void *memory = allocate( in createTypeAttribute() 824 void *memory = allocate(AttributeFactory::PropertyAllocSize); in createPropertyAttribute()
|