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

  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.cpp 78 #include "FastMalloc.h"
179 void* result = fastMalloc(n);
187 char* dup = static_cast<char*>(fastMalloc(len));
238 void* fastMalloc(size_t n)
254 // To make sure that fastMalloc never returns 0, retry with fastMalloc(1).
256 return fastMalloc(1);
350 return fastMalloc(n);
398 // This symbol is present in the JavaScriptCore exports file even when FastMalloc is disabled.
495 #define malloc fastMalloc
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/wince/
MemoryManager.cpp 115 void *fastMalloc(size_t n) { return malloc(n); }
122 void *fastMalloc(size_t n) { return MemoryManager::m_malloc(n); }
136 void* p = fastMalloc(n);
145 return fastMalloc(n);

Completed in 72 milliseconds