HomeSort by relevance Sort by last modified time
    Searched refs:VirtualAlloc (Results 1 - 17 of 17) sorted by null

  /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/compiler-rt/lib/asan/interception/
interception_win.cc 74 pool = (char*)VirtualAlloc(NULL, POOL_SIZE,
  /external/compiler-rt/lib/asan/
asan_win.cc 36 return VirtualAlloc((LPVOID)fixed_addr, size,
41 void *rv = VirtualAlloc(NULL, size, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
48 return VirtualAlloc((LPVOID)fixed_addr, size,
  /external/chromium/base/test/
test_file_util_win.cc 56 char* buffer = reinterpret_cast<char*>(VirtualAlloc(NULL,
  /sdk/find_lock/
find_lock.cpp 477 (SYSTEM_PROCESS_INFORMATION *) VirtualAlloc(NULL, infoSize, MEM_COMMIT, PAGE_READWRITE);
493 infoPtr = (SYSTEM_PROCESS_INFORMATION *) VirtualAlloc(
528 (SYSTEM_HANDLE_INFORMATION *) VirtualAlloc(NULL, infoSize, MEM_COMMIT, PAGE_READWRITE);
544 infoPtr = (SYSTEM_HANDLE_INFORMATION *) VirtualAlloc(
  /external/v8/src/
platform-cygwin.cc 336 address_ = VirtualAlloc(NULL, size, MEM_RESERVE, PAGE_NOACCESS);
350 if (NULL == VirtualAlloc(address, size, MEM_COMMIT, prot)) {
366 if (NULL == VirtualAlloc(address,
platform-win32.cc 851 // Get the system's page size used by VirtualAlloc() or the next power
866 // VirtualAlloc'ed blocks of memory.
911 base = VirtualAlloc(GetRandomAddr(), size, action, protection);
916 if (base == NULL) base = VirtualAlloc(NULL, size, action, protection);
925 // VirtualAlloc rounds allocated size to page size automatically.
936 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...]

Completed in 1467 milliseconds