OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fastMalloc
(Results
26 - 46
of
46
) sorted by null
1
2
/external/webkit/Source/WebCore/platform/graphics/chromium/
HarfbuzzSkia.cpp
155
SkPoint* points = reinterpret_cast<SkPoint*>(
fastMalloc
(sizeof(SkPoint) * (point + 1)));
ComplexTextControllerLinux.cpp
221
HB_FontRec* font = reinterpret_cast<HB_FontRec*>(
fastMalloc
(sizeof(HB_FontRec)));
/external/webkit/Source/WebKit2/UIProcess/Launcher/mac/
ProcessLauncherMac.mm
160
char* string = static_cast<char*>(
fastMalloc
(nameLength + 1 + valueLength + 1));
/external/webkit/Source/WebCore/xml/
XPathGrammar.y
40
#include <wtf/
FastMalloc
.h>
42
#define YYMALLOC
fastMalloc
XSLTProcessorLibxslt.cpp
221
const char** parameterArray = (const char**)
fastMalloc
(((parameters.size() * 2) + 1) * sizeof(char*));
/external/webkit/Source/JavaScriptCore/runtime/
JSArray.cpp
162
m_storage = static_cast<ArrayStorage*>(
fastMalloc
(storageSize(initialCapacity)));
208
m_storage = static_cast<ArrayStorage*>(
fastMalloc
(storageSize(initialStorage)));
626
void* newBaseStorage =
fastMalloc
(storageSize(newVectorLength + m_indexBias));
[
all
...]
PropertyMapHashTable.h
251
, m_index(static_cast<unsigned*>(
fastMalloc
(dataSize())))
/external/webkit/Source/WebCore/plugins/
PluginView.cpp
441
char* result = reinterpret_cast<char*>(
fastMalloc
(cstr.length() + 1));
878
m_paramNames = reinterpret_cast<char**>(
fastMalloc
(sizeof(char*) * size));
879
m_paramValues = reinterpret_cast<char**>(
fastMalloc
(sizeof(char*) * size));
[
all
...]
/external/webkit/Source/WebCore/html/
FTPDirectoryDocument.cpp
106
, m_buffer(static_cast<UChar*>(
fastMalloc
(sizeof(UChar) * m_size)))
/external/webkit/Source/WebCore/platform/text/gtk/
TextCodecGtk.cpp
461
prefixedBytes = static_cast<char*>(
fastMalloc
(inputLength));
/external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp
[
all
...]
/external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.cpp
78
#include "
FastMalloc
.h"
179
void* result =
fastMalloc
(n);
187
char* dup = static_cast<char*>(
fastMalloc
(len));
238
void*
fastMalloc
(size_t n)
254
// To make sure that
fastMalloc
never returns 0, retry with
fastMalloc
(1).
256
return
fastMalloc
(1);
350
return
fastMalloc
(n);
398
// This symbol is present in the JavaScriptCore exports file even when
FastMalloc
is disabled.
495
#define malloc
fastMalloc
[
all
...]
Vector.h
283
m_buffer = static_cast<T*>(
fastMalloc
(newCapacity * sizeof(T)));
[
all
...]
ListHashSet.h
155
return static_cast<Node*>(
fastMalloc
(sizeof(Node)));
HashTable.h
25
#include "
FastMalloc
.h"
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp
[
all
...]
/external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.cpp
87
StringImpl* string = static_cast<StringImpl*>(
fastMalloc
(size));
/external/webkit/Source/WebCore/platform/graphics/android/
FontAndroid.cpp
708
HB_FontRec* font = reinterpret_cast<HB_FontRec*>(
fastMalloc
(sizeof(HB_FontRec)));
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp
44
#include <wtf/
FastMalloc
.h>
[
all
...]
/external/webkit/Source/WebCore/css/
CSSGrammar.y
40
#include <wtf/
FastMalloc
.h>
47
#define YYMALLOC
fastMalloc
[
all
...]
CSSParser.cpp
144
, m_parsedProperties(static_cast<CSSProperty**>(
fastMalloc
(32 * sizeof(CSSProperty*))))
210
m_data = static_cast<UChar*>(
fastMalloc
(length * sizeof(UChar)));
[
all
...]
Completed in 327 milliseconds
1
2