Skip to content

Commit 1b6400d

Browse files
Merge pull request #5066 from TylerMSFT/github
fix hex representation
2 parents 453a61c + 3111712 commit 1b6400d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/intrinsics/sentinel-conversion-functions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: Sentinel floating-point conversion functions"
33
title: "Sentinel conversion functions"
4-
ms.date: 11/18/2021
4+
ms.date: 10/16/2023
55
f1_keywords: ["intrin/_cvt_dtoi_sent", "intrin/_cvt_dtoll_sent", "intrin/_cvt_dtoui_sent", "intrin/_cvt_dtoull_sent", "intrin/_cvt_ftoi_sent", "intrin/_cvt_ftoll_sent", "intrin/_cvt_ftoui_sent", "intrin/_cvt_ftoull_sent"]
66
helpviewer_keywords: ["_cvt_dtoi_sent", "_cvt_dtoll_sent", "_cvt_dtoui_sent", "_cvt_dtoull_sent", "_cvt_ftoi_sent", "_cvt_ftoll_sent", "_cvt_ftoui_sent", "_cvt_ftoull_sent"]
77
---
@@ -35,20 +35,20 @@ The integer-typed result of the conversion.
3535
3636
## Requirements
3737
38-
**Header**: \<intrin.h>
38+
**Header**: `<intrin.h>`
3939
4040
**Architecture**: x86, x64
4141
4242
## Remarks
4343
44-
These intrinsics are floating-point to integral type conversion functions that use a *sentinel* strategy: They return the result value farthest from zero as a proxy sentinel value for NaN. Any invalid conversion returns this sentinel value. The specific sentinel value returned depends on the result type.
44+
These intrinsics are floating-point to integral type conversion functions that use a *sentinel* strategy: They return the result value farthest from zero as a proxy sentinel value for `NaN`. Any invalid conversion returns this sentinel value. The specific sentinel value returned depends on the result type.
4545
4646
| Result type | Sentinel | *`<limits.h>`* constant |
4747
|--|--|
48-
| `int` | -2147483648 (0xFFFFFFFF) | `INT_MIN` |
48+
| `int` | -2147483648 (0x80000000) | `INT_MIN` |
4949
| `unsigned int` | 4294967295 (0xFFFFFFFF) | `UINT_MAX` |
50-
| `long long` | -9223372036854775808 (0xFFFFFFFF'FFFFFFFF) | `LLONG_MIN` |
51-
| `unsigned long long` | 18446744073709551615 (0xFFFFFFFF'FFFFFFFF) | `ULLONG_MAX` |
50+
| `long long` | -9223372036854775808 (0x8000000000000000) | `LLONG_MIN` |
51+
| `unsigned long long` | 18446744073709551615 (0xFFFFFFFFFFFFFFFF) | `ULLONG_MAX` |
5252
5353
The sentinel conversion intrinsics are available starting in Visual Studio 2019 version 16.10.
5454

0 commit comments

Comments
 (0)