summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2022-03-09 18:38:00 -0500
committerGitHub <noreply@github.com>2022-03-09 18:38:00 -0500
commitf67d929c24babc302eb2807251fc09b084abac2e (patch)
treef4b3a47d5165e4e890c9d68e846e2aa238dbb1e0 /docs
parent727c7d2b824913b3ae263243421ea79ca4940eb8 (diff)
Initial support for documentation extraction in C++ (#2156)
* #include an absolute path didn't work - because paths were taken to always be relative. * Split doc extractor such that can be used in C++ extractor. * Compiles. Update the stdlib docs. * Fix issue on release builds. * Add support for extracting documentation to C++ extractor. * Dump out markup. Make enum value backing type take tokens. * Node::Type -> Node::Kind * More improvements around Node::Type -> Node::Kind
Diffstat (limited to 'docs')
-rw-r--r--docs/stdlib-doc.md49
1 files changed, 49 insertions, 0 deletions
diff --git a/docs/stdlib-doc.md b/docs/stdlib-doc.md
index 126a4555e..f2489bb97 100644
--- a/docs/stdlib-doc.md
+++ b/docs/stdlib-doc.md
@@ -57578,6 +57578,8 @@ T OutputPatch<T, N:int>.subscript(uint index);
* `InterlockedOrU64`
* `InterlockedXorU64`
* `InterlockedExchangeU64`
+* `InterlockedAdd64`
+* `InterlockedCompareExchange64`
* `InterlockedAdd`
* `InterlockedAnd`
* `InterlockedCompareExchange`
@@ -57901,6 +57903,53 @@ uint64_t RWByteAddressBuffer.InterlockedExchangeU64(
* `value`
--------------------------------------------------------------------------------
+# `RWByteAddressBuffer.InterlockedAdd64`
+
+## Signature
+
+```
+void RWByteAddressBuffer.InterlockedAdd64(
+ uint byteAddress,
+ int64_t valueToAdd,
+ out int64_t outOriginalValue);
+void RWByteAddressBuffer.InterlockedAdd64(
+ uint byteAddress,
+ uint64_t valueToAdd,
+ out uint64_t outOriginalValue);
+```
+
+## Parameters
+
+* `byteAddress`
+* `valueToAdd`
+* `outOriginalValue`
+
+--------------------------------------------------------------------------------
+# `RWByteAddressBuffer.InterlockedCompareExchange64`
+
+## Signature
+
+```
+void RWByteAddressBuffer.InterlockedCompareExchange64(
+ uint byteAddress,
+ int64_t compareValue,
+ int64_t value,
+ out int64_t outOriginalValue);
+void RWByteAddressBuffer.InterlockedCompareExchange64(
+ uint byteAddress,
+ uint64_t compareValue,
+ uint64_t value,
+ out uint64_t outOriginalValue);
+```
+
+## Parameters
+
+* `byteAddress`
+* `compareValue`
+* `value`
+* `outOriginalValue`
+
+--------------------------------------------------------------------------------
# `RWByteAddressBuffer.InterlockedAdd`
## Signature