Home
last modified time | relevance | path

Searched defs:OrderMaintenanceInfo (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/hardware/google/gfxstream/host/vulkan/
DVkDecoderGlobalState.cpp309 struct OrderMaintenanceInfo { struct
310 uint32_t sequenceNumber = 0;
311 Lock lock;
312 ConditionVariable cv;
314 uint32_t refcount = 1;
316 void incRef() { __atomic_add_fetch(&refcount, 1, __ATOMIC_SEQ_CST); } in incRef()
318 bool decRef() { return 0 == __atomic_sub_fetch(&refcount, 1, __ATOMIC_SEQ_CST); } in decRef()