ATOMIC_DEC         65 source/common/threading.h #define ATOMIC_DEC(ptr)       no_atomic_dec((int*)ptr)
ATOMIC_DEC         79 source/common/threading.h #define ATOMIC_DEC(ptr)       __sync_add_and_fetch((volatile int32_t*)ptr, -1)
ATOMIC_DEC         90 source/common/threading.h #define ATOMIC_DEC(ptr)       InterlockedDecrement((volatile LONG*)ptr)