OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fastCalloc
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/
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/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);
Completed in 292 milliseconds