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

  /external/skia/src/pathops/
SkOpTAllocator.h 17 void* ptr = allocator->allocThrow(sizeof(T));
23 void* ptr = allocator->allocThrow(sizeof(T) * count);
SkPathOpsTSect.h 371 SkTSpanBounded<OppCurve, TCurve>* bounded = new (heap->allocThrow(
850 result = new (fHeap.allocThrow(sizeof(SkTSpan<TCurve, OppCurve>)))(
    [all...]
  /external/skia/bench/
MemoryBench.cpp 44 alloc.allocThrow(inc);
  /external/skia/include/core/
SkChunkAlloc.h 37 void* allocThrow(size_t bytes) {
  /external/skia/tests/
BitmapHeapTest.cpp 21 void* allocThrow(size_t bytes) override {
MemsetTest.cpp 20 void* ptr = alloc->allocThrow(size);
69 ptr = alloc.allocThrow(kMin);
  /external/skia/src/core/
SkPictureFlat.h 201 virtual void* allocThrow(size_t bytes) = 0;
204 * Hint that this block, which was allocated with allocThrow, is no longer needed.
297 SkFlatData* result = (SkFlatData*) controller->allocThrow(allocSize);
543 SkFlatData* detached = (SkFlatData*)fController->allocThrow(fScratch.bytesWritten());
SkEdgeBuilder.cpp 16 return static_cast<T*>(alloc.allocThrow(sizeof(T)));
160 char* storage = (char*)fAlloc.allocThrow(maxEdgeSize + maxEdgePtrSize);
SkGlyphCache.cpp 222 (SkGlyph::PathData* ) fGlyphAlloc.allocThrow(sizeof(SkGlyph::PathData));
343 (SkGlyph::Intercept* ) fGlyphAlloc.allocThrow(sizeof(SkGlyph::Intercept));
  /external/skia/src/gpu/
GrTessellator.cpp 88 #define ALLOC_NEW(Type, args, alloc) new (alloc.allocThrow(sizeof(Type))) Type args
    [all...]

Completed in 423 milliseconds