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

  /external/v8/src/
platform-cygwin.cc 157 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;
platform-macos.cc 155 void* mbase = mmap(OS::GetRandomMmapAddr(), local
161 if (mbase == MAP_FAILED) {
166 UpdateAllocatedSpaceLimits(mbase, msize);
167 return mbase;
platform-solaris.cc 184 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;
platform-freebsd.cc 172 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;
platform-linux.cc 366 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;
    [all...]
platform-openbsd.cc 191 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;
platform-win32.cc 931 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;
    [all...]

Completed in 241 milliseconds