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

  /external/skia/src/gpu/
GrAllocator.h 156 : fAllocator(sizeof(T), itemsPerBlock, NULL) {}
164 void* item = fAllocator.push_back();
171 void* item = fAllocator.push_back();
181 int c = fAllocator.count();
183 ((T*)fAllocator[i])->~T();
185 fAllocator.reset();
192 return fAllocator.count();
198 bool empty() const { return fAllocator.empty(); }
204 return *(T*)fAllocator.back();
211 return *(const T*)fAllocator.back()
    [all...]
  /external/skia/src/pipe/utils/
SamplePipeControllers.cpp 83 : fAllocator(kMinBlockSize)
96 fBlock = fAllocator.allocThrow(blockSize);
SamplePipeControllers.h 74 // Stream of draw commands written by the SkGPipeWriter. Allocated by fAllocator, which will
82 SkChunkAlloc fAllocator;
  /external/skia/legacy/src/images/
SkImageDecoder.cpp 46 : fReporter(NULL), fPeeker(NULL), fChooser(NULL), fAllocator(NULL),
54 SkSafeUnref(fAllocator);
73 SkRefCnt_SafeAssign(fAllocator, alloc);
103 return bitmap->allocPixels(fAllocator, ctable);
  /external/skia/src/images/
SkImageDecoder.cpp 50 : fReporter(NULL), fPeeker(NULL), fChooser(NULL), fAllocator(NULL),
58 SkSafeUnref(fAllocator);
77 SkRefCnt_SafeAssign(fAllocator, alloc);
107 return bitmap->allocPixels(fAllocator, ctable);
  /external/skia/legacy/include/images/
SkImageDecoder.h 146 SkBitmap::Allocator* getAllocator() const { return fAllocator; }
393 SkBitmap::Allocator* fAllocator;
  /external/skia/include/images/
SkImageDecoder.h 155 SkBitmap::Allocator* getAllocator() const { return fAllocator; }
402 SkBitmap::Allocator* fAllocator;
  /external/skia/src/utils/
SkDeferredCanvas.cpp 70 bool hasPendingCommands() const { return fAllocator.blockCount() != 0; }
71 size_t storageAllocatedForRecording() const { return fAllocator.totalCapacity(); }
83 SkChunkAlloc fAllocator;
89 fAllocator(kMinBlockSize) {
95 fAllocator.reset();
109 fBlock = fAllocator.allocThrow(blockSize);
133 fAllocator.reset();

Completed in 1055 milliseconds