HomeSort by relevance Sort by last modified time
    Searched full:fastmalloc (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
FastMalloc.h 1 #include <JavaScriptCore/FastMalloc.h>
  /external/webkit/Source/WebKit/mac/ForwardingHeaders/wtf/
FastMalloc.h 1 #import <JavaScriptCore/FastMalloc.h>
  /external/webkit/Tools/DumpRenderTree/ForwardingHeaders/wtf/
FastMalloc.h 1 #include <JavaScriptCore/FastMalloc.h>
  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/
FastMalloc.h 3 #include <JavaScriptCore/FastMalloc.h>
  /external/webkit/Source/JavaScriptCore/wtf/wince/
FastMallocWinCE.h 33 void* fastMalloc(size_t n);
52 #define malloc(n) fastMalloc(n)
70 static inline void* __cdecl operator new(size_t s) { return fastMalloc(s); }
72 static inline void* __cdecl operator new[](size_t s) { return fastMalloc(s); }
74 static inline void* operator new(size_t s, const std::nothrow_t&) throw() { return fastMalloc(s); }
76 static inline void* operator new[](size_t s, const std::nothrow_t&) throw() { return fastMalloc(s); }
87 AllocTypeMalloc = 0x375d6750, // Encompasses fastMalloc, fastZeroedMalloc, fastCalloc, fastRealloc.
109 // Users of FastMalloc don't need to know or care how this tagging
139 // This is a higher level function which is used by FastMalloc-using code.
148 // This is a higher level function which is used by FastMalloc-using code
    [all...]
MemoryManager.cpp 115 void *fastMalloc(size_t n) { return malloc(n); }
122 void *fastMalloc(size_t n) { return MemoryManager::m_malloc(n); }
136 void* p = fastMalloc(n);
145 return fastMalloc(n);
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.h 32 void* fastMalloc(size_t);
98 AllocTypeMalloc = 0x375d6750, // Encompasses fastMalloc, fastZeroedMalloc, fastCalloc, fastRealloc.
119 // Users of FastMalloc don't need to know or care how this tagging
149 // This is a higher level function which is used by FastMalloc-using code.
158 // This is a higher level function which is used by FastMalloc-using code.
185 using WTF::fastMalloc;
212 // The nothrow functions here are actually not all that helpful, because fastMalloc will
225 WTF_PRIVATE_INLINE void* operator new(size_t size) throw (std::bad_alloc) { return fastMalloc(size); }
226 WTF_PRIVATE_INLINE void* operator new(size_t size, const std::nothrow_t&) throw() { return fastMalloc(size); }
229 WTF_PRIVATE_INLINE void* operator new[](size_t size) throw (std::bad_alloc) { return fastMalloc(size);
    [all...]
FastAllocBase.h 32 // Provides customizable overrides of fastMalloc/fastFree and operator new/delete
92 #include "FastMalloc.h"
102 void* p = ::WTF::fastMalloc(size); \
115 void* p = ::WTF::fastMalloc(size); \
135 void* p = fastMalloc(sizeof(T));
147 void* p = fastMalloc(sizeof(T));
159 void* p = fastMalloc(sizeof(T));
171 void* p = fastMalloc(sizeof(T));
183 void* p = fastMalloc(sizeof(T));
195 void* p = fastMalloc(sizeof(T))
    [all...]
OwnFastMallocPtr.h 25 #include "FastMalloc.h"
wtf.pri 11 wtf/FastMalloc.cpp \
CMakeLists.txt 24 FastMalloc.h
117 FastMalloc.cpp
ValueCheck.h 29 #include <wtf/FastMalloc.h>
  /external/webkit/Source/JavaScriptCore/assembler/
AssemblerBuffer.h 35 #include <wtf/FastMalloc.h>
182 char* newBuffer = static_cast<char*>(fastMalloc(m_capacity));
  /external/webkit/Source/WebKit2/Shared/
WebMemorySampler.h 30 * any allocator which keeps a free list. This includes FastMalloc and the
35 * - FastMalloc allocations bytes (in use or committed)
WebData.h 53 copiedBytes = static_cast<unsigned char*>(fastMalloc(size));
  /external/webkit/Source/WebCore/platform/graphics/gpu/
PODArena.h 31 #include <wtf/FastMalloc.h>
58 // The Arena's default allocator, which uses fastMalloc and
67 virtual void* allocate(size_t size) { return fastMalloc(size); }
  /external/webkit/Source/WebCore/platform/
Arena.cpp 53 #include <wtf/FastMalloc.h>
181 a = (Arena*)fastMalloc(sz);
182 // fastMalloc will abort() if it fails, so we are guaranteed that a is not 0.
  /external/webkit/Source/JavaScriptCore/
Android.v8.wtf.mk 35 wtf/FastMalloc.cpp \
  /external/webkit/Source/JavaScriptCore/runtime/
CachedTranscendentalFunction.h 77 m_cache = static_cast<CacheEntry*>(fastMalloc(s_cacheSize * sizeof(CacheEntry)));
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringBuffer.h 46 m_data = static_cast<UChar*>(fastMalloc(m_length * sizeof(UChar)));
  /external/webkit/Source/WebCore/platform/win/
SSLKeyGeneratorWin.cpp 58 pPubInfo = reinterpret_cast<PCERT_PUBLIC_KEY_INFO>(fastMalloc(dwPubInfoLength));
  /external/webkit/Source/WebKit/mac/
WebKitPrefix.h 93 #include <wtf/FastMalloc.h>
  /external/webkit/Source/WebKit/qt/
WebKit_pch.h 72 #include <wtf/FastMalloc.h>
  /external/webkit/Source/WebKit/win/WebKit.vcproj/
WebKit_Cairo.def 110 ?fastMalloc@WTF@@YAPAXI@Z
WebKit_Cairo_debug.def 110 ?fastMalloc@WTF@@YAPAXI@Z

Completed in 214 milliseconds

1 2 3 4