Searched refs:fastMalloc (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFastAllocBase.h32 // Provides customizable overrides of fastMalloc/fastFree and operator new/delete
61 return ::WTF::fastMalloc(size); \
71 return ::WTF::fastMalloc(size); \
H A DFastMalloc.h30 WTF_EXPORT void* fastMalloc(size_t);
60 using WTF::fastMalloc;
H A DPartitionAlloc.h529 return WTF::fastMalloc(size);
H A DFastMalloc.cpp132 // By default, fastMalloc is allowed so we don't allocate the
190 void* result = fastMalloc(n);
198 char* dup = static_cast<char*>(fastMalloc(len));
215 void* fastMalloc(size_t n) function in namespace:WTF
330 #define malloc fastMalloc
3418 void* fastMalloc(size_t size)
H A DListHashSet.h185 return static_cast<Node*>(fastMalloc(sizeof(Node)));
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSSelectorList.cpp43 m_selectorArray = reinterpret_cast<CSSSelector*>(fastMalloc(sizeof(CSSSelector) * otherLength));
64 m_selectorArray = reinterpret_cast<CSSSelector*>(fastMalloc(sizeof(CSSSelector) * flattenedSize));
H A DRuleSet.cpp147 m_array = adoptPtr(static_cast<T*>(fastMalloc(m_capacity * sizeof(T))));
H A DStylePropertySet.cpp53 void* slot = WTF::fastMalloc(sizeForImmutableStylePropertySetWithPropertyCount(count));
H A DCSSGrammar.y49 #define YYMALLOC fastMalloc
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElementData.cpp177 void* slot = WTF::fastMalloc(sizeForShareableElementDataWithAttributeCount(attributes.size()));
212 void* slot = WTF::fastMalloc(sizeForShareableElementDataWithAttributeCount(m_attributeVector.size()));
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioArray.h83 T* allocation = static_cast<T*>(fastMalloc(initialSize + extraAllocationBytes));
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImplCF.cpp64 StringImpl** header = static_cast<StringImpl**>(fastMalloc(sizeof(StringImpl*) + size));
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODArena.h58 // The Arena's default allocator, which uses fastMalloc and
67 virtual void* allocate(size_t size) { return fastMalloc(size); }
H A DSharedBuffer.cpp61 return static_cast<char*>(fastMalloc(segmentSize));
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DGlyphPage.h75 void* slot = fastMalloc(sizeof(GlyphPage) + sizeof(SimpleFontData*) * GlyphPage::size);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
H A DHarfBuzzFaceSkia.cpp153 char* buffer = reinterpret_cast<char*>(fastMalloc(tableSize));
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
H A DSimpleFontDataSkia.cpp77 uint8_t* vdmxTable = (uint8_t*) fastMalloc(vdmxSize);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLTProcessorLibxslt.cpp196 const char** parameterArray = (const char**)fastMalloc(((parameters.size() * 2) + 1) * sizeof(char*));
H A DXPathGrammar.y41 #define YYMALLOC fastMalloc
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp83 // Allocates new storage via fastMalloc.
90 float* data = static_cast<float*>(fastMalloc(len * sizeof(float)));
103 // Allocates new storage via fastMalloc.
110 int* data = static_cast<int*>(fastMalloc(len * sizeof(int)));

Completed in 334 milliseconds