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 59 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
61 if (mbase == MAP_FAILED) return NULL;
63 return mbase;
platform-aix.cc 70 void* mbase = mmapHelper(msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
72 if (mbase == MAP_FAILED) return NULL;
74 return mbase;
platform-cygwin.cc 57 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
58 if (mbase == MAP_FAILED) return NULL;
60 return mbase;
platform-freebsd.cc 64 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
66 if (mbase == MAP_FAILED) return NULL;
68 return mbase;
platform-linux.cc 122 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
123 if (mbase == MAP_FAILED) return NULL;
125 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 63 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
64 if (mbase == MAP_FAILED) return NULL;
66 return mbase;
platform-qnx.cc 114 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
115 if (mbase == MAP_FAILED) return NULL;
117 return mbase;
platform-win32.cc 788 LPVOID mbase = RandomizedVirtualAlloc(msize, local
792 if (mbase == NULL) return NULL;
794 DCHECK((reinterpret_cast<uintptr_t>(mbase) % OS::AllocateAlignment()) == 0);
797 return mbase;
    [all...]

Completed in 1220 milliseconds