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

  /external/webkit/Source/JavaScriptCore/wtf/wince/
MemoryManager.cpp 116 void *fastCalloc(size_t n_elements, size_t element_size) { return calloc(n_elements, element_size); }
123 void *fastCalloc(size_t n_elements, size_t element_size) { return MemoryManager::m_calloc(n_elements, element_size); }
157 return fastCalloc(n_elements, element_size);
FastMallocWinCE.h 34 void* fastCalloc(size_t n_elements, size_t element_size);
53 #define calloc(n_elements, element_size) fastCalloc(n_elements, element_size)
87 AllocTypeMalloc = 0x375d6750, // Encompasses fastMalloc, fastZeroedMalloc, fastCalloc, fastRealloc.
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.h 34 void* fastCalloc(size_t numElements, size_t elementSize);
98 AllocTypeMalloc = 0x375d6750, // Encompasses fastMalloc, fastZeroedMalloc, fastCalloc, fastRealloc.
183 using WTF::fastCalloc;
FastMalloc.cpp 287 void* fastCalloc(size_t n_elements, size_t element_size)
303 // To make sure that fastCalloc never returns 0, retry with fastCalloc(1, 1).
305 return fastCalloc(1, 1);
496 #define calloc fastCalloc
    [all...]
  /external/webkit/Source/WebCore/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 134 src = (decoder_source_mgr*)fastCalloc(sizeof(decoder_source_mgr), 1);

Completed in 594 milliseconds