Home
last modified time | relevance | path

Searched refs:fastRealloc (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/wince/
DMemoryManager.cpp118 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()
DFastMallocWinCE.h36 void* fastRealloc(void* p, size_t n);
54 #define realloc(p, n) fastRealloc(p, n)
/external/webkit/Source/JavaScriptCore/wtf/
DFastMalloc.h35 void* fastRealloc(void*, size_t);
187 using WTF::fastRealloc;
DFastMalloc.cpp357 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/
DStringBuffer.h65 m_data = static_cast<UChar*>(fastRealloc(m_data, newLength * sizeof(UChar))); in resize()
/external/webkit/Source/WebCore/platform/text/cf/
DStringImplCF.cpp76 header = static_cast<StringImpl**>(fastRealloc(header, newAllocationSize)); in reallocate()
/external/webkit/Source/JavaScriptCore/assembler/
DAssemblerBuffer.h185 m_buffer = static_cast<char*>(fastRealloc(m_buffer, m_capacity));
/external/webkit/Source/WebKit2/Platform/CoreIPC/
DArgumentEncoder.cpp75 m_buffer = static_cast<uint8_t*>(fastRealloc(m_buffer, newCapacity)); in grow()
/external/webkit/Source/WebCore/html/
DFTPDirectoryDocument.cpp69 m_buffer = static_cast<UChar*>(fastRealloc(m_buffer, newSize * sizeof(UChar))); in checkBuffer()
/external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
DJavaScriptCore.def166 ?fastRealloc@WTF@@YAPAXPAXI@Z
/external/webkit/Source/JavaScriptCore/
DChangeLog2304 (WTF::fastRealloc):
2315 (WTF::TCMallocStats::fastRealloc):
2355 (WTF::fastRealloc):
2404 (WTF::fastRealloc):
2414 (WTF::TCMallocStats::fastRealloc):
DChangeLog-2007-10-141136 …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):
DChangeLog-2009-06-1619948 (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.
DChangeLog-2010-05-2415811 Export fastMalloc, fastCalloc, fastRealloc and fastFree on GCC/Unix
21058 (WTF::fastRealloc):
/external/webkit/Source/WebCore/css/
DCSSParser.cpp643 m_parsedProperties = static_cast<CSSProperty**>(fastRealloc(m_parsedProperties, in addProperty()
/external/webkit/Source/WebCore/
DChangeLog-2008-08-1058215 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
DChangeLog-2010-01-2944341 fastRealloc edge case.
44349 avoid calling fastRealloc with the size of 0.