Searched defs:InterlockedExchangeAdd (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinbase.h2592 static FORCEINLINE LONG WINAPI InterlockedExchangeAdd( LONG volatile *dest, LONG incr ) function
2602 return InterlockedExchangeAdd( dest, 1 ) + 1;
2607 return InterlockedExchangeAdd( dest, -1 ) - 1;
2615 WINBASEAPI LONG WINAPI InterlockedExchangeAdd(LONG volatile*,LONG);
2668 static FORCEINLINE LONG WINAPI InterlockedExchangeAdd( LONG volatile *dest, LONG incr ) function
2722 static FORCEINLINE LONG WINAPI InterlockedExchangeAdd( LONG volatile *dest, LONG incr ) function
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dwinbase.h2347 extern inline LONG WINAPI InterlockedExchangeAdd( LONG volatile *dest, LONG incr );
2348 extern inline LONG WINAPI InterlockedExchangeAdd( LONG volatile *dest, LONG incr ) function
2359 return InterlockedExchangeAdd( dest, 1 ) + 1;
2365 return InterlockedExchangeAdd( dest, -1 ) - 1;
2373 WINBASEAPI LONG WINAPI InterlockedExchangeAdd(LONG volatile*,LONG);
2457 static inline LONG WINAPI InterlockedExchangeAdd( LONG volatile *dest, LONG incr ) function
2472 return InterlockedExchangeAdd( dest, 1 ) + 1;
2477 return InterlockedExchangeAdd( dest, -1 ) - 1;

Completed in 75 milliseconds