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

  /external/chromium_org/third_party/WebKit/Source/wtf/
FastAllocBase.h 32 // Provides customizable overrides of fastMalloc/fastFree and operator new/delete
51 #include "wtf/FastMalloc.h"
61 return ::WTF::fastMalloc(size); \
71 return ::WTF::fastMalloc(size); \
FastMalloc.h 30 WTF_EXPORT void* fastMalloc(size_t);
61 using WTF::fastMalloc;
BitVector.cpp 32 #include "wtf/FastMalloc.h"
79 OutOfLineBits* result = new (NotNull, fastMalloc(size)) OutOfLineBits(numBits);
PartitionAlloc.h 84 #include "wtf/FastMalloc.h"
267 return WTF::fastMalloc(size);
Vector.h 261 m_buffer = static_cast<T*>(fastMalloc(sizeToAllocate));
    [all...]
FastMalloc.cpp 78 #include "wtf/FastMalloc.h"
133 // By default, fastMalloc is allowed so we don't allocate the
191 void* result = fastMalloc(n);
199 char* dup = static_cast<char*>(fastMalloc(len));
225 void* fastMalloc(size_t n)
273 // This symbol is present in the JavaScriptCore exports file even when FastMalloc is disabled.
354 #define malloc fastMalloc
    [all...]
ListHashSet.h 186 return static_cast<Node*>(fastMalloc(sizeof(Node)));
    [all...]
HashTable.h 27 #include "wtf/FastMalloc.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelectorList.cpp 43 m_selectorArray = reinterpret_cast<CSSSelector*>(fastMalloc(sizeof(CSSSelector) * otherLength));
64 m_selectorArray = reinterpret_cast<CSSSelector*>(fastMalloc(sizeof(CSSSelector) * flattenedSize));
RuleSet.cpp 161 m_array = adoptPtr(static_cast<T*>(fastMalloc(m_capacity * sizeof(T))));
StylePropertySet.cpp 53 void* slot = WTF::fastMalloc(sizeForImmutableStylePropertySetWithPropertyCount(count));
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
CString.cpp 42 CStringBuffer* stringBuffer = static_cast<CStringBuffer*>(fastMalloc(size));
StringImpl.cpp 274 StringImpl* string = static_cast<StringImpl*>(fastMalloc(size));
292 StringImpl* string = static_cast<StringImpl*>(fastMalloc(size));
348 StringImpl* impl = static_cast<StringImpl*>(fastMalloc(size));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
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); }
SharedBuffer.cpp 61 return static_cast<char*>(fastMalloc(segmentSize));
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioArray.h 33 #include "wtf/FastMalloc.h"
83 T* allocation = static_cast<T*>(fastMalloc(initialSize + extraAllocationBytes));
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/cf/
StringImplCF.cpp 64 StringImpl** header = static_cast<StringImpl**>(fastMalloc(sizeof(StringImpl*) + size));
105 // FIXME: If FastMalloc provided a "good size" callback, we'd want to use it here.
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GlyphPage.h 74 void* slot = fastMalloc(sizeof(GlyphPage) + sizeof(SimpleFontData*) * GlyphPage::size);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/harfbuzz/
HarfBuzzFaceSkia.cpp 153 char* buffer = reinterpret_cast<char*>(fastMalloc(tableSize));
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
SimpleFontDataSkia.cpp 75 uint8_t* vdmxTable = (uint8_t*) fastMalloc(vdmxSize);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathGrammar.y 39 #include <wtf/FastMalloc.h>
41 #define YYMALLOC fastMalloc
XSLTProcessorLibxslt.cpp 200 const char** parameterArray = (const char**)fastMalloc(((parameters.size() * 2) + 1) * sizeof(char*));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8WebGLRenderingContextCustom.cpp 78 #include "wtf/FastMalloc.h"
82 // Allocates new storage via fastMalloc.
89 float* data = static_cast<float*>(fastMalloc(len * sizeof(float)));
102 // Allocates new storage via fastMalloc.
109 int* data = static_cast<int*>(fastMalloc(len * sizeof(int)));
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp     [all...]

Completed in 3152 milliseconds