Lines Matching refs:pTarget
71 static s32 CompareAndSwap(s32* pTarget, s32 comp, s32 swap);
72 static s32 Swap(s32* pTarget, s32 value);
73 static s32 Increment(s32* pTarget);
74 static s32 Decrement(s32* pTarget);
75 static s32 Add(s32* pTarget, s32 value);
76 static s32 Substract(s32* pTarget, s32 value);
77 static s32 BitwiseOr(s32* pTarget, s32 value);
78 static s32 BitwiseAnd(s32* pTarget, s32 value);
79 static s32 BitwiseXor(s32* pTarget, s32 value);
80 static s32 BitwiseNot(s32* pTarget);
81 static s64 Read(s64* pTarget) { return *pTarget; }
82 static u64 CompareAndSwap(u64* pTarget, const u64& comp, u64 swap);
85 static T* CompareAndSwap(T** pTarget, T* comp, T* swap)
88 CompareAndSwap( reinterpret_cast<s32*>(pTarget),
94 static T* Swap(T** pTarget, T* value)
97 Swap( reinterpret_cast<s32*>(pTarget),