__stosw
Microsoft 专用
生成存储字符串指令 (rep stosw
)。
语法
void __stosw(
unsigned short* Destination,
unsigned short Data,
size_t Count
);
参数
目标
[out] 操作的目标。
数据
[in] 要存储的数据。
计数
[in] 要写入的字块的长度。
要求
Intrinsic | 体系结构 |
---|---|
__stosw |
x86、x64 |
头文件<intrin.h>
备注
结果是将字“Data”写入到“Destination”字符串中“Count”字块。
此例程仅可用作内部函数。
示例
// 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
结束 Microsoft 专用