Home
last modified time | relevance | path

Searched refs:ThisRefCount (Results 1 – 1 of 1) sorted by relevance

/llvm-project/offload/include/OpenMP/
H A DMapping.h179 uint64_t &ThisRefCount = in resetRefCount() local
181 if (ThisRefCount != INFRefCount) in resetRefCount()
182 ThisRefCount = 1; in resetRefCount()
187 uint64_t &ThisRefCount = in incRefCount() local
189 if (ThisRefCount != INFRefCount) { in incRefCount()
190 ++ThisRefCount; in incRefCount()
191 assert(ThisRefCount < INFRefCount && "refcount overflow"); in incRefCount()
198 uint64_t &ThisRefCount = in decRefCount() local
203 if (ThisRefCount != INFRefCount) { in decRefCount()
204 if (ThisRefCount > 0) in decRefCount()
[all …]