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

  /external/v8/src/base/platform/
platform-solaris.cc 58 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
60 if (mbase == MAP_FAILED) return NULL;
62 return mbase;
platform-aix.cc 68 void* mbase = mmapHelper(msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
70 if (mbase == MAP_FAILED) return NULL;
72 return mbase;
platform-cygwin.cc 55 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
56 if (mbase == MAP_FAILED) return NULL;
58 return mbase;
platform-freebsd.cc 62 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
64 if (mbase == MAP_FAILED) return NULL;
66 return mbase;
platform-linux.cc 138 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
139 if (mbase == MAP_FAILED) return NULL;
141 return mbase;
platform-macos.cc 59 void* mbase = mmap(OS::GetRandomMmapAddr(), local
65 if (mbase == MAP_FAILED) return NULL;
67 return mbase;
platform-openbsd.cc 61 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
62 if (mbase == MAP_FAILED) return NULL;
64 return mbase;
platform-qnx.cc 112 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
113 if (mbase == MAP_FAILED) return NULL;
115 return mbase;
platform-win32.cc 789 LPVOID mbase = RandomizedVirtualAlloc(msize, local
793 if (mbase == NULL) return NULL;
795 DCHECK((reinterpret_cast<uintptr_t>(mbase) % OS::AllocateAlignment()) == 0);
798 return mbase;
    [all...]

Completed in 124 milliseconds