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

  /external/skia/src/gpu/
GrAllocator.h 140 : fAllocator(allocator)
151 if (fIndexInBlock == fAllocator->fItemsPerBlock) {
155 return fItemIndex < fAllocator->fCount;
163 SkASSERT(fItemIndex >= 0 && fItemIndex < fAllocator->fCount);
164 return (char*) fAllocator->fBlocks[fBlockIndex] + fIndexInBlock * fAllocator->fItemSize;
168 const GrAllocator* fAllocator;
240 : fAllocator(sizeof(T), itemsPerBlock, NULL) {}
248 void* item = fAllocator.push_back();
255 void* item = fAllocator.push_back()
    [all...]
  /external/skia/src/pathops/
SkOpEdgeBuilder.h 17 : fAllocator(allocator) // FIXME: replace with const, tune this
27 : fAllocator(allocator)
61 SkChunkAlloc* fAllocator;
SkOpEdgeBuilder.cpp 193 fCurrentContour->addLine(pointsPtr, fAllocator);
196 fCurrentContour->addQuad(pointsPtr, fAllocator);
199 fCurrentContour->addConic(pointsPtr, *weightPtr++, fAllocator);
224 fCurrentContour->addCurve(v1, curve1, fAllocator)->setCubicType(cubicType);
225 fCurrentContour->addCurve(v2, curve2, fAllocator)->setCubicType(cubicType);
227 fCurrentContour->addCubic(pointsPtr, fAllocator);
230 fCurrentContour->addCubic(pointsPtr, fAllocator);
  /external/skia/tests/
NameAllocatorTest.cpp 22 fAllocator(kFirstName, kFirstName + kRange),
56 GrGLuint name = fAllocator.allocateName();
78 GrGLuint name = fAllocator.allocateName();
114 fAllocator.free(name);
123 GrGLNameAllocator fAllocator;
  /external/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeDoc.cpp 74 : fAllocator(new SkPdfAllocator())
87 : fAllocator(new SkPdfAllocator())
194 SkPdfNativeObject* obj = fAllocator->allocObject();
195 current = nextObject(current, end, obj, fAllocator, this);
238 delete fAllocator;
336 current = nextObject(current, trailerEnd, &token, fAllocator, NULL);
382 SkPdfNativeTokenizer tokenizer(current, (int) (end - current), fAllocator, this);
387 SkPdfNativeObject* dict = fAllocator->allocObject();
428 current = nextObject(current, end, dict, fAllocator, this);
508 SkPdfNativeObject* obj = fAllocator->allocObject()
    [all...]
SkPdfNativeDoc.h 149 SkPdfAllocator* fAllocator;
SkPdfNativeTokenizer.cpp 895 , fAllocator(allocator)
917 , fAllocator(allocator)
949 fUncompressedStream = nextObject(fUncompressedStream, fUncompressedStreamEnd, &obj, fAllocator, fDoc);
958 SkPdfNativeObject* pobj = fAllocator->allocObject();
    [all...]
SkPdfNativeTokenizer.h 185 SkPdfAllocator* fAllocator;
  /external/skia/src/images/
SkImageDecoder.cpp 19 , fAllocator(NULL)
31 SkSafeUnref(fAllocator);
39 other->setAllocator(fAllocator);
92 SkRefCnt_SafeAssign(fAllocator, alloc);
105 return bitmap->tryAllocPixels(fAllocator, ctable);
  /external/skia/src/core/
SkResourceCache.h 226 SkBitmap::Allocator* allocator() const { return fAllocator; };
244 SkBitmap::Allocator* fAllocator;
SkResourceCache.cpp 66 fAllocator = NULL;
187 fAllocator = SkNEW_ARGS(SkResourceCacheDiscardableAllocator, (factory));
196 SkSafeUnref(fAllocator);
SkDraw.cpp 49 fBlitter = SkBlitter::Choose(device, matrix, paint, &fAllocator,
59 fBlitter = SkBlitter::Choose(device, matrix, paint, &fAllocator,
64 // Owned by fAllocator, which will handle the delete.
66 SkTBlitterAllocator fAllocator;
82 localMatrix, &fAllocator));
88 // since fAllocator will destroy shader, we insist that owners == 2
102 SkTBlitterAllocator fAllocator;
    [all...]
  /external/skia/src/pipe/utils/
SamplePipeControllers.cpp 86 : fAllocator(kMinBlockSize)
99 fBlock = fAllocator.allocThrow(blockSize);
SamplePipeControllers.h 76 // Stream of draw commands written by the SkGPipeWriter. Allocated by fAllocator, which will
84 SkChunkAlloc fAllocator;
  /external/skia/include/core/
SkImageDecoder.h 163 SkBitmap::Allocator* getAllocator() const { return fAllocator; }
405 SkBitmap::Allocator* fAllocator;
  /external/skia/src/utils/
SkDeferredCanvas.cpp 90 bool hasPendingCommands() const { return fAllocator.totalUsed() != 0; }
91 size_t storageAllocatedForRecording() const { return fAllocator.totalCapacity(); }
103 SkChunkAlloc fAllocator;
109 fAllocator(kMinBlockSize) {
115 fAllocator.reset();
129 fBlock = fAllocator.allocThrow(blockSize);
153 fAllocator.reset();
    [all...]

Completed in 190 milliseconds