__stosw
Microsoft Specific
Generates a store string instruction (rep stosw
).
Syntax
void __stosw(
unsigned short* Destination,
unsigned short Data,
size_t Count
);
Parameters
Destination
[out] The destination of the operation.
Data
[in] The data to store.
Count
[in] The length of the block of words to write.
Requirements
Intrinsic | Architecture |
---|---|
__stosw |
x86, x64 |
Header file <intrin.h>
Remarks
The result is that the word Data is written into a block of Count words in the Destination string.
This routine is only available as an intrinsic.
Example
// stosw.c
// processor: x86, x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(__stosw)
int main()
{
unsigned short val = 128;
unsigned short a[100];
memset(a, 0, sizeof(a));
__stosw(a+10, val, 2);
printf_s("%u %u %u %u", a[9], a[10], a[11], a[12]);
}
0 128 128 0
END Microsoft Specific