Searched refs:fastRealloc (Results 1 – 17 of 17) sorted by relevance
/external/webkit/Source/JavaScriptCore/wtf/wince/ |
D | MemoryManager.cpp | 118 void *fastRealloc(void* p, size_t n) { return realloc(p, n); } in fastRealloc() function 125 void *fastRealloc(void* p, size_t n) { return MemoryManager::m_realloc(p, n); } in fastRealloc() function 163 return fastRealloc(p, n); in tryFastRealloc()
|
D | FastMallocWinCE.h | 36 void* fastRealloc(void* p, size_t n); 54 #define realloc(p, n) fastRealloc(p, n)
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | FastMalloc.h | 35 void* fastRealloc(void*, size_t); 187 using WTF::fastRealloc;
|
D | FastMalloc.cpp | 357 void* fastRealloc(void* p, size_t n) in fastRealloc() function 498 #define realloc fastRealloc 3935 void* fastRealloc(void* old_ptr, size_t new_size) in CreateCacheIfNecessary()
|
/external/webkit/Source/JavaScriptCore/wtf/text/ |
D | StringBuffer.h | 65 m_data = static_cast<UChar*>(fastRealloc(m_data, newLength * sizeof(UChar))); in resize()
|
/external/webkit/Source/WebCore/platform/text/cf/ |
D | StringImplCF.cpp | 76 header = static_cast<StringImpl**>(fastRealloc(header, newAllocationSize)); in reallocate()
|
/external/webkit/Source/JavaScriptCore/assembler/ |
D | AssemblerBuffer.h | 185 m_buffer = static_cast<char*>(fastRealloc(m_buffer, m_capacity));
|
/external/webkit/Source/WebKit2/Platform/CoreIPC/ |
D | ArgumentEncoder.cpp | 75 m_buffer = static_cast<uint8_t*>(fastRealloc(m_buffer, newCapacity)); in grow()
|
/external/webkit/Source/WebCore/html/ |
D | FTPDirectoryDocument.cpp | 69 m_buffer = static_cast<UChar*>(fastRealloc(m_buffer, newSize * sizeof(UChar))); in checkBuffer()
|
/external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/ |
D | JavaScriptCore.def | 166 ?fastRealloc@WTF@@YAPAXPAXI@Z
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog | 2304 (WTF::fastRealloc): 2315 (WTF::TCMallocStats::fastRealloc): 2355 (WTF::fastRealloc): 2404 (WTF::fastRealloc): 2414 (WTF::TCMallocStats::fastRealloc):
|
D | ChangeLog-2007-10-14 | 1136 …A call to fastRealloc was failing which lead to UString::expandCapacity leaking the buffer it was … 1149 …(KJS::reallocChars): Wrapper around fastRealloc that takes a length in characters. It will return… 4271 (WTF::fastRealloc): 4306 (WTF::fastRealloc):
|
D | ChangeLog-2009-06-16 | 19948 (WTF::fastRealloc): 39938 (WTF::tryFastRealloc): Renamed fastRealloc() to this. 39939 (WTF::fastRealloc): Added. This version abort()s if allocation fails. 39949 (WTF::TCMallocStats::fastRealloc): Defined to abort() on failure.
|
D | ChangeLog-2010-05-24 | 15811 Export fastMalloc, fastCalloc, fastRealloc and fastFree on GCC/Unix 21058 (WTF::fastRealloc):
|
/external/webkit/Source/WebCore/css/ |
D | CSSParser.cpp | 643 m_parsedProperties = static_cast<CSSProperty**>(fastRealloc(m_parsedProperties, in addProperty()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2008-08-10 | 58215 a call to fastRealloc. Changed to use adoptRef since the constructor now starts 61865 vector happens to already have the right size so we don't do a fastRealloc
|
D | ChangeLog-2010-01-29 | 44341 fastRealloc edge case. 44349 avoid calling fastRealloc with the size of 0.
|