Lines Matching refs:pTarget
28 asm s32 Interlocked::CompareAndSwap(s32* pTarget NN_IS_UNUSED_VAR, s32 comp NN_IS_UNUSED_VAR, s32 s… in CompareAndSwap()
53 asm s32 Interlocked::Swap(s32* pTarget NN_IS_UNUSED_VAR, s32 value NN_IS_UNUSED_VAR) in Swap()
68 asm s32 Interlocked::Increment(s32* pTarget NN_IS_UNUSED_VAR) in Increment()
84 asm s32 Interlocked::Decrement(s32* pTarget NN_IS_UNUSED_VAR) in Decrement()
100 asm s32 Interlocked::Add(s32* pTarget NN_IS_UNUSED_VAR, s32 value NN_IS_UNUSED_VAR) in Add()
116 asm s32 Interlocked::Substract(s32* pTarget NN_IS_UNUSED_VAR, s32 value NN_IS_UNUSED_VAR) in Substract()
132 asm s32 Interlocked::BitwiseOr(s32* pTarget NN_IS_UNUSED_VAR, s32 value NN_IS_UNUSED_VAR) in BitwiseOr()
148 asm s32 Interlocked::BitwiseAnd(s32* pTarget NN_IS_UNUSED_VAR, s32 value NN_IS_UNUSED_VAR) in BitwiseAnd()
164 asm s32 Interlocked::BitwiseXor(s32* pTarget NN_IS_UNUSED_VAR, s32 value NN_IS_UNUSED_VAR) in BitwiseXor()
180 asm s32 Interlocked::BitwiseNot(s32* pTarget NN_IS_UNUSED_VAR) in BitwiseNot()
196 u64 Interlocked::CompareAndSwap(u64* pTarget, const u64& comp, u64 swap) in CompareAndSwap() argument
200 u64 x = __ldrexd(pTarget); in CompareAndSwap()
203 if (__strexd(swap, pTarget) == 0) in CompareAndSwap()