AdvSimd.Negate 方法

定义

重载

Negate(Vector128<Int16>)

int16x8_t vnegq_s16 (int16x8_t a)

A32:VNEG.S16 Qd、Qm

A64:NEG Vd.8H、Vn.8H

Negate(Vector128<Int32>)

int32x4_t vnegq_s32 (int32x4_t a)

A32:VNEG.S32 Qd、Qm

A64:NEG Vd.4S、Vn.4S

Negate(Vector128<SByte>)

int8x16_t vnegq_s8 (int8x16_t a)

A32:VNEG.S8 Qd、Qm

A64:NEG Vd.16B、Vn.16B

Negate(Vector128<Single>)

float32x4_t vnegq_f32 (float32x4_t a)

A32:VNEG.F32 Qd、Qm

A64:FNEG Vd.4S、Vn.4S

Negate(Vector64<Int16>)

int16x4_t vneg_s16 (int16x4_t a)

A32:VNEG.S16 Dd、Dm

A64:NEG Vd.4H、Vn.4H

Negate(Vector64<Int32>)

int32x2_t vneg_s32 (int32x2_t a)

A32:VNEG.S32 Dd、Dm

A64:NEG Vd.2S、Vn.2S

Negate(Vector64<SByte>)

int8x8_t vneg_s8 (int8x8_t a)

A32:VNEG.S8 Dd、Dm

A64:NEG Vd.8B、Vn.8B

Negate(Vector64<Single>)

float32x2_t vneg_f32 (float32x2_t a)

A32:VNEG.F32 Dd、Dm

A64:FNEG Vd.2S、Vn.2S

Negate(Vector128<Int16>)

Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs

int16x8_t vnegq_s16 (int16x8_t a)

A32:VNEG.S16 Qd、Qm

A64:NEG Vd.8H、Vn.8H

public:
 static System::Runtime::Intrinsics::Vector128<short> Negate(System::Runtime::Intrinsics::Vector128<short> value);
public static System.Runtime.Intrinsics.Vector128<short> Negate (System.Runtime.Intrinsics.Vector128<short> value);
static member Negate : System.Runtime.Intrinsics.Vector128<int16> -> System.Runtime.Intrinsics.Vector128<int16>
Public Shared Function Negate (value As Vector128(Of Short)) As Vector128(Of Short)

参数

value
Vector128<Int16>

返回

适用于

Negate(Vector128<Int32>)

Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs

int32x4_t vnegq_s32 (int32x4_t a)

A32:VNEG.S32 Qd、Qm

A64:NEG Vd.4S、Vn.4S

public:
 static System::Runtime::Intrinsics::Vector128<int> Negate(System::Runtime::Intrinsics::Vector128<int> value);
public static System.Runtime.Intrinsics.Vector128<int> Negate (System.Runtime.Intrinsics.Vector128<int> value);
static member Negate : System.Runtime.Intrinsics.Vector128<int> -> System.Runtime.Intrinsics.Vector128<int>
Public Shared Function Negate (value As Vector128(Of Integer)) As Vector128(Of Integer)

参数

value
Vector128<Int32>

返回

适用于

Negate(Vector128<SByte>)

Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs

int8x16_t vnegq_s8 (int8x16_t a)

A32:VNEG.S8 Qd、Qm

A64:NEG Vd.16B、Vn.16B

public:
 static System::Runtime::Intrinsics::Vector128<System::SByte> Negate(System::Runtime::Intrinsics::Vector128<System::SByte> value);
public static System.Runtime.Intrinsics.Vector128<sbyte> Negate (System.Runtime.Intrinsics.Vector128<sbyte> value);
static member Negate : System.Runtime.Intrinsics.Vector128<sbyte> -> System.Runtime.Intrinsics.Vector128<sbyte>
Public Shared Function Negate (value As Vector128(Of SByte)) As Vector128(Of SByte)

参数

