Home
last modified time | relevance | path

Searched refs:LPLONG (Results 1 – 3 of 3) sorted by relevance

/external/usrsctp/usrsctplib/
Duser_atomic.h47 #define atomic_add_int(addr, val) InterlockedExchangeAdd((LPLONG)addr, (LONG)val)
48 #define atomic_fetchadd_int(addr, val) InterlockedExchangeAdd((LPLONG)addr, (LONG)val)
49 #define atomic_subtract_int(addr, val) InterlockedExchangeAdd((LPLONG)addr,-((LONG)val))
50 #define atomic_cmpset_int(dst, exp, src) InterlockedCompareExchange((LPLONG)dst, src, exp)
51 #define SCTP_DECREMENT_AND_CHECK_REFCOUNT(addr) (InterlockedExchangeAdd((LPLONG)addr, (-1L)) == 1)
/external/ImageMagick/Magick++/lib/
DThread.cpp107 if (ReleaseSemaphore(_mutex,1,(LPLONG) NULL) == TRUE) in unlock()
/external/python/cpython3/Lib/ctypes/
Dwintypes.py184 LPLONG = PLONG = ctypes.POINTER(LONG) variable