Home
last modified time | relevance | path

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

/external/v8/src/base/platform/
Dplatform-solaris.cc58 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local
60 if (mbase == MAP_FAILED) return NULL; in Allocate()
62 return mbase; in Allocate()
Dplatform-freebsd.cc62 void* mbase = mmap(NULL, 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-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-aix.cc68 void* mbase = mmapHelper(msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
70 if (mbase == MAP_FAILED) return NULL; in Allocate()
72 return mbase; in Allocate()
Dplatform-cygwin.cc55 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
56 if (mbase == MAP_FAILED) return NULL; in Allocate()
58 return mbase; in Allocate()
Dplatform-openbsd.cc61 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local
62 if (mbase == MAP_FAILED) return NULL; in Allocate()
64 return mbase; in Allocate()
Dplatform-qnx.cc112 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
113 if (mbase == MAP_FAILED) return NULL; in Allocate()
115 return mbase; in Allocate()
Dplatform-linux.cc138 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
139 if (mbase == MAP_FAILED) return NULL; in Allocate()
141 return mbase; in Allocate()
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.cc1001 HeapObjectMatcher mbase(base); in ReduceJSLoadProperty() local
1002 if (mbase.HasValue() && mbase.Value()->IsJSTypedArray()) { in ReduceJSLoadProperty()
1004 Handle<JSTypedArray>::cast(mbase.Value()); in ReduceJSLoadProperty()
1048 HeapObjectMatcher mbase(base); in ReduceJSStoreProperty() local
1049 if (mbase.HasValue() && mbase.Value()->IsJSTypedArray()) { in ReduceJSStoreProperty()
1051 Handle<JSTypedArray>::cast(mbase.Value()); in ReduceJSStoreProperty()