HomeSort by relevance Sort by last modified time
    Searched defs:virtualAlloc (Results 1 - 2 of 2) sorted by null

  /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);
  /dalvik/vm/alloc/
Copying.cpp 259 static void *virtualAlloc(size_t length)
457 heapSource->blockBase = virtualAlloc(heapSource->maximumSize);
    [all...]

Completed in 34 milliseconds