/external/skqp/src/gpu/mock/ |
D | GrMockGpu.cpp | 17 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/ |
D | DeserializationTest.cpp | 77 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/ |
D | GrMockGpu.cpp | 20 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/ |
D | GrContext_Base.cpp | 11 static std::atomic<int32_t> nextID{1}; in next_id() local 14 id = nextID++; in next_id()
|
D | GrGpuResource.cpp | 222 static std::atomic<uint32_t> nextID{1}; in CreateUniqueID() local 225 id = nextID++; in CreateUniqueID()
|
D | GrOpList.cpp | 19 static std::atomic<uint32_t> nextID{1}; in CreateUniqueID() local 22 id = nextID++; in CreateUniqueID()
|
D | GrMemoryPool.cpp | 93 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/ |
D | ClassTable.java | 180 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/ |
D | GrVkSampler.h | 72 static std::atomic<uint32_t> nextID{1}; in GenID() 75 id = nextID++; in GenID()
|
/external/skqp/src/core/ |
D | SkDrawable.cpp | 13 static std::atomic<int32_t> nextID{1}; in next_generation_id() local 17 id = nextID++; in next_generation_id()
|
D | SkTypefaceCache.cpp | 61 static std::atomic<int32_t> nextID{1}; in NewFontID() local 62 return nextID++; in NewFontID()
|
D | SkPixelRef.cpp | 17 static std::atomic<uint32_t> nextID{2}; in ImageID() local 21 id = nextID.fetch_add(2); in ImageID()
|
/external/skqp/src/gpu/vk/ |
D | GrVkSampler.h | 72 static std::atomic<uint32_t> nextID{1}; in GenID() 75 id = nextID++; in GenID()
|
/external/skia/src/core/ |
D | SkDrawable.cpp | 13 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()
|
D | SkTypefaceCache.cpp | 61 static std::atomic<int32_t> nextID{1}; in NewFontID() local 62 return nextID.fetch_add(1, std::memory_order_relaxed); in NewFontID()
|
D | SkPixelRef.cpp | 19 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/ |
D | GrD3DDescriptorHeap.h | 62 static std::atomic<uint32_t> nextID{1}; in GenID() 65 id = nextID++; in GenID()
|
/external/skia/src/gpu/ |
D | GrMemoryPool.cpp | 84 static std::atomic<int> nextID{1}; in allocate() local 85 return nextID.fetch_add(1, std::memory_order_relaxed); in allocate()
|
D | GrContextThreadSafeProxy.cpp | 26 static std::atomic<int32_t> nextID{1}; in next_id() local 29 id = nextID.fetch_add(1, std::memory_order_relaxed); in next_id()
|
D | GrResourceAllocator.cpp | 22 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()
|
D | GrGpuResource.cpp | 206 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/ |
D | Variable.hpp | 80 static std::atomic<int> nextID; member in vk::dbg::Variables 84 : id(nextID++) in Variables()
|
D | Variable.cpp | 20 std::atomic<int> Variables::nextID{};
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMDefaultBaseTraversers.java | 354 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/ |
D | VkDevice.cpp | 87 nextID++; in index() 89 map.emplace(samplerState, Identifier{ nextID, 1 }); in index() 91 return nextID; in index()
|