Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Dplatform-macos.cc83 void* mbase = mmap(OS::GetRandomMmapAddr(), in Allocate() local
89 if (mbase == MAP_FAILED) { in Allocate()
94 return mbase; in Allocate()
Dplatform-freebsd.cc87 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local
89 if (mbase == MAP_FAILED) { in Allocate()
94 return mbase; in Allocate()
Dplatform-solaris.cc103 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local
105 if (mbase == MAP_FAILED) { in Allocate()
110 return mbase; in Allocate()
Dplatform-cygwin.cc80 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
81 if (mbase == MAP_FAILED) { in Allocate()
86 return mbase; in Allocate()
Dplatform-openbsd.cc86 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local
87 if (mbase == MAP_FAILED) { in Allocate()
93 return mbase; in Allocate()
Dplatform-linux.cc140 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
141 if (mbase == MAP_FAILED) { in Allocate()
147 return mbase; in Allocate()
Dplatform-win32.cc888 LPVOID mbase = RandomizedVirtualAlloc(msize, in Allocate() local
892 if (mbase == NULL) { in Allocate()
897 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment())); in Allocate()
900 return mbase; in Allocate()
/external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
Dmathjax_external_util.js95 var mbaseProt = MathJax.ElementJax.mml.mbase.prototype;
100 mbaseProt.toMathMLattributes = cvox.MathJaxExternalUtil.mbase;
123 cvox.MathJaxExternalUtil.mbase = function() { function in cvox.MathJaxExternalUtil
/external/v8/src/
Dplatform-cygwin.cc157 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
158 if (mbase == MAP_FAILED) { in Allocate()
163 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
164 return mbase; in Allocate()
Dplatform-freebsd.cc172 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local
174 if (mbase == MAP_FAILED) { in Allocate()
179 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
180 return mbase; in Allocate()
Dplatform-solaris.cc184 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local
186 if (mbase == MAP_FAILED) { in Allocate()
191 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
192 return mbase; in Allocate()
Dplatform-macos.cc155 void* mbase = mmap(OS::GetRandomMmapAddr(), in Allocate() local
161 if (mbase == MAP_FAILED) { in Allocate()
166 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
167 return mbase; in Allocate()
Dplatform-openbsd.cc191 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate() local
192 if (mbase == MAP_FAILED) { in Allocate()
198 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
199 return mbase; in Allocate()
Dplatform-linux.cc366 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate() local
367 if (mbase == MAP_FAILED) { in Allocate()
373 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
374 return mbase; in Allocate()
Dplatform-win32.cc931 LPVOID mbase = RandomizedVirtualAlloc(msize, in Allocate() local
935 if (mbase == NULL) { in Allocate()
940 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment())); in Allocate()
943 UpdateAllocatedSpaceLimits(mbase, static_cast<int>(msize)); in Allocate()
944 return mbase; in Allocate()