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

  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocatorWin.cpp 66 bool result = VirtualFree(address, bytes, MEM_DECOMMIT);
75 bool result = VirtualFree(address, 0, MEM_RELEASE);
TCSystemAlloc.cpp 251 VirtualFree(reinterpret_cast<void*>(ptr), adjust, MEM_DECOMMIT);
254 VirtualFree(reinterpret_cast<void*>(ptr + adjust + size), extra-adjust, MEM_DECOMMIT);
455 if (VirtualFree(start, length, MEM_DECOMMIT))
471 BOOL success = VirtualFree(ptr, decommitSize, MEM_DECOMMIT);
  /external/webkit/Source/JavaScriptCore/wtf/wince/
MemoryManager.cpp 30 #undef VirtualFree
94 VirtualFree(p, 65536, MEM_RELEASE);
107 BOOL MemoryManager::virtualFree(LPVOID lpAddress, DWORD dwSize, DWORD dwFreeType)
109 return ::VirtualFree(lpAddress, dwSize, dwFreeType);
  /external/qemu/
oslib-win32.c 73 VirtualFree(ptr, 0, MEM_RELEASE);
  /external/chromium/base/test/
test_file_util_win.cc 88 BOOL freed = VirtualFree(buffer, 0, MEM_RELEASE);
101 BOOL freed = VirtualFree(buffer, 0, MEM_RELEASE);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 56 if (VirtualFree(addr, size, MEM_DECOMMIT) == 0) {
  /sdk/find_lock/
find_lock.cpp 470 // It's up to the caller to do a VirtualFree on the returned buffer.
491 VirtualFree(infoPtr, 0, MEM_RELEASE);
512 VirtualFree(infoPtr, 0, MEM_RELEASE);
521 // It's up to the caller to do a VirtualFree on the returned buffer.
542 VirtualFree(infoPtr, 0, MEM_RELEASE);
562 VirtualFree(infoPtr, 0, MEM_RELEASE);
769 VirtualFree(handlesPtr, 0, MEM_RELEASE);
  /external/v8/src/
platform-cygwin.cc 343 if (0 == VirtualFree(address(), 0, MEM_RELEASE)) address_ = NULL;
361 return VirtualFree(address, size, MEM_DECOMMIT) != false;
platform-win32.cc 949 // TODO(1240712): VirtualFree has a return value which is ignored here.
950 VirtualFree(address, 0, MEM_RELEASE);
    [all...]
  /external/svox/pico/lib/
picopal.c 423 VirtualFree(*p, 0, MEM_RELEASE);
  /external/chromium/base/
file_util_win.cc     [all...]
  /bionic/libc/upstream-dlmalloc/
malloc.c 235 avoid this by using VirtualAlloc() and VirtualFree() for all pixel
    [all...]
  /external/libffi/src/
dlmalloc.c     [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_malloc.c     [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 2866 milliseconds