Lines Matching refs:UInt32
110 volatile UInt32 *countP = (volatile UInt32 *) &retainCount; in taggedTryRetain()
111 UInt32 inc = 1; in taggedTryRetain()
112 UInt32 origCount; in taggedTryRetain()
113 UInt32 newCount; in taggedTryRetain()
146 } while (!OSCompareAndSwap(origCount, newCount, const_cast<UInt32 *>(countP))); in taggedTryRetain()
168 volatile UInt32 *countP = (volatile UInt32 *) &retainCount; in taggedRelease()
169 UInt32 dec = 1; in taggedRelease()
170 UInt32 origCount; in taggedRelease()
171 UInt32 newCount; in taggedRelease()
172 UInt32 actualCount; in taggedRelease()
209 } while (!OSCompareAndSwap(origCount, newCount, const_cast<UInt32 *>(countP))); in taggedRelease()