__stosw
Microsoft'a Özgü
Bir depo dizesi yönergesi (rep stosw
) oluşturur.
Sözdizimi
void __stosw(
unsigned short* Destination,
unsigned short Data,
size_t Count
);
Parametreler
Hedef
[out] İşlemin hedefi.
Veri
[in] Depoacak veriler.
Sayı
[in] Yazacak sözcük bloğunun uzunluğu.
Gereksinimler
Içsel | Mimari |
---|---|
__stosw |
x86, x64 |
intrin.h üst bilgi dosyası<>
Açıklamalar
Sonuç, Data sözcüğünün Hedef dizedeki Count sözcüklerinden oluşan bir bloğuna yazıldığını gösterir.
Bu yordam yalnızca iç yordam olarak kullanılabilir.
Örnek
// 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'a Özgü