/external/webkit/Source/JavaScriptCore/wtf/ |
TCSystemAlloc.h | 33 // Routine that uses sbrk/mmap to allocate memory from the system. 67 #if !HAVE(MADV_FREE_REUSE) && !HAVE(MADV_DONTNEED) && !HAVE(MMAP) && !HAVE(VIRTUALALLOC)
|
PageAllocation.h | 59 #if HAVE(MMAP) 70 with similar capabilities to posix mmap/munmap. Memory is allocated by calling
|
TCSystemAlloc.cpp | 81 // the mmap address space (1300MBish) are disjoint, so we need both allocators 91 #if HAVE(MMAP) 161 #if HAVE(MMAP) 179 void* result = mmap(NULL, size + extra, 207 #endif /* HAVE(MMAP) */ 261 #endif /* HAVE(MMAP) */ 312 void *result = mmap(0, size + extra, PROT_READ | PROT_WRITE, 368 #if HAVE(MMAP) 442 #elif HAVE(MMAP) 446 void* newAddress = mmap(start, length, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED, -1, 0) [all...] |
/external/valgrind/tsan/ |
ts_events.h | 73 MMAP, // {tid, pc, addr, size}
|
ts_valgrind.cc | 636 Put(MMAP, ts_tid, pc, /*ptr=*/args[1], /*size=*/args[2]); [all...] |
ts_pin.cc | [all...] |
thread_sanitizer.cc | [all...] |
/external/stlport/src/details/ |
fstream_unistd.cpp | 34 # include <sys/mman.h> // For mmap 62 # define MMAP mmap 68 # define MMAP mmap64 72 #ifndef MAP_FAILED /* MMAP failure return code */ 320 base = MMAP(0, len, PROT_READ, MAP_PRIVATE, _M_file_id, offset);
|
/ndk/sources/cxx-stl/stlport/src/details/ |
fstream_unistd.cpp | 34 # include <sys/mman.h> // For mmap 62 # define MMAP mmap 68 # define MMAP mmap64 72 #ifndef MAP_FAILED /* MMAP failure return code */ 320 base = MMAP(0, len, PROT_READ, MAP_PRIVATE, _M_file_id, offset);
|
/external/valgrind/unittest/ |
posix_tests.cc | 260 int *MMAP; 278 (*MMAP)++; 296 MMAP = (int*)mmap(NULL, sizeof(int), PROT_READ | PROT_WRITE, 313 ANNOTATE_EXPECT_RACE(MMAP, "real race on a mmap-ed object"); 332 munmap(MMAP, sizeof(int)); 511 int *ptr = (int*)mmap(NULL, kMmapSize, PROT_READ | PROT_WRITE, 537 // A regression test for mmap/munmap handling in Pin. 548 int *ptr = (int*)mmap((void*)kStartAddress, kMmapSize [all...] |
/external/valgrind/main/drd/tests/ |
tsan_unittest.cpp | 90 #include <sys/mman.h> // mmap [all...] |
/external/bluetooth/glib/gio/xdgmime/ |
xdgmimecache.c | 46 #warning Building xdgmime without MMAP support. Binary "mime.info" cache files will not be used. 129 buffer = (char *) mmap (NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
|
/external/v8/test/mjsunit/ |
unicode-test.js | [all...] |