Searched defs:mbase (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/v8/src/
H A Dplatform-macos.cc123 void* mbase = mmap(OS::GetRandomMmapAddr(), local
129 if (mbase == MAP_FAILED) {
134 UpdateAllocatedSpaceLimits(mbase, msize);
135 return mbase;
H A Dplatform-cygwin.cc109 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
110 if (mbase == MAP_FAILED) {
115 UpdateAllocatedSpaceLimits(mbase, msize);
116 return mbase;
H A Dplatform-freebsd.cc117 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
119 if (mbase == MAP_FAILED) {
124 UpdateAllocatedSpaceLimits(mbase, msize);
125 return mbase;
H A Dplatform-linux.cc361 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
362 if (mbase == MAP_FAILED) {
368 UpdateAllocatedSpaceLimits(mbase, msize);
369 return mbase;
H A Dplatform-openbsd.cc116 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
117 if (mbase == MAP_FAILED) {
123 UpdateAllocatedSpaceLimits(mbase, msize);
124 return mbase;
H A Dplatform-solaris.cc132 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
134 if (mbase == MAP_FAILED) {
139 UpdateAllocatedSpaceLimits(mbase, msize);
140 return mbase;
H A Dplatform-win32.cc948 LPVOID mbase = RandomizedVirtualAlloc(msize, local
952 if (mbase == NULL) {
957 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment()));
960 UpdateAllocatedSpaceLimits(mbase, static_cast<int>(msize));
961 return mbase;
/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-linux.cc366 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
367 if (mbase == MAP_FAILED) {
373 UpdateAllocatedSpaceLimits(mbase, msize);
374 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-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-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-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 146 milliseconds