Searched refs:mbase (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/base/platform/ |
D | platform-solaris.cc | 78 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local 80 if (mbase == MAP_FAILED) return NULL; in Allocate() 82 return mbase; in Allocate()
|
D | platform-macos.cc | 59 void* mbase = mmap(OS::GetRandomMmapAddr(), in Allocate() local 65 if (mbase == MAP_FAILED) return NULL; in Allocate() 67 return mbase; in Allocate()
|
D | platform-cygwin.cc | 55 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local 56 if (mbase == MAP_FAILED) return NULL; in Allocate() 58 return mbase; in Allocate()
|
D | platform-freebsd.cc | 63 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local 65 if (mbase == MAP_FAILED) return NULL; in Allocate() 67 return mbase; in Allocate()
|
D | platform-openbsd.cc | 62 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local 63 if (mbase == MAP_FAILED) return NULL; in Allocate() 65 return mbase; in Allocate()
|
D | platform-qnx.cc | 113 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local 114 if (mbase == MAP_FAILED) return NULL; in Allocate() 116 return mbase; in Allocate()
|
D | platform-linux.cc | 138 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local 139 if (mbase == MAP_FAILED) return NULL; in Allocate() 141 return mbase; in Allocate()
|
D | platform-win32.cc | 783 LPVOID mbase = RandomizedVirtualAlloc(msize, in Allocate() local 787 if (mbase == NULL) return NULL; in Allocate() 789 DCHECK((reinterpret_cast<uintptr_t>(mbase) % OS::AllocateAlignment()) == 0); in Allocate() 792 return mbase; in Allocate()
|