__movsd
Microsoft-spezifisch
Generiert eine Move String (rep movsd
) -Anweisung.
Syntax
void __movsd(
unsigned long* Destination,
unsigned long* Source,
size_t Count
);
Parameter
Ziel
[out] Das Ziel des Vorgangs.
Quelle
[in] Die Quelle des Vorgangs.
Count
[in] Die Anzahl der zu kopierenden Doublewords.
Anforderungen
Intrinsic | Aufbau |
---|---|
__movsd |
x86, x64 |
Headerdatei<intrin.h>
Hinweise
Das Ergebnis ist, dass die ersten von Source hervorgehobenen Doublewords count in die Destination-Zeichenfolge kopiert werden.
Diese Routine ist nur als systeminterne Funktion verfügbar.
Beispiel
// movsd.cpp
// processor: x86, x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(__movsd)
int main()
{
unsigned long a1[10];
unsigned long a2[10] = {950, 850, 750, 650, 550, 450, 350,
250, 150, 50};
__movsd(a1, a2, 10);
for (int i = 0; i < 10; i++)
printf_s("%d ", a1[i]);
printf_s("\n");
}
950 850 750 650 550 450 350 250 150 50
Ende Microsoft-spezifisch