Home
last modified time | relevance | path

Searched refs:fastCalloc (Results 1 – 14 of 14) sorted by relevance

/external/webkit/JavaScriptCore/wtf/wince/
DMemoryManager.cpp116 void *fastCalloc(size_t n_elements, size_t element_size) { return calloc(n_elements, element_size);… in fastCalloc() function
123 void *fastCalloc(size_t n_elements, size_t element_size) { return MemoryManager::m_calloc(n_element… in fastCalloc() function
157 return fastCalloc(n_elements, element_size); in tryFastCalloc()
DFastMallocWince.h35 void* fastCalloc(size_t n_elements, size_t element_size);
54 #define calloc(n_elements, element_size) fastCalloc(n_elements, element_size)
/external/webkit/JavaScriptCore/wtf/
DFastMalloc.h33 void* fastCalloc(size_t numElements, size_t elementSize);
152 using WTF::fastCalloc;
DFastMalloc.cpp262 void* fastCalloc(size_t n_elements, size_t element_size) in fastCalloc() function
419 #define calloc fastCalloc
3635 void* fastCalloc(size_t n, size_t elem_size) in CreateCacheIfNecessary()
/external/webkit/WebKit/win/WebKit.vcproj/
DWebKit.def112 ?fastCalloc@WTF@@YAPAXII@Z
DWebKit_debug.def112 ?fastCalloc@WTF@@YAPAXII@Z
DWebKit_Cairo.def113 ?fastCalloc@WTF@@YAPAXII@Z
DWebKit_Cairo_debug.def113 ?fastCalloc@WTF@@YAPAXII@Z
/external/webkit/WebCore/platform/image-decoders/jpeg/
DJPEGImageDecoder.cpp115 src = (decoder_source_mgr*)fastCalloc(sizeof(decoder_source_mgr), 1); in JPEGImageReader()
/external/webkit/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
DJavaScriptCore_debug.def115 ?fastCalloc@WTF@@YAPAXII@Z
DJavaScriptCore.def117 ?fastCalloc@WTF@@YAPAXII@Z
/external/webkit/JavaScriptCore/
DChangeLog-2009-06-1619947 (WTF::fastCalloc):
39936 (WTF::tryFastCalloc): Renamed fastCalloc() to this.
39937 (WTF::fastCalloc): Added. This version abort()s if allocation fails.
39946 (WTF::TCMallocStats::fastCalloc): Defined to abort() on failure.
DChangeLog-2007-10-144269 (WTF::fastCalloc):
4304 (WTF::fastCalloc):
DChangeLog-2008-08-1026498 number of fastCalloc calls where one argument was 1.