次の方法で共有


Vector.StoreAlignedNonTemporal メソッド

定義

オーバーロード

StoreAlignedNonTemporal(Vector2, Single*)
StoreAlignedNonTemporal(Vector3, Single*)
StoreAlignedNonTemporal(Vector4, Single*)
StoreAlignedNonTemporal<T>(Vector<T>, T*)

指定した配置先にベクターを格納します。

StoreAlignedNonTemporal(Vector2, Single*)

重要

この API は CLS 準拠ではありません。

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreAlignedNonTemporal(System::Numerics::Vector2 source, float* destination);
[System.CLSCompliant(false)]
public static void StoreAlignedNonTemporal(this System.Numerics.Vector2 source, float* destination);
[<System.CLSCompliant(false)>]
static member StoreAlignedNonTemporal : System.Numerics.Vector2 * nativeptr<single> -> unit

パラメーター

source
Vector2
destination
Single*
属性

適用対象

StoreAlignedNonTemporal(Vector3, Single*)

重要

この API は CLS 準拠ではありません。

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreAlignedNonTemporal(System::Numerics::Vector3 source, float* destination);
[System.CLSCompliant(false)]
public static void StoreAlignedNonTemporal(this System.Numerics.Vector3 source, float* destination);
[<System.CLSCompliant(false)>]
static member StoreAlignedNonTemporal : System.Numerics.Vector3 * nativeptr<single> -> unit

パラメーター

source
Vector3
destination
Single*
属性

適用対象

StoreAlignedNonTemporal(Vector4, Single*)

重要

この API は CLS 準拠ではありません。

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreAlignedNonTemporal(System::Numerics::Vector4 source, float* destination);
[System.CLSCompliant(false)]
public static void StoreAlignedNonTemporal(this System.Numerics.Vector4 source, float* destination);
[<System.CLSCompliant(false)>]
static member StoreAlignedNonTemporal : System.Numerics.Vector4 * nativeptr<single> -> unit

パラメーター

source
Vector4
destination
Single*
属性

適用対象

StoreAlignedNonTemporal<T>(Vector<T>, T*)

ソース:
Vector.cs
ソース:
Vector.cs

重要

この API は CLS 準拠ではありません。

指定した配置先にベクターを格納します。

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreAlignedNonTemporal(System::Numerics::Vector<T> source, T* destination);
[System.CLSCompliant(false)]
public static void StoreAlignedNonTemporal<T>(this System.Numerics.Vector<T> source, T* destination);
[<System.CLSCompliant(false)>]
static member StoreAlignedNonTemporal : System.Numerics.Vector<'T> * nativeptr<'T> -> unit

型パラメーター

T

ベクター内の要素の型。

パラメーター

source
Vector<T>

格納されるベクター。

destination
T*

格納される source 配置先。

属性

例外

source の型 (T) がサポートされていません。

注釈

このメソッドは、特定のプラットフォームでキャッシュをバイパスする場合があります。

適用対象