Lines Matching refs:s32
55 …me T> struct AtomicStorageSelecter<T, typename nn::util::enable_if<sizeof(T) == sizeof(s32)>::type>
57 typedef s32 Type;
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);
88 CompareAndSwap( reinterpret_cast<s32*>(pTarget),
89 reinterpret_cast<s32>(comp),
90 reinterpret_cast<s32>(swap) ));
97 Swap( reinterpret_cast<s32*>(pTarget),
98 reinterpret_cast<s32>(value) ));