/external/webkit/Source/JavaScriptCore/wtf/ |
D | OSAllocatorWin.cpp | 43 void* result = VirtualAlloc(0, bytes, MEM_RESERVE, protection(writable, executable)); in reserveUncommitted() 51 … void* result = VirtualAlloc(0, bytes, MEM_RESERVE | MEM_COMMIT, protection(writable, executable)); in reserveAndCommit() 59 void* result = VirtualAlloc(address, bytes, MEM_COMMIT, protection(writable, executable)); in commit()
|
D | TCSystemAlloc.cpp | 232 void* result = VirtualAlloc(NULL, size + extra, in TryVirtualAlloc() 495 if (VirtualAlloc(start, length, MEM_COMMIT, PAGE_READWRITE) == start) in TCMalloc_SystemCommit() 511 void* newAddress = VirtualAlloc(ptr, commitSize, MEM_COMMIT, PAGE_READWRITE); in TCMalloc_SystemCommit()
|
/external/webkit/Source/JavaScriptCore/wtf/wince/ |
D | MemoryManager.cpp | 29 #undef VirtualAlloc 89 return VirtualAlloc(0, 65536, MEM_COMMIT | MEM_RESERVE, PAGE_READWRITE); in allocate64kBlock() 104 return ::VirtualAlloc(lpAddress, dwSize, flAllocationType, flProtect); in virtualAlloc()
|
/external/qemu/ |
D | oslib-win32.c | 50 ptr = qemu_oom_check(VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE)); in qemu_memalign() 65 ptr = qemu_oom_check(VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE)); in qemu_vmalloc()
|
/external/compiler-rt/lib/asan/ |
D | asan_win.cc | 36 return VirtualAlloc((LPVOID)fixed_addr, size, in AsanMmapFixedNoReserve() 41 void *rv = VirtualAlloc(NULL, size, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE); in AsanMmapSomewhereOrDie() 48 return VirtualAlloc((LPVOID)fixed_addr, size, in AsanMprotect()
|
/external/compiler-rt/lib/asan/interception/ |
D | interception_win.cc | 74 pool = (char*)VirtualAlloc(NULL, POOL_SIZE, in OverrideFunction()
|
/external/v8/src/ |
D | platform-cygwin.cc | 336 address_ = VirtualAlloc(NULL, size, MEM_RESERVE, PAGE_NOACCESS); in VirtualMemory() 350 if (NULL == VirtualAlloc(address, size, MEM_COMMIT, prot)) { in Commit() 366 if (NULL == VirtualAlloc(address, in Guard()
|
D | platform-win32.cc | 911 base = VirtualAlloc(GetRandomAddr(), size, action, protection); in RandomizedVirtualAlloc() 916 if (base == NULL) base = VirtualAlloc(NULL, size, action, protection); in RandomizedVirtualAlloc() 1483 address = VirtualAlloc(base, size, MEM_RESERVE, PAGE_NOACCESS); in VirtualMemory() 1539 if (NULL == VirtualAlloc(base, size, MEM_COMMIT, prot)) { in CommitRegion() 1549 if (NULL == VirtualAlloc(address, in Guard()
|
/external/chromium/base/test/ |
D | test_file_util_win.cc | 56 char* buffer = reinterpret_cast<char*>(VirtualAlloc(NULL, in EvictFileFromSystemCache()
|
/external/llvm/lib/Support/Windows/ |
D | Memory.inc | 38 void *pa = VirtualAlloc(start, NumPages*pageSize, MEM_RESERVE | MEM_COMMIT,
|
/external/svox/pico/lib/ |
D | picopal.c | 410 return VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE); in picopal_mpr_alloc()
|
/external/chromium/base/ |
D | file_util_win.cc | 1127 LPVOID buffer = ::VirtualAlloc(NULL, in PreReadImage()
|
/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
D | SDL_malloc.c | 1364 void* ptr = VirtualAlloc(0, size, MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE); in win32mmap() 1370 void* ptr = VirtualAlloc(0, size, MEM_RESERVE|MEM_COMMIT|MEM_TOP_DOWN, in win32direct_mmap()
|
/external/libffi/src/ |
D | dlmalloc.c | 1318 void* ptr = VirtualAlloc(0, size, MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE); in win32mmap() 1324 void* ptr = VirtualAlloc(0, size, MEM_RESERVE|MEM_COMMIT|MEM_TOP_DOWN, in win32direct_mmap()
|
/external/valgrind/tsan/ |
D | ts_pin.cc | 1648 uintptr_t WRAP_NAME(VirtualAlloc)(WRAP_PARAM4) { in WRAP_NAME() argument 3320 WrapStdCallFunc4(rtn, "VirtualAlloc", (AFUNPTR)(WRAP_NAME(VirtualAlloc))); in MaybeInstrumentOneRoutine()
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2010-05-24 | 9730 [BREWMP] Add MarkStack fastMalloc implementation for platforms without VirtualAlloc or mmap. 18358 We just use the Windows code that was there before and use VirtualAlloc. 21773 can only accept the base address returned by VirtualAlloc when the region
|
D | ChangeLog-2009-06-16 | 14281 <rdar://problem/6040850> JavaScript register file should use VirtualAlloc on Windows 30434 Pass 0 for size to VirtualAlloc, as documented by MSDN.
|
D | ChangeLog-2008-08-10 | 3792 * wtf/Platform.h: ...to here, to support mmap/VirtualAlloc detection
|