value
Vector128<SByte>

返回

适用于

Negate(Vector128<Single>)

Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs

float32x4_t vnegq_f32 (float32x4_t a)

A32:VNEG.F32 Qd、Qm

A64:FNEG Vd.4S、Vn.4S

public:
 static System::Runtime::Intrinsics::Vector128<float> Negate(System::Runtime::Intrinsics::Vector128<float> value);
public static System.Runtime.Intrinsics.Vector128<float> Negate (System.Runtime.Intrinsics.Vector128<float> value);
static member Negate : System.Runtime.Intrinsics.Vector128<single> -> System.Runtime.Intrinsics.Vector128<single>
Public Shared Function Negate (value As Vector128(Of Single)) As Vector128(Of Single)

参数

value
Vector128<Single>

返回

适用于

Negate(Vector64<Int16>)

Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs

int16x4_t vneg_s16 (int16x4_t a)

A32:VNEG.S16 Dd、Dm

A64:NEG Vd.4H、Vn.4H

public:
 static System::Runtime::Intrinsics::Vector64<short> Negate(System::Runtime::Intrinsics::Vector64<short> value);
public static System.Runtime.Intrinsics.Vector64<short> Negate (System.Runtime.Intrinsics.Vector64<short> value);
static member Negate : System.Runtime.Intrinsics.Vector64<int16> -> System.Runtime.Intrinsics.Vector64<int16>
Public Shared Function Negate (value As Vector64(Of Short)) As Vector64(Of Short)

参数

value
Vector64<Int16>

返回

适用于

Negate(Vector64<Int32>)

Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs

int32x2_t vneg_s32 (int32x2_t a)

A32:VNEG.S32 Dd、Dm

A64:NEG Vd.2S、Vn.2S

public:
 static System::Runtime::Intrinsics::Vector64<int> Negate(System::Runtime::Intrinsics::Vector64<int> value);
public static System.Runtime.Intrinsics.Vector64<int> Negate (System.Runtime.Intrinsics.Vector64<int> value);
static member Negate : System.Runtime.Intrinsics.Vector64<int> -> System.Runtime.Intrinsics.Vector64<int>
Public Shared Function Negate (value As Vector64(Of Integer)) As Vector64(Of Integer)

参数

value
Vector64<Int32>

返回

适用于

Negate(Vector64<SByte>)

Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs

int8x8_t vneg_s8 (int8x8_t a)

A32:VNEG.S8 Dd、Dm

A64:NEG Vd.8B、Vn.8B

public:
 static System::Runtime::Intrinsics::Vector64<System::SByte> Negate(System::Runtime::Intrinsics::Vector64<System::SByte> value);
public static System.Runtime.Intrinsics.Vector64<sbyte> Negate (System.Runtime.Intrinsics.Vector64<sbyte> value);
static member Negate : System.Runtime.Intrinsics.Vector64<sbyte> -> System.Runtime.Intrinsics.Vector64<sbyte>
Public Shared Function Negate (value As Vector64(Of SByte)) As Vector64(Of SByte)

参数

value
Vector64<SByte>

返回

适用于

Negate(Vector64<Single>)

Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs
Source:
AdvSimd.PlatformNotSupported.cs

float32x2_t vneg_f32 (float32x2_t a)

A32:VNEG.F32 Dd、Dm

A64:FNEG Vd.2S、Vn.2S

public:
 static System::Runtime::Intrinsics::Vector64<float> Negate(System::Runtime::Intrinsics::Vector64<float> value);
public static System.Runtime.Intrinsics.Vector64<float> Negate (System.Runtime.Intrinsics.Vector64<float> value);
static member Negate : System.Runtime.Intrinsics.Vector64<single> -> System.Runtime.Intrinsics.Vector64<single>
Public Shared Function Negate (value As Vector64(Of Single)) As Vector64(Of Single)

参数

value
Vector64<Single>

返回

适用于