OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TryMallocReturnValue
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.h
39
struct
TryMallocReturnValue
{
40
TryMallocReturnValue
(void* data)
44
TryMallocReturnValue
(const
TryMallocReturnValue
& source)
49
~
TryMallocReturnValue
() { ASSERT(!m_data); }
61
template <typename T> bool
TryMallocReturnValue
::getValue(T& data)
71
TryMallocReturnValue
tryFastMalloc(size_t n);
72
TryMallocReturnValue
tryFastZeroedMalloc(size_t n);
73
TryMallocReturnValue
tryFastCalloc(size_t n_elements, size_t element_size);
74
TryMallocReturnValue
tryFastRealloc(void* p, size_t n)
[
all
...]
FastMalloc.cpp
192
TryMallocReturnValue
tryFastZeroedMalloc(size_t n)
217
TryMallocReturnValue
tryFastMalloc(size_t n)
243
TryMallocReturnValue
returnValue = tryFastMalloc(n);
264
TryMallocReturnValue
tryFastCalloc(size_t n_elements, size_t element_size)
292
TryMallocReturnValue
returnValue = tryFastCalloc(n_elements, element_size);
330
TryMallocReturnValue
tryFastRealloc(void* p, size_t n)
362
TryMallocReturnValue
returnValue = tryFastRealloc(p, n);
[
all
...]
/external/webkit/Source/JavaScriptCore/wtf/wince/
MemoryManager.cpp
142
TryMallocReturnValue
tryFastMalloc(size_t n)
148
TryMallocReturnValue
tryFastZeroedMalloc(size_t n)
154
TryMallocReturnValue
tryFastCalloc(size_t n_elements, size_t element_size)
160
TryMallocReturnValue
tryFastRealloc(void* p, size_t n)
Completed in 423 milliseconds