HomeSort by relevance Sort by last modified time
    Searched defs:MMAP (Results 1 - 6 of 6) sorted by null

  /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...]
  /bionic/libc/upstream-dlmalloc/
malloc.c 62 are serviced via mmap(), where the worst case wastage is about
64 mmap unit); typically 4096 or 8192 bytes.
129 System requirements: Any combination of MORECORE and/or MMAP/MUNMAP
131 the CALL_MORECORE macro) and/or mmap/munmap or any emulation
134 MORECORE and MMAP are enabled. On Win32, it uses emulations
166 or actions surrounding MORECORE and MMAP that have times
385 True if this system supports mmap or an emulation of it. If so, and
386 HAVE_MORECORE is not true, MMAP is used for all system
387 allocation. If set and HAVE_MORECORE is true as well, MMAP is
392 to MMAP, so long as they are adjacent
    [all...]
  /external/eigen/unsupported/test/mpreal/
dlmalloc.c 63 are serviced via mmap(), where the worst case wastage is about
65 mmap unit); typically 4096 or 8192 bytes.
119 System requirements: Any combination of MORECORE and/or MMAP/MUNMAP
121 the CALL_MORECORE macro) and/or mmap/munmap or any emulation
124 MORECORE and MMAP are enabled. On Win32, it uses emulations
156 or actions surrounding MORECORE and MMAP that have times
348 True if this system supports mmap or an emulation of it. If so, and
349 HAVE_MORECORE is not true, MMAP is used for all system
350 allocation. If set and HAVE_MORECORE is true as well, MMAP is
355 to MMAP, so long as they are adjacent.
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 90 #include <sys/mman.h> // mmap
    [all...]

Completed in 398 milliseconds