Home
last modified time | relevance | path

Searched refs:fastMalloc (Results 1 – 25 of 59) sorted by relevance

123

/external/webkit/JavaScriptCore/wtf/
DFastAllocBase.h96 void* p = fastMalloc(size); in new()
109 void* p = fastMalloc(size);
126 void* p = fastMalloc(sizeof(T)); in fastNew()
138 void* p = fastMalloc(sizeof(T)); in fastNew()
150 void* p = fastMalloc(sizeof(T)); in fastNew()
162 void* p = fastMalloc(sizeof(T)); in fastNew()
174 void* p = fastMalloc(sizeof(T)); in fastNew()
186 void* p = fastMalloc(sizeof(T)); in fastNew()
218 T* p = static_cast<T*>(fastMalloc(sizeof(T) * count)); in fastNewArray()
230 T* p = static_cast<T*>(fastMalloc(sizeof(T) * count));
[all …]
DFastMalloc.h32 void* fastMalloc(size_t);
183 using WTF::fastMalloc;
225 WTF_PRIVATE_INLINE void* operator new(size_t size) throw (std::bad_alloc) { return fastMalloc(size)… in new()
226 …_INLINE void* operator new(size_t size, const std::nothrow_t&) throw() { return fastMalloc(size); } in new()
229 WTF_PRIVATE_INLINE void* operator new[](size_t size) throw (std::bad_alloc) { return fastMalloc(siz… in throw()
230 …NLINE void* operator new[](size_t size, const std::nothrow_t&) throw() { return fastMalloc(size); } in throw()
/external/webkit/JavaScriptCore/wtf/wince/
DFastMallocWince.h33 void* fastMalloc(size_t n);
52 #define malloc(n) fastMalloc(n)
70 static inline void* __cdecl operator new(size_t s) { return fastMalloc(s); } in new()
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); } in new()
76 static inline void* operator new[](size_t s, const std::nothrow_t&) throw() { return fastMalloc(s);… in throw()
DMemoryManager.cpp115 void *fastMalloc(size_t n) { return malloc(n); } in fastMalloc() function
122 void *fastMalloc(size_t n) { return MemoryManager::m_malloc(n); } in fastMalloc() function
136 void* p = fastMalloc(n); in fastZeroedMalloc()
145 return fastMalloc(n); in tryFastMalloc()
/external/webkit/WebCore/loader/
DTextDocument.cpp81 m_buffer = static_cast<UChar*>(fastMalloc(sizeof(UChar) * m_size)); in TextTokenizer()
93 m_buffer = static_cast<UChar*>(fastMalloc(sizeof(UChar) * m_size)); in TextTokenizer()
/external/webkit/JavaScriptCore/assembler/
DAssemblerBufferWithConstantPool.h103 m_pool = static_cast<uint32_t*>(fastMalloc(maxPoolSize)); in AssemblerBufferWithConstantPool()
104 m_mask = static_cast<char*>(fastMalloc(maxPoolSize / sizeof(uint32_t))); in AssemblerBufferWithConstantPool()
DAssemblerBuffer.h157 char* newBuffer = static_cast<char*>(fastMalloc(m_capacity));
/external/webkit/JavaScriptCore/runtime/
DMarkStackNone.cpp41 return fastMalloc(size); in allocateStack()
DMarkStackSymbian.cpp38 return fastMalloc(size); in allocateStack()
DArgList.h164 return fastMalloc(size); in new()
/external/webkit/WebCore/platform/text/
DStringBuffer.h42 , m_data(static_cast<UChar*>(fastMalloc(length * sizeof(UChar)))) in StringBuffer()
DStringImpl.cpp53 return static_cast<UChar*>(fastMalloc(sizeof(UChar) * n)); in newUCharVector()
69 return fastMalloc(size); in operator new()
74 return fastMalloc(size); in operator new()
961 StringImpl* string = static_cast<StringImpl*>(fastMalloc(size)); in createUninitialized()
/external/webkit/WebCore/platform/
DThreadGlobalData.h104 …ThreadGlobalData::staticData = static_cast<ThreadGlobalData*>(fastMalloc(sizeof(ThreadGlobalData))… in threadGlobalData()
/external/webkit/JavaScriptCore/parser/
DParserArena.cpp104 char* pool = static_cast<char*>(fastMalloc(freeablePoolSize)); in allocateFreeablePool()
DParserArena.h92 ParserArenaDeletable* deletable = static_cast<ParserArenaDeletable*>(fastMalloc(size)); in allocateDeletable()
/external/webkit/WebCore/platform/wince/
DKeygenWince.cpp57 pPubInfo = reinterpret_cast<PCERT_PUBLIC_KEY_INFO>(fastMalloc(dwPubInfoLength)); in signedPublicKeyAndChallengeString()
/external/webkit/WebCore/css/
DCSSSelectorList.cpp55 …m_selectorArray = reinterpret_cast<CSSSelector*>(fastMalloc(sizeof(CSSSelector) * selectorVector.s… in adoptSelectorVector()
/external/webkit/WebCore/platform/text/cf/
DStringImplCF.cpp66 StringImpl** header = static_cast<StringImpl**>(fastMalloc(sizeof(StringImpl*) + size)); in allocate()
/external/webkit/WebKit/win/WebKit.vcproj/
DWebKit_debug.def109 ?fastMalloc@WTF@@YAPAXI@Z
DWebKit.def109 ?fastMalloc@WTF@@YAPAXI@Z
DWebKit_Cairo.def110 ?fastMalloc@WTF@@YAPAXI@Z
DWebKit_Cairo_debug.def110 ?fastMalloc@WTF@@YAPAXI@Z
/external/webkit/WebCore/platform/graphics/chromium/
DSimpleFontDataLinux.cpp70 uint8_t* vdmxTable = (uint8_t*) fastMalloc(vdmxSize); in platformInit()
/external/webkit/JavaScriptCore/interpreter/
DRegisterFile.h216 m_buffer = static_cast<Register*>(fastMalloc(bufferLength)); in RegisterFile()
/external/webkit/WebCore/platform/graphics/mac/
DGraphicsContext3DMac.cpp1013 GLchar* info = (GLchar*) fastMalloc(length); in getProgramInfoLog()
1046 GLchar* info = (GLchar*) fastMalloc(length); in getShaderInfoLog()
1065 GLchar* info = (GLchar*) fastMalloc(length); in getShaderSource()
1142 buffer = (GLubyte*) fastMalloc(width * height * 4); in imageToTexture()

123