HomeSort by relevance Sort by last modified time
    Searched refs:fPool (Results 1 - 15 of 15) 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 70 ds = new GrVkDescriptorSet(vkDS, fPoolManager.fPool, handle);
171 , fPool(nullptr) {
244 if (fPool) {
245 fPool->unref(gpu);
254 fPool = gpu->resourceProvider().findOrCreateCompatibleDescriptorPool(fDescType,
256 SkASSERT(fPool);
274 dsAllocateInfo.descriptorPool = fPool->descPool();
289 if (fPool) {
290 fPool->unref(gpu);
291 fPool = nullptr
    [all...]
GrVkDescriptorSet.h 40 SkDEBUGCODE(mutable) GrVkDescriptorPool* fPool;
GrVkDescriptorSetManager.h 58 SkASSERT(!fPool);
71 GrVkDescriptorPool* fPool;
  /external/skia/src/gpu/text/
GrTextBlobCache.cpp 26 SkASSERT(fPool.isEmpty());
GrTextBlobCache.h 27 : fPool(0u, 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) {
221 GrMemoryPool fPool;
GrAtlasGlyphCache.cpp 405 , fPool(9/*start allocations at 512 bytes*/)
432 GrGlyph* glyph = fPool.make<GrGlyph>();
GrAtlasGlyphCache.h 88 SkArenaAlloc fPool{512};
GrAtlasTextBlob.h 99 blob->fPool->release(p);
536 GrMemoryPool* fPool;
GrAtlasTextBlob.cpp 47 cacheBlob->fPool = pool;
440 SkASSERT_RELEASE(l.fPool == r.fPool);
  /external/skia/src/lazy/
SkDiscardableMemoryPool.cpp 89 sk_sp<DiscardableMemoryPool> fPool;
98 : fPool(std::move(pool)), fLocked(true), fPointer(std::move(pointer)), fBytes(bytes) {
99 SkASSERT(fPool != nullptr);
106 fPool->removeFromPool(this);
111 return fPool->lock(this);
121 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 104 milliseconds