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

1 2

  /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...]
WTFThreadData.h 157 WTFThreadData::staticData = static_cast<WTFThreadData*>(fastMalloc(sizeof(WTFThreadData)));
  /external/webkit/Source/JavaScriptCore/parser/
ParserArena.cpp 105 char* pool = static_cast<char*>(fastMalloc(freeablePoolSize));
ParserArena.h 94 ParserArenaDeletable* deletable = static_cast<ParserArenaDeletable*>(fastMalloc(size));
  /external/webkit/Source/JavaScriptCore/runtime/
CachedTranscendentalFunction.h 77 m_cache = static_cast<CacheEntry*>(fastMalloc(s_cacheSize * sizeof(CacheEntry)));
ArgList.h 165 return fastMalloc(size);
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringBuffer.h 46 m_data = static_cast<UChar*>(fastMalloc(m_length * sizeof(UChar)));
  /external/webkit/Source/WebCore/platform/
ThreadGlobalData.h 102 ThreadGlobalData::staticData = static_cast<ThreadGlobalData*>(fastMalloc(sizeof(ThreadGlobalData)));
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.
SharedBuffer.cpp 52 return static_cast<char*>(fastMalloc(segmentSize));
  /external/webkit/Source/WebKit2/Shared/
WebData.h 53 copiedBytes = static_cast<unsigned char*>(fastMalloc(size));
  /external/webkit/Source/WebCore/platform/win/
SSLKeyGeneratorWin.cpp 58 pPubInfo = reinterpret_cast<PCERT_PUBLIC_KEY_INFO>(fastMalloc(dwPubInfoLength));
  /external/webkit/Source/JavaScriptCore/assembler/
AssemblerBuffer.h 35 #include <wtf/FastMalloc.h>
182 char* newBuffer = static_cast<char*>(fastMalloc(m_capacity));
AssemblerBufferWithConstantPool.h 108 m_pool = static_cast<uint32_t*>(fastMalloc(maxPoolSize));
109 m_mask = static_cast<char*>(fastMalloc(maxPoolSize / sizeof(uint32_t)));
  /external/webkit/Source/WebCore/platform/text/cf/
StringImplCF.cpp 66 StringImpl** header = static_cast<StringImpl**>(fastMalloc(sizeof(StringImpl*) + size));
107 // FIXME: If FastMalloc provided a "good size" callback, we'd want to use it here.
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebGLLayer.mm 36 #import <wtf/FastMalloc.h>
127 void* data = fastMalloc(dataSize);
  /external/webkit/Source/WebCore/css/
CSSSelectorList.cpp 65 m_selectorArray = reinterpret_cast<CSSSelector*>(fastMalloc(sizeof(CSSSelector) * flattenedSize));
96 // The second case we allocated a new fastMalloc buffer, which should be
  /external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataLinux.cpp 78 uint8_t* vdmxTable = (uint8_t*) fastMalloc(vdmxSize);
  /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/WebKit2/Platform/CoreIPC/
ArgumentDecoder.cpp 61 m_buffer = static_cast<uint8_t*>(fastMalloc(bufferSize));
ArgumentEncoder.cpp 73 m_buffer = static_cast<uint8_t*>(fastMalloc(newCapacity));
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
HarfbuzzSkia.cpp 138 SkPoint* points = reinterpret_cast<SkPoint*>(fastMalloc(sizeof(SkPoint) * (point + 1)));

Completed in 2612 milliseconds

1 2