/external/chromium_org/chrome/third_party/chromevox/chromevox/injected/ |
mathjax_external_util.js | 95 var mbaseProt = MathJax.ElementJax.mml.mbase.prototype; 100 mbaseProt.toMathMLattributes = cvox.MathJaxExternalUtil.mbase; 123 cvox.MathJaxExternalUtil.mbase = function() {
|
/external/chromium_org/v8/src/ |
platform-cygwin.cc | 80 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local 81 if (mbase == MAP_FAILED) { 86 return mbase;
|
platform-freebsd.cc | 87 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local 89 if (mbase == MAP_FAILED) { 94 return mbase;
|
platform-linux.cc | 140 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local 141 if (mbase == MAP_FAILED) { 147 return mbase;
|
platform-macos.cc | 83 void* mbase = mmap(OS::GetRandomMmapAddr(), local 89 if (mbase == MAP_FAILED) { 94 return mbase;
|
platform-openbsd.cc | 86 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local 87 if (mbase == MAP_FAILED) { 93 return mbase;
|
platform-solaris.cc | 103 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local 105 if (mbase == MAP_FAILED) { 110 return mbase;
|
platform-win32.cc | 888 LPVOID mbase = RandomizedVirtualAlloc(msize, local 892 if (mbase == NULL) { 897 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment())); 900 return mbase; [all...] |
/external/v8/src/ |
platform-cygwin.cc | 157 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local 158 if (mbase == MAP_FAILED) { 163 UpdateAllocatedSpaceLimits(mbase, msize); 164 return mbase;
|
platform-freebsd.cc | 172 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local 174 if (mbase == MAP_FAILED) { 179 UpdateAllocatedSpaceLimits(mbase, msize); 180 return mbase;
|
platform-macos.cc | 155 void* mbase = mmap(OS::GetRandomMmapAddr(), local 161 if (mbase == MAP_FAILED) { 166 UpdateAllocatedSpaceLimits(mbase, msize); 167 return mbase;
|
platform-solaris.cc | 184 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local 186 if (mbase == MAP_FAILED) { 191 UpdateAllocatedSpaceLimits(mbase, msize); 192 return mbase;
|
platform-linux.cc | 366 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); local 367 if (mbase == MAP_FAILED) { 373 UpdateAllocatedSpaceLimits(mbase, msize); 374 return mbase; [all...] |
platform-openbsd.cc | 191 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); local 192 if (mbase == MAP_FAILED) { 198 UpdateAllocatedSpaceLimits(mbase, msize); 199 return mbase;
|
platform-win32.cc | 931 LPVOID mbase = RandomizedVirtualAlloc(msize, local 935 if (mbase == NULL) { 940 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment())); 943 UpdateAllocatedSpaceLimits(mbase, static_cast<int>(msize)); 944 return mbase; [all...] |