Searched refs:tryFastMalloc (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
H A DRopeImpl.h44 if (tryFastMalloc(sizeof(RopeImpl) + (fiberCount - 1) * sizeof(Fiber)).getValue(allocation))
/external/webkit/Source/JavaScriptCore/wtf/wince/
H A DFastMallocWinCE.h39 void* tryFastMalloc(size_t n);
H A DMemoryManager.cpp142 TryMallocReturnValue tryFastMalloc(size_t n) function in namespace:WTF
/external/webkit/Source/WebKit2/Shared/
H A DShareableBitmap.cpp65 if (!tryFastMalloc(numBytes).getValue(data))
/external/webkit/Source/JavaScriptCore/wtf/
H A DFastMalloc.h71 TryMallocReturnValue tryFastMalloc(size_t n);
191 using WTF::tryFastMalloc;
H A DFastMalloc.cpp195 if (!tryFastMalloc(n).getValue(result))
217 TryMallocReturnValue tryFastMalloc(size_t n) function in namespace:WTF
243 TryMallocReturnValue returnValue = tryFastMalloc(n);
3815 TryMallocReturnValue tryFastMalloc(size_t size)
H A DVector.h293 if (tryFastMalloc(newCapacity * sizeof(T)).getValue(newBuffer)) {
/external/webkit/Source/WebCore/websockets/
H A DWebSocketChannel.cpp244 if (tryFastMalloc(newBufferSize).getValue(newBuffer)) {
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringImpl.h175 if (!tryFastMalloc(sizeof(UChar) * length + sizeof(StringImpl)).getValue(resultImpl)) {
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp71 // Allocates new storage via tryFastMalloc.
77 if (!tryFastMalloc(len * sizeof(float)).getValue(data))
90 // Allocates new storage via tryFastMalloc.
96 if (!tryFastMalloc(len * sizeof(int)).getValue(data))

Completed in 707 milliseconds