Searched refs:fastFree (Results 1 - 25 of 58) sorted by relevance

123

/external/webkit/JavaScriptCore/runtime/
H A DMarkStackNone.cpp46 return fastFree(addr);
H A DMarkStackSymbian.cpp43 return fastFree(addr);
H A DUStringImpl.cpp109 fastFree(m_data);
/external/webkit/JavaScriptCore/wtf/wince/
H A DFastMallocWince.h35 void fastFree(void* p);
55 #define free(p) fastFree(p)
71 static inline void __cdecl operator delete(void* p) { fastFree(p); }
73 static inline void __cdecl operator delete[](void* p) { fastFree(p); }
75 static inline void operator delete(void* p, const std::nothrow_t&) throw() { fastFree(p); }
77 static inline void operator delete[](void* p, const std::nothrow_t&) throw() { fastFree(p); }
156 Internal::setFastMallocMatchValidationType(p, Internal::AllocTypeMalloc); // Set it to this so that fastFree thinks it's OK.
H A DMemoryManager.cpp117 void fastFree(void* p) { return free(p); } function in namespace:WTF
124 void fastFree(void* p) { return MemoryManager::m_free(p); } function in namespace:WTF
/external/webkit/JavaScriptCore/wtf/
H A DOwnFastMallocPtr.h38 fastFree(m_ptr);
H A DFastAllocBase.h32 // Provides customizable overrides of fastMalloc/fastFree and operator new/delete
104 fastFree(p);
117 fastFree(p);
301 fastFree(p);
311 fastFree(p);
322 // We expect that fastFree checks for null.
324 fastFree(p);
346 fastFree(a.size);
364 fastFree(p);
376 fastFree(
[all...]
H A DFastMalloc.h75 void fastFree(void*);
166 Internal::setFastMallocMatchValidationType(p, Internal::AllocTypeMalloc); // Set it to this so that fastFree thinks it's OK.
191 using WTF::fastFree;
227 WTF_PRIVATE_INLINE void operator delete(void* p) throw() { fastFree(p); }
228 WTF_PRIVATE_INLINE void operator delete(void* p, const std::nothrow_t&) throw() { fastFree(p); }
231 WTF_PRIVATE_INLINE void operator delete[](void* p) throw() { fastFree(p); }
232 WTF_PRIVATE_INLINE void operator delete[](void* p, const std::nothrow_t&) throw() { fastFree(p); }
/external/webkit/JavaScriptCore/parser/
H A DParserArena.cpp49 fastFree(freeablePool());
53 fastFree(m_freeablePools[i]);
59 fastFree(object);
/external/webkit/WebCore/platform/text/cf/
H A DStringImplCF.cpp86 fastFree(header);
94 fastFree(header);
100 fastFree(header);
/external/webkit/JavaScriptCore/interpreter/
H A DRegisterFile.cpp44 fastFree(m_buffer);
/external/webkit/WebCore/html/canvas/
H A DWebGLArrayBuffer.cpp66 WTF::fastFree(m_data);
/external/webkit/WebCore/platform/text/
H A DStringBuffer.h47 fastFree(m_data);
/external/webkit/JavaScriptCore/assembler/
H A DAssemblerBufferWithConstantPool.h109 fastFree(m_mask);
110 fastFree(m_pool);
H A DAssemblerBuffer.h54 fastFree(m_buffer);
/external/webkit/WebCore/bridge/jni/
H A DJNIBridge.cpp110 fastFree(m_signature);
133 fastFree(result);
/external/webkit/WebCore/css/
H A DCSSSelectorList.cpp75 // freed with fastFree, and the destructors called manually.
88 fastFree(m_selectorArray);
/external/webkit/WebCore/platform/wince/
H A DKeygenWince.cpp90 fastFree(pPubInfo);
/external/webkit/WebCore/websockets/
H A DWebSocketChannel.cpp65 fastFree(m_buffer);
242 fastFree(m_buffer);
256 fastFree(m_buffer);
/external/webkit/WebCore/platform/text/gtk/
H A DTextCodecGtk.cpp391 fastFree(prefixedBytes);
406 fastFree(prefixedBytes);
413 fastFree(prefixedBytes);
/external/webkit/WebCore/xml/
H A DXSLTProcessorLibxslt.cpp219 fastFree((void*)*(temp++));
220 fastFree((void*)*(temp++));
222 fastFree(params);
/external/webkit/WebCore/loader/
H A DTextDocument.cpp168 fastFree(m_buffer);
/external/webkit/WebCore/platform/
H A DArena.h125 fastFree(a); \
/external/webkit/WebCore/platform/graphics/chromium/
H A DSimpleFontDataLinux.cpp75 fastFree(vdmxTable);
/external/webkit/WebCore/platform/graphics/mac/
H A DCanvas3DLayer.mm110 fastFree(const_cast<void *>(data));

Completed in 5381 milliseconds

123