[#BloombergLP-bsls-AtomicOperations_Default32] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bsls.adoc[bsls]::AtomicOperations_Default32 :relfileprefix: ../../ :mrdocs: This class provides default implementations of non‐essential atomic operations for the 32‐bit integer, 64‐bit integer, the 32‐bit unsigned integer, 64‐bit unsigned integer and 32‐bit pointer type for a generic 32‐bit platform. == Synopsis Declared in `<bsls_atomicoperations_default.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class IMP> struct AtomicOperations_Default32 : xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08.adoc[AtomicOperations_DefaultInt<IMP>] , xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a.adoc[AtomicOperations_DefaultInt64<IMP>] , xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7.adoc[AtomicOperations_DefaultUint<IMP>] , xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00.adoc[AtomicOperations_DefaultUint64<IMP>] , xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32.adoc[AtomicOperations_DefaultPointer32<IMP>] ---- == Base Classes [cols="1,4"] |=== | Name| Description | `xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08.adoc[AtomicOperations_DefaultInt<IMP>]` | This class provides default implementations of non‐essential atomic operations for the 32‐bit integer type independent on any specific platform. It also provides prototypes for the atomic operations for the 32‐bit integer type that have to be implemented separately for each specific platform. These platform‐independent and platform‐specific atomic operations together form a full set of atomic operations for the 32‐bit integer type. | `xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a.adoc[AtomicOperations_DefaultInt64<IMP>]` | This class provides default implementations of non‐essential atomic operations for the 64‐bit integer type independent on any specific platform. It also provides prototypes for the atomic operations for the 64‐bit integer type that have to be implemented separately for each specific platform. These platform‐independent and platform‐specific atomic operations together form a full set of atomic operations for the 64‐bit integer type. | `xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7.adoc[AtomicOperations_DefaultUint<IMP>]` | This class provides default implementations of non‐essential atomic operations for the 32‐bit unsigned integer type independent on any specific platform. It also provides prototypes for the atomic operations for the 32‐bit unsigned integer type that have to be implemented separately for each specific platform. These platform‐independent and platform‐specific atomic operations together form a full set of atomic operations for the 32‐bit unsigned integer type. | `xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00.adoc[AtomicOperations_DefaultUint64<IMP>]` | This class provides default implementations of non‐essential atomic operations for the 64‐bit unsigned integer type independent on any specific platform. It also provides prototypes for the atomic operations for the 64‐bit unsigned integer type that have to be implemented separately for each specific platform. These platform‐independent and platform‐specific atomic operations together form a full set of atomic operations for the 64‐bit unsigned integer type. | `xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32.adoc[AtomicOperations_DefaultPointer32<IMP>]` | This class provides default implementations of non‐essential atomic operations for the 32‐bit pointer type independent on any specific platform. It also provides prototypes for the atomic operations for the pointer type that have to be implemented separately for each specific platform. These platform‐independent and platform‐specific atomic operations combined together form a full set of atomic operations for the pointer type. |=== == Type Aliases [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/AtomicTypes.adoc[`AtomicTypes`] | This `typedef` is an alias to `Atomic_TypeTraits<IMP>`. |=== == Static Member Functions [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/addInt.adoc[`addInt`] | Atomically add to the specified `atomicInt` the specified `value`, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/addInt64.adoc[`addInt64`] | Atomically add to the specified `atomicInt` the specified `value`, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/addInt64AcqRel.adoc[`addInt64AcqRel`] | Atomically add to the specified `atomicInt` the specified `value`, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/addInt64NvAcqRel.adoc[`addInt64NvAcqRel`] | Atomically add to the specified `atomicInt` the specified `value` and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/addInt64NvRelaxed.adoc[`addInt64NvRelaxed`] | Atomically add to the specified `atomicInt` the specified `value` and return the resulting value, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/addInt64Relaxed.adoc[`addInt64Relaxed`] | Atomically add to the specified `atomicInt` the specified `value`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/addIntAcqRel.adoc[`addIntAcqRel`] | Atomically add to the specified `atomicInt` the specified `value`, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/addIntNvAcqRel.adoc[`addIntNvAcqRel`] | Atomically add to the specified `atomicInt` the specified `value` and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/addIntNvRelaxed.adoc[`addIntNvRelaxed`] | Atomically add to the specified `atomicInt` the specified `value` and return the resulting value, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/addIntRelaxed.adoc[`addIntRelaxed`] | Atomically add to the specified `atomicInt` the specified `value`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/addUint.adoc[`addUint`] | Atomically add to the specified `atomicUint` the specified `value`, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/addUint64.adoc[`addUint64`] | Atomically add to the specified `atomicUint` the specified `value`, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/addUint64AcqRel.adoc[`addUint64AcqRel`] | Atomically add to the specified `atomicUint` the specified `value`, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/addUint64Nv.adoc[`addUint64Nv`] | Atomically add to the specified `atomicUint` the specified `value` and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/addUint64NvAcqRel.adoc[`addUint64NvAcqRel`] | Atomically add to the specified `atomicUint` the specified `value` and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/addUint64NvRelaxed.adoc[`addUint64NvRelaxed`] | Atomically add to the specified `atomicUint` the specified `value` and return the resulting value, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/addUint64Relaxed.adoc[`addUint64Relaxed`] | Atomically add to the specified `atomicUint` the specified `value`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/addUintAcqRel.adoc[`addUintAcqRel`] | Atomically add to the specified `atomicUint` the specified `value`, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/addUintNv.adoc[`addUintNv`] | Atomically add to the specified `atomicUint` the specified `value` and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/addUintNvAcqRel.adoc[`addUintNvAcqRel`] | Atomically add to the specified `atomicUint` the specified `value` and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/addUintNvRelaxed.adoc[`addUintNvRelaxed`] | Atomically add to the specified `atomicUint` the specified `value` and return the resulting value, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/addUintRelaxed.adoc[`addUintRelaxed`] | Atomically add to the specified `atomicUint` the specified `value`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/decrementInt.adoc[`decrementInt`] | Atomically decrement the value of the specified `atomicInt` by 1, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/decrementInt64.adoc[`decrementInt64`] | Atomically decrement the specified `atomicInt` by 1, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/decrementInt64AcqRel.adoc[`decrementInt64AcqRel`] | Atomically decrement the specified `atomicInt` by 1, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/decrementInt64Nv.adoc[`decrementInt64Nv`] | Atomically decrement the specified `atomicInt` by 1 and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/decrementInt64NvAcqRel.adoc[`decrementInt64NvAcqRel`] | Atomically decrement the specified `atomicInt` by 1 and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/decrementIntAcqRel.adoc[`decrementIntAcqRel`] | Atomically decrement the value of the specified `atomicInt` by 1, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/decrementIntNv.adoc[`decrementIntNv`] | Atomically decrement the specified `atomicInt` by 1 and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/decrementIntNvAcqRel.adoc[`decrementIntNvAcqRel`] | Atomically decrement the specified `atomicInt` by 1 and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/decrementUint.adoc[`decrementUint`] | Atomically decrement the value of the specified `atomicUint` by 1, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/decrementUint64.adoc[`decrementUint64`] | Atomically decrement the specified `atomicUint` by 1, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/decrementUint64AcqRel.adoc[`decrementUint64AcqRel`] | Atomically decrement the specified `atomicUint` by 1, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/decrementUint64Nv.adoc[`decrementUint64Nv`] | Atomically decrement the specified `atomicUint` by 1 and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/decrementUint64NvAcqRel.adoc[`decrementUint64NvAcqRel`] | Atomically decrement the specified `atomicUint` by 1 and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/decrementUintAcqRel.adoc[`decrementUintAcqRel`] | Atomically decrement the value of the specified `atomicUint` by 1, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/decrementUintNv.adoc[`decrementUintNv`] | Atomically decrement the specified `atomicUint` by 1 and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/decrementUintNvAcqRel.adoc[`decrementUintNvAcqRel`] | Atomically decrement the specified `atomicUint` by 1 and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/getInt64Acquire.adoc[`getInt64Acquire`] | Atomically retrieve the value of the specified `atomicInt`, providing the acquire memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/getInt64Relaxed.adoc[`getInt64Relaxed`] | Atomically retrieve the value of the specified `atomicInt`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/getIntAcquire.adoc[`getIntAcquire`] | Atomically retrieve the value of the specified `atomicInt`, providing the acquire memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/getIntRelaxed.adoc[`getIntRelaxed`] | Atomically retrieve the value of the specified `atomicInt`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32/getPtr.adoc[`getPtr`] | Atomically retrieve the value of the specified `atomicPtr`, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32/getPtrAcquire.adoc[`getPtrAcquire`] | Atomically retrieve the value of the specified `atomicPtr`, providing the acquire memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32/getPtrRelaxed.adoc[`getPtrRelaxed`] | Atomically retrieve the value of the specified `atomicPtr`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/getUint.adoc[`getUint`] | Atomically retrieve the value of the specified `atomicUint`, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/getUint64.adoc[`getUint64`] | Atomically retrieve the value of the specified `atomicUint`, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/getUint64Acquire.adoc[`getUint64Acquire`] | Atomically retrieve the value of the specified `atomicUint`, providing the acquire memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/getUint64Relaxed.adoc[`getUint64Relaxed`] | Atomically retrieve the value of the specified `atomicUint`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/getUintAcquire.adoc[`getUintAcquire`] | Atomically retrieve the value of the specified `atomicUint`, providing the acquire memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/getUintRelaxed.adoc[`getUintRelaxed`] | Atomically retrieve the value of the specified `atomicUint`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/incrementInt.adoc[`incrementInt`] | Atomically increment the value of the specified `atomicInt` by 1, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/incrementInt64.adoc[`incrementInt64`] | Atomically increment the value of the specified `atomicInt` by 1, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/incrementInt64AcqRel.adoc[`incrementInt64AcqRel`] | Atomically increment the value of the specified `atomicInt` by 1, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/incrementInt64Nv.adoc[`incrementInt64Nv`] | Atomically increment the specified `atomicInt` by 1 and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/incrementInt64NvAcqRel.adoc[`incrementInt64NvAcqRel`] | Atomically increment the specified `atomicInt` by 1 and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/incrementIntAcqRel.adoc[`incrementIntAcqRel`] | Atomically increment the value of the specified `atomicInt` by 1, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/incrementIntNv.adoc[`incrementIntNv`] | Atomically increment the specified `atomicInt` by 1 and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/incrementIntNvAcqRel.adoc[`incrementIntNvAcqRel`] | Atomically increment the specified `atomicInt` by 1 and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/incrementUint.adoc[`incrementUint`] | Atomically increment the value of the specified `atomicUint` by 1, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/incrementUint64.adoc[`incrementUint64`] | Atomically increment the value of the specified `atomicUint` by 1, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/incrementUint64AcqRel.adoc[`incrementUint64AcqRel`] | Atomically increment the value of the specified `atomicUint` by 1, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/incrementUint64Nv.adoc[`incrementUint64Nv`] | Atomically increment the specified `atomicUint` by 1 and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/incrementUint64NvAcqRel.adoc[`incrementUint64NvAcqRel`] | Atomically increment the specified `atomicUint` by 1 and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/incrementUintAcqRel.adoc[`incrementUintAcqRel`] | Atomically increment the value of the specified `atomicUint` by 1, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/incrementUintNv.adoc[`incrementUintNv`] | Atomically increment the specified `atomicUint` by 1 and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/incrementUintNvAcqRel.adoc[`incrementUintNvAcqRel`] | Atomically increment the specified `atomicUint` by 1 and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/initInt.adoc[`initInt`] | Initialize the specified `atomicInt` and set its value to the optionally specified `initialValue`. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/initInt64.adoc[`initInt64`] | Initialize the specified `atomicInt` and set its value to the optionally specified `initialValue`. | xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32/initPointer.adoc[`initPointer`] | Initialize the specified `atomicPtr` and set its value to the optionally specified `initialValue`. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/initUint.adoc[`initUint`] | Initialize the specified `atomicUint` and set its value to the optionally specified `initialValue`. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/initUint64.adoc[`initUint64`] | Initialize the specified `atomicUint` and set its value to the optionally specified `initialValue`. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/setInt64Relaxed.adoc[`setInt64Relaxed`] | Atomically set the value of the specified `atomicInt` to the specified `value`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/setInt64Release.adoc[`setInt64Release`] | Atomically set the value of the specified `atomicInt` to the specified `value`, providing the release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/setIntRelaxed.adoc[`setIntRelaxed`] | Atomically set the value of the specified `atomicInt` to the specified `value`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/setIntRelease.adoc[`setIntRelease`] | Atomically set the value of the specified `atomicInt` to the specified `value`, providing the release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32/setPtr.adoc[`setPtr`] | Atomically set the value of the specified `atomicPtr` to the specified `value`, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32/setPtrRelaxed.adoc[`setPtrRelaxed`] | Atomically set the value of the specified `atomicPtr` to the specified `value`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32/setPtrRelease.adoc[`setPtrRelease`] | Atomically set the value of the specified `atomicPtr` to the specified `value`, providing the release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/setUint.adoc[`setUint`] | Atomically set the value of the specified `atomicUint` to the specified `value`, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/setUint64.adoc[`setUint64`] | Atomically set the value of the specified `atomicUint` to the specified `value`, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/setUint64Relaxed.adoc[`setUint64Relaxed`] | Atomically set the value of the specified `atomicUint` to the specified `value`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/setUint64Release.adoc[`setUint64Release`] | Atomically set the value of the specified `atomicUint` to the specified `value`, providing the release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/setUintRelaxed.adoc[`setUintRelaxed`] | Atomically set the value of the specified `atomicUint` to the specified `value`, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/setUintRelease.adoc[`setUintRelease`] | Atomically set the value of the specified `atomicUint` to the specified `value`, providing the release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/subtractInt64Nv.adoc[`subtractInt64Nv`] | Atomically subtract from the specified `atomicInt` the specified `value` and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/subtractInt64NvAcqRel.adoc[`subtractInt64NvAcqRel`] | Atomically subtract from the specified `atomicInt` the specified `value` and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/subtractInt64NvRelaxed.adoc[`subtractInt64NvRelaxed`] | Atomically subtract from the specified `atomicInt` the specified `value` and return the resulting value, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/subtractIntNv.adoc[`subtractIntNv`] | Atomically subtract from the specified `atomicInt` the specified `value` and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/subtractIntNvAcqRel.adoc[`subtractIntNvAcqRel`] | Atomically subtract from the specified `atomicInt` the specified `value` and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/subtractIntNvRelaxed.adoc[`subtractIntNvRelaxed`] | Atomically subtract from the specified `atomicInt` the specified `value` and return the resulting value, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/subtractUint64Nv.adoc[`subtractUint64Nv`] | Atomically subtract from the specified `atomicUint` the specified `value` and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/subtractUint64NvAcqRel.adoc[`subtractUint64NvAcqRel`] | Atomically subtract from the specified `atomicUint` the specified `value` and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/subtractUint64NvRelaxed.adoc[`subtractUint64NvRelaxed`] | Atomically subtract from the specified `atomicUint` the specified `value` and return the resulting value, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/subtractUintNv.adoc[`subtractUintNv`] | Atomically subtract from the specified `atomicUint` the specified `value` and return the resulting value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/subtractUintNvAcqRel.adoc[`subtractUintNvAcqRel`] | Atomically subtract from the specified `atomicUint` the specified `value` and return the resulting value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/subtractUintNvRelaxed.adoc[`subtractUintNvRelaxed`] | Atomically subtract from the specified `atomicUint` the specified `value` and return the resulting value, without providing any memory ordering guarantees. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/swapInt64AcqRel.adoc[`swapInt64AcqRel`] | Atomically set the value of the specified `atomicInt` to the specified `swapValue` and return its previous value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/swapIntAcqRel.adoc[`swapIntAcqRel`] | Atomically set the value of the specified `atomicInt` to the specified `swapValue`, and return its previous value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32/swapPtr.adoc[`swapPtr`] | Atomically set the value of the specified `atomicPtr` to the specified `swapValue`, and return its previous value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32/swapPtrAcqRel.adoc[`swapPtrAcqRel`] | Atomically set the value of the specified `atomicPtr` to the specified `swapValue`, and return its previous value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/swapUint.adoc[`swapUint`] | Atomically set the value of the specified `atomicUint` to the specified `swapValue`, and return its previous value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/swapUint64.adoc[`swapUint64`] | Atomically set the value of the specified `atomicUint` to the specified `swapValue` and return its previous value, providing the sequential consistency memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/swapUint64AcqRel.adoc[`swapUint64AcqRel`] | Atomically set the value of the specified `atomicUint` to the specified `swapValue` and return its previous value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/swapUintAcqRel.adoc[`swapUintAcqRel`] | Atomically set the value of the specified `atomicUint` to the specified `swapValue`, and return its previous value, providing the acquire/release memory ordering guarantee. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt64-0a/testAndSwapInt64AcqRel.adoc[`testAndSwapInt64AcqRel`] | Conditionally set the value of the specified `atomicInt` to the specified `swapValue` if and only if the value of `atomicInt` equals the value of the specified `compareValue`, and return the initial value of `atomicInt`, providing the sequential consistency memory ordering guarantee. The whole operation is performed atomically. | xref:BloombergLP/bsls/AtomicOperations_DefaultInt-08/testAndSwapIntAcqRel.adoc[`testAndSwapIntAcqRel`] | Conditionally set the value of the specified `atomicInt` to the specified `swapValue` if and only if the value of `atomicInt` equals the value of the specified `compareValue`, and return the initial value of `atomicInt`, providing the acquire/release memory ordering guarantee. The whole operation is performed atomically. | xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32/testAndSwapPtr.adoc[`testAndSwapPtr`] | Conditionally set the value of the specified `atomicPtr` to the specified `swapValue` if and only if the value of `atomicPtr` equals the value of the specified `compareValue`, and return the initial value of `atomicPtr`, providing the sequential consistency memory ordering guarantee. The whole operation is performed atomically. | xref:BloombergLP/bsls/AtomicOperations_DefaultPointer32/testAndSwapPtrAcqRel.adoc[`testAndSwapPtrAcqRel`] | Conditionally set the value of the specified `atomicPtr` to the specified `swapValue` if and only if the value of `atomicPtr` equals the value of the specified `compareValue`, and return the initial value of `atomicPtr`, providing the acquire/release memory ordering guarantee. The whole operation is performed atomically. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/testAndSwapUint.adoc[`testAndSwapUint`] | Conditionally set the value of the specified `atomicUint` to the specified `swapValue` if and only if the value of `atomicUint` equals the value of the specified `compareValue`, and return the initial value of `atomicUint`, providing the sequential consistency memory ordering guarantee. The whole operation is performed atomically. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/testAndSwapUint64.adoc[`testAndSwapUint64`] | Conditionally set the value of the specified `atomicUint` to the specified `swapValue` if and only if the value of `atomicUint` equals the value of the specified `compareValue`, and return the initial value of `atomicUint`, providing the sequential consistency memory ordering guarantee. The whole operation is performed atomically. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint64-00/testAndSwapUint64AcqRel.adoc[`testAndSwapUint64AcqRel`] | Conditionally set the value of the specified `atomicUint` to the specified `swapValue` if and only if the value of `atomicUint` equals the value of the specified `compareValue`, and return the initial value of `atomicUint`, providing the acquire/release memory ordering guarantee. The whole operation is performed atomically. | xref:BloombergLP/bsls/AtomicOperations_DefaultUint-0d7/testAndSwapUintAcqRel.adoc[`testAndSwapUintAcqRel`] | Conditionally set the value of the specified `atomicUint` to the specified `swapValue` if and only if the value of `atomicInt` equals the value of the specified `compareValue`, and return the initial value of `atomicUint`, providing the acquire/release memory ordering guarantee. The whole operation is performed atomically. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#