Home
last modified time | relevance | path

Searched refs:SCUDO_PREFIX (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dwrappers_c.inc9 #ifndef SCUDO_PREFIX
10 #error "Define SCUDO_PREFIX prior to including this file!"
35 INTERFACE WEAK void SCUDO_PREFIX(free)(void *ptr) {
57 INTERFACE WEAK void *SCUDO_PREFIX(malloc)(size_t size) {
134 INTERFACE WEAK void *SCUDO_PREFIX(valloc)(size_t size) {
139 INTERFACE WEAK int SCUDO_PREFIX(malloc_iterate)(
148 INTERFACE WEAK void SCUDO_PREFIX(malloc_disable)() {
152 void SCUDO_PREFIX(malloc_postinit)() {
154 pthread_atfork(SCUDO_PREFIX(malloc_disable), SCUDO_PREFIX(malloc_enable),
155 SCUDO_PREFIX(malloc_enable));
[all …]
H A Dwrappers_c_bionic.cpp22 #define SCUDO_PREFIX(name) CONCATENATE(scudo_, name) macro
25 extern "C" void SCUDO_PREFIX(malloc_postinit)();
27 static scudo::Allocator<scudo::AndroidConfig, SCUDO_PREFIX(malloc_postinit)>
33 #undef SCUDO_PREFIX
36 #define SCUDO_PREFIX(name) CONCATENATE(scudo_svelte_, name) macro
39 extern "C" void SCUDO_PREFIX(malloc_postinit)();
42 SCUDO_PREFIX(malloc_postinit)>
48 #undef SCUDO_PREFIX
H A Dwrappers_c.cpp21 #define SCUDO_PREFIX(name) name macro
24 extern "C" void SCUDO_PREFIX(malloc_postinit)();
30 scudo::Allocator<scudo::Config, SCUDO_PREFIX(malloc_postinit)> SCUDO_ALLOCATOR;
35 #undef SCUDO_PREFIX