AdvSimd.ShiftLeftLogicalWideningUpper Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ShiftLeftLogicalWideningUpper(Vector128<Byte>, Byte) |
uint16x8_t vshll_high_n_u8 (uint8x16_t a, const int n) A32: VSHLL.U8 Qd, Dm+1, #n A64: USHLL2 Vd.8H, Vn.16B, #n |
ShiftLeftLogicalWideningUpper(Vector128<Int16>, Byte) |
int32x4_t vshll_high_n_s16 (int16x8_t a, const int n) A32: VSHLL.S16 Qd, Dm+1, #n A64: SSHLL2 Vd.4S, Vn.8H, #n |
ShiftLeftLogicalWideningUpper(Vector128<Int32>, Byte) |
int64x2_t vshll_high_n_s32 (int32x4_t a, const int n) A32: VSHLL.S32 Qd, Dm+1, #n A64: SSHLL2 Vd.2D, Vn.4S, #n |
ShiftLeftLogicalWideningUpper(Vector128<SByte>, Byte) |
int16x8_t vshll_high_n_s8 (int8x16_t a, const int n) A32: VSHLL.S8 Qd, Dm+1, #n A64: SSHLL2 Vd.8H, Vn.16B, #n |
ShiftLeftLogicalWideningUpper(Vector128<UInt16>, Byte) |
uint32x4_t vshll_high_n_u16 (uint16x8_t a, const int n) A32: VSHLL.U16 Qd, Dm+1, #n A64: USHLL2 Vd.4S, Vn.8H, #n |
ShiftLeftLogicalWideningUpper(Vector128<UInt32>, Byte) |
uint64x2_t vshll_high_n_u32 (uint32x4_t a, const int n) A32: VSHLL.U32 Qd, Dm+1, #n A64: USHLL2 Vd.2D, Vn.4S, #n |
ShiftLeftLogicalWideningUpper(Vector128<Byte>, Byte)
uint16x8_t vshll_high_n_u8 (uint8x16_t a, const int n)
A32: VSHLL.U8 Qd, Dm+1, #n
A64: USHLL2 Vd.8H, Vn.16B, #n
public:
static System::Runtime::Intrinsics::Vector128<System::UInt16> ShiftLeftLogicalWideningUpper(System::Runtime::Intrinsics::Vector128<System::Byte> value, System::Byte count);
public static System.Runtime.Intrinsics.Vector128<ushort> ShiftLeftLogicalWideningUpper (System.Runtime.Intrinsics.Vector128<byte> value, byte count);
static member ShiftLeftLogicalWideningUpper : System.Runtime.Intrinsics.Vector128<byte> * byte -> System.Runtime.Intrinsics.Vector128<uint16>
Public Shared Function ShiftLeftLogicalWideningUpper (value As Vector128(Of Byte), count As Byte) As Vector128(Of UShort)
Parameters
- count
- Byte
Returns
Applies to
ShiftLeftLogicalWideningUpper(Vector128<Int16>, Byte)
int32x4_t vshll_high_n_s16 (int16x8_t a, const int n)
A32: VSHLL.S16 Qd, Dm+1, #n
A64: SSHLL2 Vd.4S, Vn.8H, #n
public:
static System::Runtime::Intrinsics::Vector128<int> ShiftLeftLogicalWideningUpper(System::Runtime::Intrinsics::Vector128<short> value, System::Byte count);
public static System.Runtime.Intrinsics.Vector128<int> ShiftLeftLogicalWideningUpper (System.Runtime.Intrinsics.Vector128<short> value, byte count);
static member ShiftLeftLogicalWideningUpper : System.Runtime.Intrinsics.Vector128<int16> * byte -> System.Runtime.Intrinsics.Vector128<int>
Public Shared Function ShiftLeftLogicalWideningUpper (value As Vector128(Of Short), count As Byte) As Vector128(Of Integer)
Parameters
- count
- Byte
Returns
Applies to
ShiftLeftLogicalWideningUpper(Vector128<Int32>, Byte)
int64x2_t vshll_high_n_s32 (int32x4_t a, const int n)
A32: VSHLL.S32 Qd, Dm+1, #n
A64: SSHLL2 Vd.2D, Vn.4S, #n
public:
static System::Runtime::Intrinsics::Vector128<long> ShiftLeftLogicalWideningUpper(System::Runtime::Intrinsics::Vector128<int> value, System::Byte count);
public static System.Runtime.Intrinsics.Vector128<long> ShiftLeftLogicalWideningUpper (System.Runtime.Intrinsics.Vector128<int> value, byte count);
static member ShiftLeftLogicalWideningUpper : System.Runtime.Intrinsics.Vector128<int> * byte -> System.Runtime.Intrinsics.Vector128<int64>
Public Shared Function ShiftLeftLogicalWideningUpper (value As Vector128(Of Integer), count As Byte) As Vector128(Of Long)
Parameters
- count
- Byte
Returns
Applies to
ShiftLeftLogicalWideningUpper(Vector128<SByte>, Byte)
int16x8_t vshll_high_n_s8 (int8x16_t a, const int n)
A32: VSHLL.S8 Qd, Dm+1, #n
A64: SSHLL2 Vd.8H, Vn.16B, #n
public:
static System::Runtime::Intrinsics::Vector128<short> ShiftLeftLogicalWideningUpper(System::Runtime::Intrinsics::Vector128<System::SByte> value, System::Byte count);
public static System.Runtime.Intrinsics.Vector128<short> ShiftLeftLogicalWideningUpper (System.Runtime.Intrinsics.Vector128<sbyte> value, byte count);
static member ShiftLeftLogicalWideningUpper : System.Runtime.Intrinsics.Vector128<sbyte> * byte -> System.Runtime.Intrinsics.Vector128<int16>
Public Shared Function ShiftLeftLogicalWideningUpper (value As Vector128(Of SByte), count As Byte) As Vector128(Of Short)
Parameters
- count
- Byte
Returns
Applies to
ShiftLeftLogicalWideningUpper(Vector128<UInt16>, Byte)
uint32x4_t vshll_high_n_u16 (uint16x8_t a, const int n)
A32: VSHLL.U16 Qd, Dm+1, #n
A64: USHLL2 Vd.4S, Vn.8H, #n
public:
static System::Runtime::Intrinsics::Vector128<System::UInt32> ShiftLeftLogicalWideningUpper(System::Runtime::Intrinsics::Vector128<System::UInt16> value, System::Byte count);
public static System.Runtime.Intrinsics.Vector128<uint> ShiftLeftLogicalWideningUpper (System.Runtime.Intrinsics.Vector128<ushort> value, byte count);
static member ShiftLeftLogicalWideningUpper : System.Runtime.Intrinsics.Vector128<uint16> * byte -> System.Runtime.Intrinsics.Vector128<uint32>
Public Shared Function ShiftLeftLogicalWideningUpper (value As Vector128(Of UShort), count As Byte) As Vector128(Of UInteger)
Parameters
- count
- Byte
Returns
Applies to
ShiftLeftLogicalWideningUpper(Vector128<UInt32>, Byte)
uint64x2_t vshll_high_n_u32 (uint32x4_t a, const int n)
A32: VSHLL.U32 Qd, Dm+1, #n
A64: USHLL2 Vd.2D, Vn.4S, #n
public:
static System::Runtime::Intrinsics::Vector128<System::UInt64> ShiftLeftLogicalWideningUpper(System::Runtime::Intrinsics::Vector128<System::UInt32> value, System::Byte count);
public static System.Runtime.Intrinsics.Vector128<ulong> ShiftLeftLogicalWideningUpper (System.Runtime.Intrinsics.Vector128<uint> value, byte count);
static member ShiftLeftLogicalWideningUpper : System.Runtime.Intrinsics.Vector128<uint32> * byte -> System.Runtime.Intrinsics.Vector128<uint64>
Public Shared Function ShiftLeftLogicalWideningUpper (value As Vector128(Of UInteger), count As Byte) As Vector128(Of ULong)
Parameters
- count
- Byte