Searched defs:fastCalloc (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
H A DFastMalloc.cpp287 void* fastCalloc(size_t n_elements, size_t element_size) function in namespace:WTF
303 // To make sure that fastCalloc never returns 0, retry with fastCalloc(1, 1).
305 return fastCalloc(1, 1);
496 #define calloc fastCalloc
3871 void* fastCalloc(size_t n, size_t elem_size)
/external/webkit/Source/JavaScriptCore/wtf/wince/
H A DMemoryManager.cpp116 void *fastCalloc(size_t n_elements, size_t element_size) { return calloc(n_elements, element_size); } function in namespace:WTF
123 void *fastCalloc(size_t n_elements, size_t element_size) { return MemoryManager::m_calloc(n_elements, element_size); } function in namespace:WTF
157 return fastCalloc(n_elements, element_size);

Completed in 823 milliseconds