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

  /external/skia/src/gpu/batches/
GrBatch.cpp 10 #include "GrMemoryPool.h"
30 GrMemoryPool* pool() const {
31 static GrMemoryPool gPool(16384, 16384);
  /external/skia/bench/
GrMemoryPoolBench.cpp 14 #include "GrMemoryPool.h"
19 // change this to 0 to compare GrMemoryPool to default new / delete
28 static GrMemoryPool gBenchPool;
30 GrMemoryPool A::gBenchPool(10 * (1 << 10), 10 * (1 << 10));
90 static GrMemoryPool gBenchPool;
92 GrMemoryPool B::gBenchPool(10 * (1 << 10), 10 * (1 << 10));
135 static GrMemoryPool gBenchPool;
137 GrMemoryPool C::gBenchPool(10 * (1 << 10), 10 * (1 << 10));
  /external/skia/src/gpu/
GrMemoryPool.h 20 class GrMemoryPool {
27 GrMemoryPool(size_t preallocSize, size_t minAllocSize);
29 ~GrMemoryPool();
47 * Returns the total allocated size of the GrMemoryPool minus any preallocated amount
GrMemoryPool.cpp 8 #include "GrMemoryPool.h"
16 GrMemoryPool::GrMemoryPool(size_t preallocSize, size_t minAllocSize) {
33 GrMemoryPool::~GrMemoryPool() {
41 void* GrMemoryPool::allocate(size_t size) {
77 void GrMemoryPool::release(void* p) {
118 GrMemoryPool::BlockHeader* GrMemoryPool::CreateBlock(size_t size) {
133 void GrMemoryPool::DeleteBlock(BlockHeader* block)
    [all...]
GrProcessor.cpp 12 #include "GrMemoryPool.h"
91 GrMemoryPool* pool() const {
92 static GrMemoryPool gPool(4096, 4096);
  /external/skia/tests/
GrMemoryPoolTest.cpp 11 #include "GrMemoryPool.h"
17 // and delete to use a GrMemoryPool. The objects have values of different types
49 GrMemoryPool* pool = new GrMemoryPool(preallocSize, minAllocSize);
58 static SkAutoTDelete<GrMemoryPool> gPool;
62 SkAutoTDelete<GrMemoryPool> A::gPool;
176 DEF_TEST(GrMemoryPool, reporter) {
  /external/skia/src/gpu/text/
GrTextBlobCache.h 138 GrMemoryPool fPool;
GrAtlasTextBlob.h 14 #include "GrMemoryPool.h"
22 class GrMemoryPool;
49 static GrAtlasTextBlob* Create(GrMemoryPool* pool, int glyphCount, int runCount);
535 GrMemoryPool* fPool;
GrAtlasTextBlob.cpp 20 GrAtlasTextBlob* GrAtlasTextBlob::Create(GrMemoryPool* pool, int glyphCount, int runCount) {
  /external/skia/
Android.mk 397 src/gpu/GrMemoryPool.cpp \

Completed in 4334 milliseconds