Home
last modified time | relevance | path

Searched refs:VirtualAlloc (Results 1 – 18 of 18) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
DOSAllocatorWin.cpp43 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()
DTCSystemAlloc.cpp232 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/
DMemoryManager.cpp29 #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/
Doslib-win32.c50 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/
Dasan_win.cc36 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/
Dinterception_win.cc74 pool = (char*)VirtualAlloc(NULL, POOL_SIZE, in OverrideFunction()
/external/v8/src/
Dplatform-cygwin.cc336 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()
Dplatform-win32.cc911 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/
Dtest_file_util_win.cc56 char* buffer = reinterpret_cast<char*>(VirtualAlloc(NULL, in EvictFileFromSystemCache()
/external/llvm/lib/Support/Windows/
DMemory.inc38 void *pa = VirtualAlloc(start, NumPages*pageSize, MEM_RESERVE | MEM_COMMIT,
/external/svox/pico/lib/
Dpicopal.c410 return VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE); in picopal_mpr_alloc()
/external/chromium/base/
Dfile_util_win.cc1127 LPVOID buffer = ::VirtualAlloc(NULL, in PreReadImage()
/external/qemu/distrib/sdl-1.2.12/src/stdlib/
DSDL_malloc.c1364 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/
Ddlmalloc.c1318 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/
Dts_pin.cc1648 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/
DChangeLog-2010-05-249730 [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
DChangeLog-2009-06-1614281 <rdar://problem/6040850> JavaScript register file should use VirtualAlloc on Windows
30434 Pass 0 for size to VirtualAlloc, as documented by MSDN.
DChangeLog-2008-08-103792 * wtf/Platform.h: ...to here, to support mmap/VirtualAlloc detection