Searched refs:TryMallocReturnValue (Results 1 – 4 of 4) sorted by relevance
/external/webkit/JavaScriptCore/wtf/ |
D | FastMalloc.h | 38 struct TryMallocReturnValue { struct 39 TryMallocReturnValue(void* data) in TryMallocReturnValue() function 43 TryMallocReturnValue(const TryMallocReturnValue& source) in TryMallocReturnValue() function 48 ~TryMallocReturnValue() { ASSERT(!m_data); } in ~TryMallocReturnValue() argument 60 template <typename T> bool TryMallocReturnValue::getValue(T& data) in getValue() argument 70 TryMallocReturnValue tryFastMalloc(size_t n); 71 TryMallocReturnValue tryFastZeroedMalloc(size_t n); 72 TryMallocReturnValue tryFastCalloc(size_t n_elements, size_t element_size); 73 TryMallocReturnValue tryFastRealloc(void* p, size_t n);
|
D | FastMalloc.cpp | 194 TryMallocReturnValue tryFastZeroedMalloc(size_t n) in tryFastZeroedMalloc() 209 TryMallocReturnValue tryFastMalloc(size_t n) in tryFastMalloc() 235 TryMallocReturnValue returnValue = tryFastMalloc(n); in fastMalloc() 255 TryMallocReturnValue tryFastCalloc(size_t n_elements, size_t element_size) in tryFastCalloc() 283 TryMallocReturnValue returnValue = tryFastCalloc(n_elements, element_size); in fastCalloc() 320 TryMallocReturnValue tryFastRealloc(void* p, size_t n) in tryFastRealloc() 352 TryMallocReturnValue returnValue = tryFastRealloc(p, n); in fastRealloc() 3681 TryMallocReturnValue tryFastMalloc(size_t size) in CreateCacheIfNecessary() 3742 TryMallocReturnValue tryFastCalloc(size_t n, size_t elem_size) in CreateCacheIfNecessary() 3806 TryMallocReturnValue tryFastRealloc(void* old_ptr, size_t new_size) in CreateCacheIfNecessary()
|
/external/webkit/JavaScriptCore/wtf/wince/ |
D | MemoryManager.cpp | 142 TryMallocReturnValue tryFastMalloc(size_t n) in tryFastMalloc() 148 TryMallocReturnValue tryFastZeroedMalloc(size_t n) in tryFastZeroedMalloc() 154 TryMallocReturnValue tryFastCalloc(size_t n_elements, size_t element_size) in tryFastCalloc() 160 TryMallocReturnValue tryFastRealloc(void* p, size_t n) in tryFastRealloc()
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog | 13526 (WTF::TryMallocReturnValue::getValue): 13571 (WTF::TryMallocReturnValue::TryMallocReturnValue): 13572 (WTF::TryMallocReturnValue::~TryMallocReturnValue): 13573 (WTF::TryMallocReturnValue::operator PossiblyNull<T>): 13574 (WTF::TryMallocReturnValue::getValue): 17670 (WTF::TryMallocReturnValue::TryMallocReturnValue): 17671 (WTF::TryMallocReturnValue::~TryMallocReturnValue): 17672 (WTF::TryMallocReturnValue::operator Maybe<T>): 17673 (WTF::TryMallocReturnValue::getValue):
|