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

  /external/chromium_org/third_party/skia/src/pipe/utils/
SamplePipeControllers.h 76 // Stream of draw commands written by the SkGPipeWriter. Allocated by fAllocator, which will
84 SkChunkAlloc fAllocator;
  /external/skia/src/pipe/utils/
SamplePipeControllers.h 76 // Stream of draw commands written by the SkGPipeWriter. Allocated by fAllocator, which will
84 SkChunkAlloc fAllocator;
  /external/chromium_org/third_party/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/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/chromium_org/third_party/skia/include/core/
SkImageDecoder.h 216 SkBitmap::Allocator* getAllocator() const { return fAllocator; }
503 SkBitmap::Allocator* fAllocator;
  /external/skia/include/core/
SkImageDecoder.h 233 SkBitmap::Allocator* getAllocator() const { return fAllocator; }
520 SkBitmap::Allocator* fAllocator;
  /external/chromium_org/third_party/skia/src/utils/
SkDeferredCanvas.cpp 71 bool hasPendingCommands() const { return fAllocator.blockCount() != 0; }
72 size_t storageAllocatedForRecording() const { return fAllocator.totalCapacity(); }
84 SkChunkAlloc fAllocator;
90 fAllocator(kMinBlockSize) {
96 fAllocator.reset();
110 fBlock = fAllocator.allocThrow(blockSize);
134 fAllocator.reset();
    [all...]
  /external/skia/src/utils/
SkDeferredCanvas.cpp 71 bool hasPendingCommands() const { return fAllocator.blockCount() != 0; }
72 size_t storageAllocatedForRecording() const { return fAllocator.totalCapacity(); }
84 SkChunkAlloc fAllocator;
90 fAllocator(kMinBlockSize) {
96 fAllocator.reset();
110 fBlock = fAllocator.allocThrow(blockSize);
134 fAllocator.reset();
    [all...]

Completed in 344 milliseconds