Home
last modified time | relevance | path

Searched refs:nextID (Results 1 – 25 of 42) sorted by relevance

12

/external/skqp/src/gpu/mock/
DGrMockGpu.cpp17 static std::atomic<int> nextID{1}; in NextInternalTextureID() local
20 id = nextID.fetch_add(1); in NextInternalTextureID()
28 static std::atomic<int> nextID{-1}; in NextExternalTextureID() local
29 return nextID--; in NextExternalTextureID()
35 static std::atomic<int> nextID{SK_MaxS32}; in NextInternalRenderTargetID() local
36 return nextID--; in NextInternalRenderTargetID()
42 static std::atomic<int> nextID{SK_MinS32}; in NextExternalRenderTargetID() local
43 return nextID++; in NextExternalRenderTargetID()
/external/skia/src/gpu/mock/
DGrMockGpu.cpp17 static std::atomic<int> nextID{1}; in NextInternalTextureID() local
20 id = nextID.fetch_add(1); in NextInternalTextureID()
28 static std::atomic<int> nextID{-1}; in NextExternalTextureID() local
29 return nextID--; in NextExternalTextureID()
35 static std::atomic<int> nextID{SK_MaxS32}; in NextInternalRenderTargetID() local
36 return nextID--; in NextInternalRenderTargetID()
42 static std::atomic<int> nextID{SK_MinS32}; in NextExternalRenderTargetID() local
43 return nextID++; in NextExternalRenderTargetID()
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DClassTable.java180 int nextID = startID; in writeClassTable() local
185 if (classTable[endIndex].getGlyphID() != nextID || in writeClassTable()
190 endID = nextID; in writeClassTable()
191 nextID += 1; in writeClassTable()
/external/skqp/src/gpu/
DGrContext_Base.cpp11 static std::atomic<int32_t> nextID{1}; in next_id() local
14 id = nextID++; in next_id()
DGrOpList.cpp19 static std::atomic<uint32_t> nextID{1}; in CreateUniqueID() local
22 id = nextID++; in CreateUniqueID()
DGrGpuResource.cpp222 static std::atomic<uint32_t> nextID{1}; in CreateUniqueID() local
225 id = nextID++; in CreateUniqueID()
DGrMemoryPool.cpp93 static std::atomic<int32_t> nextID{1}; in allocate() local
94 return nextID++; in allocate()
/external/skia/src/gpu/
DGrContext_Base.cpp21 static std::atomic<int32_t> nextID{1}; in next_id() local
24 id = nextID++; in next_id()
DGrGpuResource.cpp225 static std::atomic<uint32_t> nextID{1}; in CreateUniqueID() local
228 id = nextID++; in CreateUniqueID()
DGrOpList.cpp19 static std::atomic<uint32_t> nextID{1}; in CreateUniqueID() local
22 id = nextID++; in CreateUniqueID()
DGrMemoryPool.cpp93 static std::atomic<int32_t> nextID{1}; in allocate() local
94 return nextID++; in allocate()
/external/skqp/src/core/
DSkDrawable.cpp13 static std::atomic<int32_t> nextID{1}; in next_generation_id() local
17 id = nextID++; in next_generation_id()
DSkTypefaceCache.cpp61 static std::atomic<int32_t> nextID{1}; in NewFontID() local
62 return nextID++; in NewFontID()
DSkPixelRef.cpp17 static std::atomic<uint32_t> nextID{2}; in ImageID() local
21 id = nextID.fetch_add(2); in ImageID()
DSkPicture.cpp37 static std::atomic<uint32_t> nextID{1}; in SkPicture() local
39 fUniqueID = nextID.fetch_add(+1, std::memory_order_relaxed); in SkPicture()
/external/skia/src/core/
DSkDrawable.cpp13 static std::atomic<int32_t> nextID{1}; in next_generation_id() local
17 id = nextID++; in next_generation_id()
DSkPixelRef.cpp17 static std::atomic<uint32_t> nextID{2}; in ImageID() local
21 id = nextID.fetch_add(2); in ImageID()
DSkTypefaceCache.cpp61 static std::atomic<int32_t> nextID{1}; in NewFontID() local
62 return nextID++; in NewFontID()
DSkPicture.cpp37 static std::atomic<uint32_t> nextID{1}; in SkPicture() local
39 fUniqueID = nextID.fetch_add(+1, std::memory_order_relaxed); in SkPicture()
/external/skia/src/gpu/vk/
DGrVkSampler.h72 static std::atomic<uint32_t> nextID{1}; in GenID()
75 id = nextID++; in GenID()
/external/skqp/src/gpu/vk/
DGrVkSampler.h72 static std::atomic<uint32_t> nextID{1}; in GenID()
75 id = nextID++; in GenID()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMDefaultBaseTraversers.java354 int nextID = findElementFromIndex(nsIndex, lnIndex, nextPotential); in getNextIndexed() local
356 if (NOTPROCESSED != nextID) in getNextIndexed()
358 int parentID = m_parent.elementAt(nextID); in getNextIndexed()
362 return nextID; in getNextIndexed()
383 nextPotential = nextID+1; in getNextIndexed()
/external/skia/src/gpu/ccpr/
DGrCCAtlas.cpp161 static std::atomic<uint32_t> nextID; in next_atlas_unique_id() local
162 return nextID++; in next_atlas_unique_id()
/external/skqp/src/gpu/ccpr/
DGrCCAtlas.cpp160 static std::atomic<uint32_t> nextID; in next_atlas_unique_id() local
161 return nextID++; in next_atlas_unique_id()
/external/skqp/src/image/
DSkSurface.cpp124 static std::atomic<uint32_t> nextID{1}; in newGenerationID() local
125 return nextID++; in newGenerationID()

12