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

  /external/skia/src/gpu/vk/
GrVkDescriptorSet.cpp 18 , fPool(pool)
20 fPool->ref();
24 fPool->unref(gpu);
32 fPool->unrefAndAbandon();
GrVkDescriptorSetManager.cpp 64 ds = new GrVkDescriptorSet(vkDS, fPoolManager.fPool, handle);
155 , fPool(nullptr) {
165 , fPool(nullptr) {
254 if (fPool) {
255 fPool->unref(gpu);
264 fPool = gpu->resourceProvider().findOrCreateCompatibleDescriptorPool(fDescType,
266 SkASSERT(fPool);
284 dsAllocateInfo.descriptorPool = fPool->descPool();
299 if (fPool) {
300 fPool->unref(gpu)
    [all...]
GrVkDescriptorSet.h 40 SkDEBUGCODE(mutable) GrVkDescriptorPool* fPool;
GrVkDescriptorSetManager.h 62 SkASSERT(!fPool);
75 GrVkDescriptorPool* fPool;
GrVkPipelineState.h 113 , fPool(nullptr) {
121 SkASSERT(!fPool);
134 GrVkDescriptorPool* fPool;
GrVkPipelineState.cpp 421 if (fPool) {
422 fPool->unref(gpu);
432 fPool = gpu->resourceProvider().findOrCreateCompatibleDescriptorPool(fDescType,
435 SkASSERT(fPool || !fMaxDescriptors);
453 dsAllocateInfo.descriptorPool = fPool->descPool();
468 if (fPool) {
469 fPool->unref(gpu);
470 fPool = nullptr;
476 if (fPool) {
477 fPool->unrefAndAbandon()
    [all...]
  /external/skia/src/gpu/text/
GrTextBlobCache.cpp 26 SkASSERT(fPool.isEmpty());
GrTextBlobCache.h 27 : fPool(kPreAllocSize, kMinGrowthSize)
37 return GrAtlasTextBlob::Make(&fPool, glyphCount, runCount);
44 return GrAtlasTextBlob::Make(&fPool, glyphCount, runCount);
193 if (fPool.size() > fBudget) {
197 while (fPool.size() > fBudget && (lruBlob = iter.get()) && lruBlob != blob) {
212 if (fPool.size() > fBudget) {
224 GrMemoryPool fPool;
GrAtlasGlyphCache.cpp 389 , fPool(9/*start allocations at 512 bytes*/)
416 GrGlyph* glyph = (GrGlyph*)fPool.alloc(sizeof(GrGlyph));
GrAtlasGlyphCache.h 88 SkVarAlloc fPool;
GrAtlasTextBlob.h 100 blob->fPool->release(p);
527 GrMemoryPool* fPool;
GrAtlasTextBlob.cpp 48 cacheBlob->fPool = pool;
439 SkASSERT_RELEASE(l.fPool == r.fPool);
  /external/skia/src/lazy/
SkDiscardableMemoryPool.cpp 90 DiscardableMemoryPool* const fPool;
99 : fPool(pool)
103 SkASSERT(fPool != nullptr);
106 fPool->ref();
111 fPool->free(this);
112 fPool->unref();
117 return fPool->lock(this);
127 fPool->unlock(this);
  /external/icu/icu4c/source/test/intltest/
simplethread.cpp 291 ThreadPoolThread(ThreadPoolBase *pool, int32_t threadNum) : fPool(pool), fNum(threadNum) {};
292 virtual void run() {fPool->callFn(fNum); }
293 ThreadPoolBase *fPool;
  /external/skia/tests/
GrMemoryPoolTest.cpp 235 AutoPoolReleaser(GrMemoryPool& pool): fPool(pool) {
239 fPool.release(ptr);
246 GrMemoryPool& fPool;
  /external/icu/icu4c/source/common/
uresimp.h 42 * to use one UResourceDataEntry pointer for fAlias and fPool, with a separate
51 UResourceDataEntry *fPool;
uresbund.cpp 158 if(entry->fPool != NULL) {
159 --entry->fPool->fCountExisting;
246 (void*)resB->fPool,
377 r->fPool = getPoolEntry(r->fPath, status);
379 const int32_t *poolIndexes = r->fPool->fData.pRoot + 1;
382 r->fData.poolBundleStrings = r->fPool->fData.p16BitUnits;
    [all...]

Completed in 234 milliseconds