Searched refs:mbase (Results 1 - 7 of 7) sorted by relevance

/external/v8/src/
H A Dplatform-cygwin.cc157 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
158 if (mbase == MAP_FAILED) {
163 UpdateAllocatedSpaceLimits(mbase, msize);
164 return mbase;
H A Dplatform-freebsd.cc172 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
174 if (mbase == MAP_FAILED) {
179 UpdateAllocatedSpaceLimits(mbase, msize);
180 return mbase;
H A Dplatform-macos.cc155 void* mbase = mmap(OS::GetRandomMmapAddr(), local
161 if (mbase == MAP_FAILED) {
166 UpdateAllocatedSpaceLimits(mbase, msize);
167 return mbase;
H A Dplatform-solaris.cc184 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
186 if (mbase == MAP_FAILED) {
191 UpdateAllocatedSpaceLimits(mbase, msize);
192 return mbase;
H A Dplatform-linux.cc371 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
372 if (mbase == MAP_FAILED) {
378 UpdateAllocatedSpaceLimits(mbase, msize);
379 return mbase;
H A Dplatform-openbsd.cc191 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
192 if (mbase == MAP_FAILED) {
198 UpdateAllocatedSpaceLimits(mbase, msize);
199 return mbase;
H A Dplatform-win32.cc931 LPVOID mbase = RandomizedVirtualAlloc(msize, local
935 if (mbase == NULL) {
940 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment()));
943 UpdateAllocatedSpaceLimits(mbase, static_cast<int>(msize));
944 return mbase;

Completed in 77 milliseconds