/external/webkit/Source/JavaScriptCore/wtf/ |
OSAllocatorWin.cpp | 43 void* result = VirtualAlloc(0, bytes, MEM_RESERVE, protection(writable, executable)); 51 void* result = VirtualAlloc(0, bytes, MEM_RESERVE | MEM_COMMIT, protection(writable, executable)); 59 void* result = VirtualAlloc(address, bytes, MEM_COMMIT, protection(writable, executable));
|
TCSystemAlloc.cpp | 95 #if HAVE(VIRTUALALLOC) 209 #if HAVE(VIRTUALALLOC) 232 void* result = VirtualAlloc(NULL, size + extra, 375 #if HAVE(VIRTUALALLOC) 451 #elif HAVE(VIRTUALALLOC) 459 // from more than one call to VirtualAlloc. In this case, fall back to 491 #elif HAVE(VIRTUALALLOC) 495 if (VirtualAlloc(start, length, MEM_COMMIT, PAGE_READWRITE) == start) 499 // from more than one call to VirtualAlloc. In this case, fall back to 511 void* newAddress = VirtualAlloc(ptr, commitSize, MEM_COMMIT, PAGE_READWRITE) [all...] |
/external/qemu/ |
oslib-win32.c | 50 ptr = qemu_oom_check(VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE)); 59 /* FIXME: this is not exactly optimal solution since VirtualAlloc 65 ptr = qemu_oom_check(VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE));
|
/external/webkit/Source/JavaScriptCore/wtf/wince/ |
MemoryManager.cpp | 29 #undef VirtualAlloc 89 return VirtualAlloc(0, 65536, MEM_COMMIT | MEM_RESERVE, PAGE_READWRITE); 102 LPVOID MemoryManager::virtualAlloc(LPVOID lpAddress, DWORD dwSize, DWORD flAllocationType, DWORD flProtect) 104 return ::VirtualAlloc(lpAddress, dwSize, flAllocationType, flProtect);
|
/external/chromium/base/test/ |
test_file_util_win.cc | 56 char* buffer = reinterpret_cast<char*>(VirtualAlloc(NULL,
|
/external/v8/src/ |
platform-cygwin.cc | 336 address_ = VirtualAlloc(NULL, size, MEM_RESERVE, PAGE_NOACCESS); 350 if (NULL == VirtualAlloc(address, size, MEM_COMMIT, prot)) {
|
platform-win32.cc | 831 // Get the system's page size used by VirtualAlloc() or the next power 846 // VirtualAlloc'ed blocks of memory. 874 // VirtualAlloc rounds allocated size to page size automatically. 889 LPVOID mbase = VirtualAlloc(reinterpret_cast<void *>(address), 894 mbase = VirtualAlloc(NULL, msize, MEM_COMMIT | MEM_RESERVE, prot); 897 LOG(ISOLATE, StringEvent("OS::Allocate", "VirtualAlloc failed")); [all...] |
/external/svox/pico/lib/ |
picopal.c | 410 return VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE);
|
/external/chromium/base/ |
file_util_win.cc | [all...] |
/bionic/libc/bionic/ |
dlmalloc.c | 150 based on VirtualAlloc. It also uses common C library functions [all...] |
/external/libffi/src/ |
dlmalloc.c | 123 based on VirtualAlloc. It also uses common C library functions [all...] |
/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
SDL_malloc.c | 159 based on VirtualAlloc. It also uses common C library functions [all...] |
/external/valgrind/tsan/ |
ts_pin.cc | [all...] |
/external/v8/test/mjsunit/ |
unicode-test.js | [all...] |