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

  /external/v8/src/
platform-openbsd.cc 154 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
156 if (mbase == MAP_FAILED) {
161 UpdateAllocatedSpaceLimits(mbase, msize);
162 return mbase;
platform-cygwin.cc 150 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
151 if (mbase == MAP_FAILED) {
156 UpdateAllocatedSpaceLimits(mbase, msize);
157 return mbase;
platform-freebsd.cc 163 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
165 if (mbase == MAP_FAILED) {
170 UpdateAllocatedSpaceLimits(mbase, msize);
171 return mbase;
platform-macos.cc 151 void* mbase = mmap(NULL, msize, prot, local
154 if (mbase == MAP_FAILED) {
159 UpdateAllocatedSpaceLimits(mbase, msize);
160 return mbase;
platform-solaris.cc 170 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
172 if (mbase == MAP_FAILED) {
177 UpdateAllocatedSpaceLimits(mbase, msize);
178 return mbase;
platform-win32.cc 889 LPVOID mbase = VirtualAlloc(reinterpret_cast<void *>(address), local
893 if (mbase == NULL && address != 0)
894 mbase = VirtualAlloc(NULL, msize, MEM_COMMIT | MEM_RESERVE, prot);
896 if (mbase == NULL) {
901 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment()));
904 UpdateAllocatedSpaceLimits(mbase, static_cast<int>(msize));
905 return mbase;
    [all...]
platform-linux.cc 316 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
317 if (mbase == MAP_FAILED) {
323 UpdateAllocatedSpaceLimits(mbase, msize);
324 return mbase;

Completed in 53 milliseconds