Home
last modified time | relevance | path

Searched refs:nextID (Results 1 – 25 of 49) 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/llvm-project/mlir/unittests/Dialect/SPIRV/
DDeserializationTest.cpp77 auto id = nextID++; in addVoidType()
83 auto id = nextID++; in addIntType()
89 auto id = nextID++; in addStructType()
98 auto id = nextID++; in addFunctionType()
108 auto id = nextID++; in addFunction()
122 uint32_t nextID = 1; member in DeserializationTest
172 addInstruction(spirv::Opcode::OpTypeInt, {nextID++, 32}); in TEST_F()
/external/skia/src/gpu/mock/
DGrMockGpu.cpp20 static std::atomic<int> nextID{1}; in NextInternalTextureID() local
23 id = nextID.fetch_add(1, std::memory_order_relaxed); in NextInternalTextureID()
31 static std::atomic<int> nextID{-1}; in NextExternalTextureID() local
32 return nextID.fetch_add(-1, std::memory_order_relaxed); in NextExternalTextureID()
38 static std::atomic<int> nextID{SK_MaxS32}; in NextInternalRenderTargetID() local
39 return nextID.fetch_add(-1, std::memory_order_relaxed); in NextInternalRenderTargetID()
45 static std::atomic<int> nextID{SK_MinS32}; in NextExternalRenderTargetID() local
46 return nextID.fetch_add(1, std::memory_order_relaxed); in NextExternalRenderTargetID()
/external/skqp/src/gpu/
DGrContext_Base.cpp11 static std::atomic<int32_t> nextID{1}; in next_id() local
14 id = nextID++; in next_id()
DGrGpuResource.cpp222 static std::atomic<uint32_t> nextID{1}; in CreateUniqueID() local
225 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/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/skia/src/gpu/vk/
DGrVkSampler.h72 static std::atomic<uint32_t> nextID{1}; in GenID()
75 id = nextID++; in GenID()
/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()
/external/skqp/src/gpu/vk/
DGrVkSampler.h72 static std::atomic<uint32_t> nextID{1}; in GenID()
75 id = nextID++; in GenID()
/external/skia/src/core/
DSkDrawable.cpp13 static std::atomic<int32_t> nextID{1}; in next_generation_id() local
17 id = nextID.fetch_add(1, std::memory_order_relaxed); in next_generation_id()
DSkTypefaceCache.cpp61 static std::atomic<int32_t> nextID{1}; in NewFontID() local
62 return nextID.fetch_add(1, std::memory_order_relaxed); in NewFontID()
DSkPixelRef.cpp19 static std::atomic<uint32_t> nextID{2}; in ImageID() local
23 id = nextID.fetch_add(2, std::memory_order_relaxed); in ImageID()
/external/skia/src/gpu/d3d/
DGrD3DDescriptorHeap.h62 static std::atomic<uint32_t> nextID{1}; in GenID()
65 id = nextID++; in GenID()
/external/skia/src/gpu/
DGrMemoryPool.cpp84 static std::atomic<int> nextID{1}; in allocate() local
85 return nextID.fetch_add(1, std::memory_order_relaxed); in allocate()
DGrContextThreadSafeProxy.cpp26 static std::atomic<int32_t> nextID{1}; in next_id() local
29 id = nextID.fetch_add(1, std::memory_order_relaxed); in next_id()
DGrResourceAllocator.cpp22 static std::atomic<uint32_t> nextID{1}; in CreateUniqueID() local
25 id = nextID.fetch_add(1, std::memory_order_relaxed); in CreateUniqueID()
31 static std::atomic<uint32_t> nextID{1}; in CreateUniqueID() local
34 id = nextID.fetch_add(1, std::memory_order_relaxed); in CreateUniqueID()
DGrGpuResource.cpp206 static std::atomic<uint32_t> nextID{1}; in CreateUniqueID() local
209 id = nextID.fetch_add(1, std::memory_order_relaxed); in CreateUniqueID()
/external/swiftshader/src/Vulkan/Debug/
DVariable.hpp80 static std::atomic<int> nextID; member in vk::dbg::Variables
84 : id(nextID++) in Variables()
DVariable.cpp20 std::atomic<int> Variables::nextID{};
/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/swiftshader/src/Vulkan/
DVkDevice.cpp87 nextID++; in index()
89 map.emplace(samplerState, Identifier{ nextID, 1 }); in index()
91 return nextID; in index()

12