HomeSort by relevance Sort by last modified time
    Searched refs:fastFree (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/webkit/Source/JavaScriptCore/wtf/wince/
FastMallocWinCE.h 35 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.
MemoryManager.cpp 117 void fastFree(void* p) { return free(p); }
124 void fastFree(void* p) { return MemoryManager::m_free(p); }
  /external/webkit/Source/JavaScriptCore/wtf/
OwnFastMallocPtr.h 38 fastFree(const_cast<void*>(static_cast<const void*>(const_cast<const T*>(m_ptr))));
FastMalloc.h 76 void fastFree(void*);
166 Internal::setFastMallocMatchValidationType(p, Internal::AllocTypeMalloc); // Set it to this so that fastFree thinks it's OK.
184 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); }
FastAllocBase.h 32 // Provides customizable overrides of fastMalloc/fastFree and operator new/delete
110 ::WTF::fastFree(p); \
123 ::WTF::fastFree(p); \
310 fastFree(p);
320 fastFree(p);
331 // We expect that fastFree checks for null.
333 fastFree(p);
355 fastFree(a.size);
373 fastFree(p);
385 fastFree(p)
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
ParserArena.cpp 50 fastFree(freeablePool());
54 fastFree(m_freeablePools[i]);
60 fastFree(object);
  /external/webkit/Source/WebCore/platform/text/cf/
StringImplCF.cpp 86 fastFree(header);
94 fastFree(header);
100 fastFree(header);
  /external/webkit/Source/JavaScriptCore/runtime/
CachedTranscendentalFunction.h 56 fastFree(m_cache);
ArgList.h 169 fastFree(p);
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringBuffer.h 51 fastFree(m_data);
  /external/webkit/Source/WebCore/html/canvas/
ArrayBuffer.cpp 79 WTF::fastFree(m_data);
  /external/webkit/Source/WebKit2/Shared/
WebData.h 85 fastFree(static_cast<void*>(bytes));
ShareableBitmap.cpp 131 fastFree(m_data);
  /external/webkit/Source/WebCore/bridge/jni/
JavaMethodJobject.cpp 92 fastFree(m_signature);
114 fastFree(result);
  /external/webkit/Source/WebCore/platform/win/
SSLKeyGeneratorWin.cpp 88 fastFree(pPubInfo);
  /external/webkit/Source/WebCore/websockets/
WebSocketChannel.cpp 83 fastFree(m_buffer);
248 fastFree(m_buffer);
262 fastFree(m_buffer);
  /external/webkit/Source/JavaScriptCore/assembler/
AssemblerBuffer.h 54 fastFree(m_buffer);
AssemblerBufferWithConstantPool.h 114 fastFree(m_mask);
115 fastFree(m_pool);
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaClassJSC.cpp 101 fastFree(const_cast<char*>(m_name));
  /external/webkit/Source/WebCore/bridge/jni/v8/
JavaInstanceJobjectV8.cpp 103 fastFree(result);
  /external/webkit/Source/WebCore/platform/
Arena.h 134 fastFree(a); \
Arena.cpp 233 fastFree(a); a = 0;
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebGLLayer.mm 109 fastFree(const_cast<void *>(data));
  /external/webkit/Source/WebCore/xml/
XSLTProcessorLibxslt.cpp 241 fastFree((void*)*(temp++));
242 fastFree((void*)*(temp++));
244 fastFree(params);
  /external/webkit/Source/WebCore/css/
CSSSelectorList.cpp 97 // freed with fastFree, and the destructors called manually.
110 fastFree(m_selectorArray);

Completed in 1669 milliseconds

1 2 3