Searched refs:mbase (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/base/platform/ |
D | platform-solaris.cc | 58 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()
|
D | platform-freebsd.cc | 62 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()
|
D | platform-macos.cc | 59 void* mbase = mmap(OS::GetRandomMmapAddr(), in Allocate() local 65 if (mbase == MAP_FAILED) return NULL; in Allocate() 67 return mbase; in Allocate()
|
D | platform-aix.cc | 68 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()
|
D | platform-cygwin.cc | 55 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()
|
D | platform-openbsd.cc | 61 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()
|
D | platform-qnx.cc | 112 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()
|
D | platform-linux.cc | 138 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()
|
D | platform-win32.cc | 789 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/ |
D | js-typed-lowering.cc | 1067 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()
|