__movsw
Microsoft 固有の仕様
文字列の移動命令 (rep movsw
) を生成します。
構文
void __movsw(
unsigned short* Destination,
unsigned short* Source,
size_t Count
);
パラメーター
宛先
[out] 操作の宛先。
ソース
[in] 操作のソース。
Count
[in] コピーするワードの数。
要件
Intrinsic | Architecture |
---|---|
__movsw |
x86、x64 |
ヘッダー ファイル<intrin.h>
解説
結果として、Source が指す最初の Count 個のワードが Destination 文字列にコピーされます。
このルーチンは、組み込みとしてのみ使用できます。
例
// movsw.cpp
// processor: x86, x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(__movsw)
int main()
{
unsigned short s1[10];
unsigned short s2[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
__movsw(s1, s2, 10);
for (int i = 0; i < 10; i++)
printf_s("%d ", s1[i]);
printf_s("\n");
}
0 1 2 3 4 5 6 7 8 9
Microsoft 固有の仕様はここまで