Home
last modified time | relevance | path

Searched refs:MAP_ANON (Results 1 – 25 of 74) sorted by relevance

123

/third_party/boost/boost/context/posix/
Dprotected_fixedsize_stack.hpp62 … void * vp = ::mmap( 0, size__, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON | MAP_STACK, -1, 0); in allocate()
63 #elif defined(MAP_ANON) in allocate()
64 void * vp = ::mmap( 0, size__, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0); in allocate()
/third_party/pcre2/pcre2/src/sljit/
DsljitUtils.c79 #ifndef MAP_ANON
81 #define MAP_ANON MAP_ANONYMOUS macro
85 #ifndef MAP_ANON
271 #ifdef MAP_ANON in sljit_allocate_stack()
272 ptr = mmap(NULL, max_size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0); in sljit_allocate_stack()
DsljitExecAllocator.c107 #ifdef MAP_ANON
129 MAP_PRIVATE | MAP_ANON, -1, 0); in get_map_jit_flag()
177 #ifdef MAP_ANON in alloc_chunk()
178 flags |= MAP_ANON | SLJIT_MAP_JIT; in alloc_chunk()
/third_party/musl/arch/mips/bits/
Dmman.h1 #undef MAP_ANON
2 #define MAP_ANON 0x800 macro
/third_party/musl/arch/mips64/bits/
Dmman.h1 #undef MAP_ANON
2 #define MAP_ANON 0x800 macro
/third_party/musl/arch/mipsn32/bits/
Dmman.h1 #undef MAP_ANON
2 #define MAP_ANON 0x800 macro
/third_party/libunwind/tests/
Dmapper.c39 #if !defined(MAP_ANONYMOUS) && defined(MAP_ANON)
40 # define MAP_ANONYMOUS MAP_ANON
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DMemory.inc89 // On platforms that have it, we can use MAP_ANON to get a memory-mapped
93 #if defined(MAP_ANON)
104 #if defined(MAP_ANON)
105 MMFlags |= MAP_ANON;
127 #if !defined(MAP_ANON)
134 #if !defined(MAP_ANON)
140 #if !defined(MAP_ANON)
/third_party/boost/boost/interprocess/
Danonymous_shared_memory.hpp81 #elif !defined(MAP_ANONYMOUS) && defined(MAP_ANON) //use MAP_ANON in anonymous_shared_memory()
82 flags = MAP_ANON | MAP_SHARED; in anonymous_shared_memory()
/third_party/libffi/testsuite/libffi.call/
Dffitest.h49 # if !defined (MAP_ANONYMOUS) && defined (MAP_ANON)
50 # define MAP_ANONYMOUS MAP_ANON
/third_party/libffi/testsuite/libffi.closures/
Dffitest.h49 # if !defined (MAP_ANONYMOUS) && defined (MAP_ANON)
50 # define MAP_ANONYMOUS MAP_ANON
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
Dmman.h18 #define MAP_ANON 0x20 macro
19 #define MAP_ANONYMOUS MAP_ANON
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dmman.h26 #define MAP_ANON 0x20 macro
27 #define MAP_ANONYMOUS MAP_ANON
/third_party/musl/ndk_musl_include/sys/
Dmman.h26 #define MAP_ANON 0x20 macro
27 #define MAP_ANONYMOUS MAP_ANON
/third_party/musl/porting/liteos_a/kernel/include/sys/
Dmman.h27 #define MAP_ANON 0x20 macro
28 #define MAP_ANONYMOUS MAP_ANON
/third_party/musl/include/sys/
Dmman.h26 #define MAP_ANON 0x20 macro
27 #define MAP_ANONYMOUS MAP_ANON
/third_party/python/Modules/_ctypes/
Dmalloc_closure.c8 # if !defined(MAP_ANONYMOUS) && defined(MAP_ANON)
9 # define MAP_ANONYMOUS MAP_ANON
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Dmman.h26 #define MAP_ANON 0x20 macro
27 #define MAP_ANONYMOUS MAP_ANON
/third_party/musl/porting/uniproton/kernel/include/sys/
Dmman.h26 #define MAP_ANON 0x20 macro
27 #define MAP_ANONYMOUS MAP_ANON
/third_party/boost/boost/coroutine/posix/
Dprotected_stack_allocator.hpp60 #if defined(MAP_ANON) in allocate()
61 void * limit = ::mmap( 0, size_, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0); in allocate()
/third_party/libunwind/include/win/sys/
Dmman.h15 #define MAP_ANON MAP_ANONYMOUS macro
/third_party/ltp/utils/benchmark/ebizzy-0.3/
Debizzy.h14 #define MAP_ANONYMOUS MAP_ANON
/third_party/libunwind/include/mingw/sys/
Dmman.h14 #define MAP_ANON MAP_ANONYMOUS macro
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Dmemorypool.c28 #if defined(MAP_ANON) && !defined(MAP_ANONYMOUS)
29 #define MAP_ANONYMOUS MAP_ANON
/third_party/ltp/testcases/kernel/mce-test/tsrc/
Dtsoft.c16 char *map = mmap(NULL, PS, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, 0, 0); in main()

123