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.cc789 LPVOID mbase = RandomizedVirtualAlloc(msize, in Allocate() local
793 if (mbase == NULL) return NULL; in Allocate()
795 DCHECK((reinterpret_cast<uintptr_t>(mbase) % OS::AllocateAlignment()) == 0); in Allocate()
798 return mbase; in Allocate()
/external/v8/src/compiler/
Djs-typed-lowering.cc1067 HeapObjectMatcher mbase(base); in ReduceJSLoadProperty() local
1068 if (mbase.HasValue() && mbase.Value()->IsJSTypedArray()) { in ReduceJSLoadProperty()
1070 Handle<JSTypedArray>::cast(mbase.Value()); in ReduceJSLoadProperty()
1114 HeapObjectMatcher mbase(base); in ReduceJSStoreProperty() local
1115 if (mbase.HasValue() && mbase.Value()->IsJSTypedArray()) { in ReduceJSStoreProperty()
1117 Handle<JSTypedArray>::cast(mbase.Value()); in ReduceJSStoreProperty()