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

  /external/chromium_org/third_party/skia/src/gpu/
GrMemoryPool.h 20 class GrMemoryPool {
27 GrMemoryPool(size_t preallocSize, size_t minAllocSize);
29 ~GrMemoryPool();
GrProcessor.cpp 12 #include "GrMemoryPool.h"
37 static GrMemoryPool* GetTLS() {
38 return (GrMemoryPool*)SkTLS::Get(CreateTLS, DeleteTLS);
43 return SkNEW_ARGS(GrMemoryPool, (4096, 4096));
47 SkDELETE(reinterpret_cast<GrMemoryPool*>(pool));
GrMemoryPool.cpp 8 #include "GrMemoryPool.h"
16 GrMemoryPool::GrMemoryPool(size_t preallocSize, size_t minAllocSize) {
31 GrMemoryPool::~GrMemoryPool() {
39 void* GrMemoryPool::allocate(size_t size) {
69 void GrMemoryPool::release(void* p) {
105 GrMemoryPool::BlockHeader* GrMemoryPool::CreateBlock(size_t size) {
117 void GrMemoryPool::DeleteBlock(BlockHeader* block)
    [all...]
  /external/chromium_org/third_party/skia/bench/
GrMemoryPoolBench.cpp 12 #include "GrMemoryPool.h"
17 // change this to 0 to compare GrMemoryPool to default new / delete
26 static GrMemoryPool gBenchPool;
28 GrMemoryPool A::gBenchPool(10 * (1 << 10), 10 * (1 << 10));
88 static GrMemoryPool gBenchPool;
90 GrMemoryPool B::gBenchPool(10 * (1 << 10), 10 * (1 << 10));
133 static GrMemoryPool gBenchPool;
135 GrMemoryPool C::gBenchPool(10 * (1 << 10), 10 * (1 << 10));
  /external/chromium_org/third_party/skia/tests/
GrMemoryPoolTest.cpp 11 #include "GrMemoryPool.h"
18 // and delete to use a GrMemoryPool. The objects have values of different types
55 GrMemoryPool* pool = new GrMemoryPool(preallocSize, minAllocSize);
67 static SkAutoTDelete<GrMemoryPool> gPool;
71 SkAutoTDelete<GrMemoryPool> A::gPool;
185 DEF_TEST(GrMemoryPool, reporter) {
  /external/chromium_org/skia/
skia_library.target.darwin-arm.mk 347 third_party/skia/src/gpu/GrMemoryPool.cpp \
skia_library.target.darwin-arm64.mk 347 third_party/skia/src/gpu/GrMemoryPool.cpp \
skia_library.target.darwin-mips.mk 347 third_party/skia/src/gpu/GrMemoryPool.cpp \
skia_library.target.darwin-mips64.mk 347 third_party/skia/src/gpu/GrMemoryPool.cpp \
skia_library.target.darwin-x86.mk 348 third_party/skia/src/gpu/GrMemoryPool.cpp \
skia_library.target.darwin-x86_64.mk 348 third_party/skia/src/gpu/GrMemoryPool.cpp \
skia_library.target.linux-arm.mk 347 third_party/skia/src/gpu/GrMemoryPool.cpp \
skia_library.target.linux-arm64.mk 347 third_party/skia/src/gpu/GrMemoryPool.cpp \
skia_library.target.linux-mips.mk 347 third_party/skia/src/gpu/GrMemoryPool.cpp \
skia_library.target.linux-mips64.mk 347 third_party/skia/src/gpu/GrMemoryPool.cpp \
skia_library.target.linux-x86.mk 348 third_party/skia/src/gpu/GrMemoryPool.cpp \
skia_library.target.linux-x86_64.mk 348 third_party/skia/src/gpu/GrMemoryPool.cpp \

Completed in 130 milliseconds