Skip to content

Commit 4239201

Browse files
authored
Merge pull request #4737 from MicrosoftDocs/main
1/05 AM Publish
2 parents 744ab58 + 9d21a62 commit 4239201

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

docs/build/reference/integritycheck-require-signature-check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Specifies that the digital signature of the binary image must be checked at load
1313

1414
By default, **`/INTEGRITYCHECK`** is off.
1515

16-
The **`/INTEGRITYCHECK`** linker option sets a flag, `IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY`, in the PE header of the DLL file or executable file. This flag tells the memory manager to check for a digital signature in order to load the image in Windows. This option must be set for both 32-bit and 64-bit DLLs that implement kernel-mode code loaded by certain Windows features. It's recommended for all device drivers on Windows Vista, Windows Server 2008, and all later versions of Windows and Windows Server. Versions of Windows prior to Windows Vista ignore this flag. For more information, see [Forced Integrity Signing of Portable Executable (PE) files](https://social.technet.microsoft.com/wiki/contents/articles/255.forced-integrity-signing-of-portable-executable-pe-files.aspx).
16+
The **`/INTEGRITYCHECK`** linker option sets a flag, `IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY`, in the PE header of the DLL file or executable file. This flag tells the memory manager to check for a digital signature in order to load the image in Windows. This option must be set for both 32-bit and 64-bit DLLs that are loaded by certain Windows features. It's recommended for all device drivers on Windows Vista, Windows Server 2008, and all later versions of Windows and Windows Server. Versions of Windows prior to Windows Vista ignore this flag. For more information, see [Forced Integrity Signing of Portable Executable (PE) files](https://social.technet.microsoft.com/wiki/contents/articles/255.forced-integrity-signing-of-portable-executable-pe-files.aspx).
1717

1818
### Signing `/INTEGRITYCHECK` files
1919

docs/intrinsics/mm-stream-ss.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
description: "Learn more about: _mm_stream_ss"
33
title: "_mm_stream_ss"
4-
ms.date: "09/02/2019"
4+
ms.date: 01/04/2023
55
f1_keywords: ["_mm_stream_ss"]
66
helpviewer_keywords: ["movntss instruction", "_mm_stream_ss intrinsic"]
77
ms.assetid: c53dffe9-0dfe-4063-85d3-e8987b870fce
88
---
9-
# _mm_stream_ss
9+
# `_mm_stream_ss`
1010

1111
**Microsoft Specific**
1212

@@ -35,9 +35,9 @@ None.
3535

3636
## Requirements
3737

38-
|Intrinsic|Architecture|
39-
|---------------|------------------|
40-
|`_mm_stream_ss`|SSE4a|
38+
| Intrinsic | Architecture |
39+
|---|---|
40+
| `_mm_stream_ss` | SSE4a |
4141

4242
**Header file** \<intrin.h>
4343

@@ -70,7 +70,7 @@ int main()
7070
vals.m128_f32[3] = 3.;
7171
_mm_stream_ss(&f[3], vals);
7272
cout << "f[0] = " << f[0] << ", f[1] = " << f[1] << endl;
73-
cout << "f[1] = " << f[1] << ", f[3] = " << f[3] << endl;
73+
cout << "f[2] = " << f[2] << ", f[3] = " << f[3] << endl;
7474
}
7575
```
7676

@@ -85,8 +85,8 @@ Portions Copyright 2007 by Advanced Micro Devices, Inc. All rights reserved. Rep
8585

8686
## See also
8787

88-
[_mm_stream_sd](../intrinsics/mm-stream-sd.md)\
89-
[_mm_stream_ps](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_stream_ps)\
90-
[_mm_store_ss](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_store_ss)\
91-
[_mm_sfence](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_sfence)\
88+
[`_mm_stream_sd`](../intrinsics/mm-stream-sd.md)\
89+
[`_mm_stream_ps`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_stream_ps)\
90+
[`_mm_store_ss`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_store_ss)\
91+
[`_mm_sfence`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_sfence)\
9292
[Compiler intrinsics](../intrinsics/compiler-intrinsics.md)

0 commit comments

Comments
 (0)