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

  /external/webkit/Source/JavaScriptCore/runtime/
RopeImpl.h 44 if (tryFastMalloc(sizeof(RopeImpl) + (fiberCount - 1) * sizeof(Fiber)).getValue(allocation))
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.h 71 TryMallocReturnValue tryFastMalloc(size_t n);
191 using WTF::tryFastMalloc;
FastMalloc.cpp 195 if (!tryFastMalloc(n).getValue(result))
217 TryMallocReturnValue tryFastMalloc(size_t n)
243 TryMallocReturnValue returnValue = tryFastMalloc(n);
    [all...]
Vector.h 293 if (tryFastMalloc(newCapacity * sizeof(T)).getValue(newBuffer)) {
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/wince/
FastMallocWinCE.h 39 void* tryFastMalloc(size_t n);
MemoryManager.cpp 142 TryMallocReturnValue tryFastMalloc(size_t n)
  /external/webkit/Source/WebKit2/Shared/
ShareableBitmap.cpp 65 if (!tryFastMalloc(numBytes).getValue(data))
  /external/webkit/Source/WebCore/websockets/
WebSocketChannel.cpp 244 if (tryFastMalloc(newBufferSize).getValue(newBuffer)) {
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.h 175 if (!tryFastMalloc(sizeof(UChar) * length + sizeof(StringImpl)).getValue(resultImpl)) {
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WebGLRenderingContextCustom.cpp 71 // 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 1251 milliseconds