Lines Matching refs:_Addend
180 long _InterlockedAddLargeStatistic(__int64 volatile *_Addend, long _Value);
213 long __cdecl _InterlockedDecrement(long volatile *_Addend);
215 short _InterlockedDecrement16(short volatile *_Addend);
222 long __cdecl _InterlockedExchangeAdd(long volatile *_Addend, long _Value);
226 short _InterlockedExchangeAdd16(short volatile *_Addend, short _Value);
230 char _InterlockedExchangeAdd8(char volatile *_Addend, char _Value);
232 long __cdecl _InterlockedIncrement(long volatile *_Addend);
234 short _InterlockedIncrement16(short volatile *_Addend);
382 __int64 _InterlockedDecrement64(__int64 volatile *_Addend);
386 __int64 _InterlockedExchangeAdd64(__int64 volatile *_Addend, __int64 _Value);
389 __int64 _InterlockedIncrement64(__int64 volatile *_Addend);
604 _InterlockedExchangeAdd8(char volatile *_Addend, char _Value) { in _InterlockedExchangeAdd8() argument
605 return __atomic_fetch_add(_Addend, _Value, __ATOMIC_SEQ_CST); in _InterlockedExchangeAdd8()
608 _InterlockedExchangeAdd16(short volatile *_Addend, short _Value) { in _InterlockedExchangeAdd16() argument
609 return __atomic_fetch_add(_Addend, _Value, __ATOMIC_SEQ_CST); in _InterlockedExchangeAdd16()
613 _InterlockedExchangeAdd64(__int64 volatile *_Addend, __int64 _Value) { in _InterlockedExchangeAdd64() argument
614 return __atomic_fetch_add(_Addend, _Value, __ATOMIC_SEQ_CST); in _InterlockedExchangeAdd64()