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

  /external/v8/src/
platform-macos.cc 140 void* mbase = mmap(NULL, msize, prot, local
143 if (mbase == MAP_FAILED) {
148 UpdateAllocatedSpaceLimits(mbase, msize);
149 return mbase;
platform-openbsd.cc 147 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
149 if (mbase == MAP_FAILED) {
154 UpdateAllocatedSpaceLimits(mbase, msize);
155 return mbase;
platform-solaris.cc 142 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
144 if (mbase == MAP_FAILED) {
149 UpdateAllocatedSpaceLimits(mbase, msize);
150 return mbase;
platform-freebsd.cc 148 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local
150 if (mbase == MAP_FAILED) {
155 UpdateAllocatedSpaceLimits(mbase, msize);
156 return mbase;
platform-linux.cc 218 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local
219 if (mbase == MAP_FAILED) {
224 UpdateAllocatedSpaceLimits(mbase, msize);
225 return mbase;
platform-win32.cc 846 LPVOID mbase = VirtualAlloc(NULL, msize, MEM_COMMIT | MEM_RESERVE, prot); local
847 if (mbase == NULL) {
852 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment()));
855 UpdateAllocatedSpaceLimits(mbase, static_cast<int>(msize));
856 return mbase;
    [all...]

Completed in 39 milliseconds