Home
last modified time | relevance | path

Searched refs:mbase (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/base/platform/
Dplatform-solaris.cc59 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local
61 if (mbase == MAP_FAILED) return NULL; in Allocate()
63 return mbase; in Allocate()
Dplatform-macos.cc59 void* mbase = mmap(OS::GetRandomMmapAddr(), in Allocate() local
65 if (mbase == MAP_FAILED) return NULL; in Allocate()
67 return mbase; in Allocate()
Dplatform-freebsd.cc64 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local
66 if (mbase == MAP_FAILED) return NULL; in Allocate()
68 return mbase; in Allocate()
Dplatform-cygwin.cc57 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
58 if (mbase == MAP_FAILED) return NULL; in Allocate()
60 return mbase; in Allocate()
Dplatform-aix.cc70 void* mbase = mmapHelper(msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
72 if (mbase == MAP_FAILED) return NULL; in Allocate()
74 return mbase; in Allocate()
Dplatform-openbsd.cc63 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local
64 if (mbase == MAP_FAILED) return NULL; in Allocate()
66 return mbase; in Allocate()
Dplatform-qnx.cc114 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
115 if (mbase == MAP_FAILED) return NULL; in Allocate()
117 return mbase; in Allocate()
Dplatform-linux.cc117 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
118 if (mbase == MAP_FAILED) return NULL; in Allocate()
120 return mbase; in Allocate()
Dplatform-posix.cc105 void* mbase = OS::Allocate(requested, &allocated, is_executable); in AllocateGuarded() local
107 OS::Free(mbase, allocated); in AllocateGuarded()
110 if (mbase == nullptr) { in AllocateGuarded()
113 OS::Guard(mbase, requested); in AllocateGuarded()
114 return mbase; in AllocateGuarded()
Dplatform-win32.cc788 LPVOID mbase = RandomizedVirtualAlloc(msize, in Allocate() local
792 if (mbase == NULL) return NULL; in Allocate()
794 DCHECK((reinterpret_cast<uintptr_t>(mbase) % OS::AllocateAlignment()) == 0); in Allocate()
797 return mbase; in Allocate()
/external/v8/src/compiler/
Djs-typed-lowering.cc1309 HeapObjectMatcher mbase(base); in ReduceJSLoadProperty() local
1310 if (mbase.HasValue() && mbase.Value()->IsJSTypedArray()) { in ReduceJSLoadProperty()
1312 Handle<JSTypedArray>::cast(mbase.Value()); in ReduceJSLoadProperty()
1361 HeapObjectMatcher mbase(base); in ReduceJSStoreProperty() local
1362 if (mbase.HasValue() && mbase.Value()->IsJSTypedArray()) { in ReduceJSStoreProperty()
1364 Handle<JSTypedArray>::cast(mbase.Value()); in ReduceJSStoreProperty()