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

/external/stlport/stlport/stl/config/
H A D_windows.h87 # define InterlockedExchange _InterlockedExchange macro
100 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedExchange(long volatile *, long);
110 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedExchange(long*, long);
130 long WINAPI InterlockedExchange(long*, long);
199 /* Under 32 bits platform we rely on a simple InterlockedExchange call. */
217 return reinterpret_cast<void*>(InterlockedExchange(reinterpret_cast<long*>(const_cast<void**>(__a)),
220 return (void*)InterlockedExchange((long*)__a, (long)__b);

Completed in 624 milliseconds