Vector.Widen Method

Definition

Overloads

Name Description
Widen(Vector<UInt16>, Vector<UInt32>, Vector<UInt32>)

Widens a Vector<UInt16> into two Vector<UInt32> instances.

Widen(Vector<Single>, Vector<Double>, Vector<Double>)

Widens a Vector<Single> into two Vector<Double> instances.

Widen(Vector<SByte>, Vector<Int16>, Vector<Int16>)

Widens a Vector<SByte> into two Vector<Int16> instances.

Widen(Vector<UInt32>, Vector<UInt64>, Vector<UInt64>)

Widens a Vector<UInt32> into two Vector<UInt64> instances.

Widen(Vector<Int16>, Vector<Int32>, Vector<Int32>)

Widens a Vector<Int16> into two Vector<Int32> instances.

Widen(Vector<Byte>, Vector<UInt16>, Vector<UInt16>)

Widens a Vector<Byte> into two Vector<UInt16> instances.

Widen(Vector<Int32>, Vector<Int64>, Vector<Int64>)

Widens a Vector<Int32> into two Vector<Int64> instances.

Widen(Vector<UInt16>, Vector<UInt32>, Vector<UInt32>)

Important

This API is not CLS-compliant.

Widens a Vector<UInt16> into two Vector<UInt32> instances.

public:
 static void Widen(System::Numerics::Vector<System::UInt16> source, [Runtime::InteropServices::Out] System::Numerics::Vector<System::UInt32> % dest1, [Runtime::InteropServices::Out] System::Numerics::Vector<System::UInt32> % dest2);
[System.CLSCompliant(false)]
public static void Widen(System.Numerics.Vector<ushort> source, out System.Numerics.Vector<uint> dest1, out System.Numerics.Vector<uint> dest2);
[<System.CLSCompliant(false)>]
static member Widen : System.Numerics.Vector<uint16> * Vector * Vector -> unit
Public Shared Sub Widen (source As Vector(Of UShort), ByRef dest1 As Vector(Of UInteger), ByRef dest2 As Vector(Of UInteger))

Parameters

source
Vector<UInt16>

The source vector whose elements are widened into the outputs.

dest1low
Vector<UInt32>

The first output vector, whose elements will contain the widened elements from lower indices in the source vector.

dest2high
Vector<UInt32>

The second output vector, whose elements will contain the widened elements from higher indices in the source vector.

Attributes

Applies to

Widen(Vector<Single>, Vector<Double>, Vector<Double>)

Widens a Vector<Single> into two Vector<Double> instances.

public:
 static void Widen(System::Numerics::Vector<float> source, [Runtime::InteropServices::Out] System::Numerics::Vector<double> % dest1, [Runtime::InteropServices::Out] System::Numerics::Vector<double> % dest2);
public static void Widen(System.Numerics.Vector<float> source, out System.Numerics.Vector<double> dest1, out System.Numerics.Vector<double> dest2);
static member Widen : System.Numerics.Vector<single> * Vector * Vector -> unit
Public Shared Sub Widen (source As Vector(Of Single), ByRef dest1 As Vector(Of Double), ByRef dest2 As Vector(Of Double))

Parameters

source
Vector<Single>

The source vector whose elements are widened into the outputs.

dest1low
Vector<Double>

The first output vector, whose elements will contain the widened elements from lower indices in the source vector.

dest2high
Vector<Double>

The second output vector, whose elements will contain the widened elements from higher indices in the source vector.

Applies to

Widen(Vector<SByte>, Vector<Int16>, Vector<Int16>)

Important

This API is not CLS-compliant.

Widens a Vector<SByte> into two Vector<Int16> instances.

public:
 static void Widen(System::Numerics::Vector<System::SByte> source, [Runtime::InteropServices::Out] System::Numerics::Vector<short> % dest1, [Runtime::InteropServices::Out] System::Numerics::Vector<short> % dest2);
[System.CLSCompliant(false)]
public static void Widen(System.Numerics.Vector<sbyte> source, out System.Numerics.Vector<short> dest1, out System.Numerics.Vector<short> dest2);
[<System.CLSCompliant(false)>]
static member Widen : System.Numerics.Vector<sbyte> * Vector * Vector -> unit
Public Shared Sub Widen (source As Vector(Of SByte), ByRef dest1 As Vector(Of Short), ByRef dest2 As Vector(Of Short))

Parameters

source
Vector<SByte>

The source vector whose elements are widened into the outputs.

dest1low
Vector<Int16>

The first output vector, whose elements will contain the widened elements from lower indices in the source vector.

dest2high
Vector<Int16>

The second output vector, whose elements will contain the widened elements from higher indices in the source vector.

Attributes

Applies to

Widen(Vector<UInt32>, Vector<UInt64>, Vector<UInt64>)

Important

This API is not CLS-compliant.

Widens a Vector<UInt32> into two Vector<UInt64> instances.

public:
 static void Widen(System::Numerics::Vector<System::UInt32> source, [Runtime::InteropServices::Out] System::Numerics::Vector<System::UInt64> % dest1, [Runtime::InteropServices::Out] System::Numerics::Vector<System::UInt64> % dest2);
[System.CLSCompliant(false)]
public static void Widen(System.Numerics.Vector<uint> source, out System.Numerics.Vector<ulong> dest1, out System.Numerics.Vector<ulong> dest2);
[<System.CLSCompliant(false)>]
static member Widen : System.Numerics.Vector<uint32> * Vector * Vector -> unit
Public Shared Sub Widen (source As Vector(Of UInteger), ByRef dest1 As Vector(Of ULong), ByRef dest2 As Vector(Of ULong))

Parameters

source
Vector<UInt32>

The source vector whose elements are widened into the outputs.

dest1low
Vector<UInt64>

The first output vector, whose elements will contain the widened elements from lower indices in the source vector.

dest2high
Vector<UInt64>

The second output vector, whose elements will contain the widened elements from higher indices in the source vector.

Attributes

Applies to

Widen(Vector<Int16>, Vector<Int32>, Vector<Int32>)

Widens a Vector<Int16> into two Vector<Int32> instances.

public:
 static void Widen(System::Numerics::Vector<short> source, [Runtime::InteropServices::Out] System::Numerics::Vector<int> % dest1, [Runtime::InteropServices::Out] System::Numerics::Vector<int> % dest2);
public static void Widen(System.Numerics.Vector<short> source, out System.Numerics.Vector<int> dest1, out System.Numerics.Vector<int> dest2);
static member Widen : System.Numerics.Vector<int16> * Vector * Vector -> unit
Public Shared Sub Widen (source As Vector(Of Short), ByRef dest1 As Vector(Of Integer), ByRef dest2 As Vector(Of Integer))

Parameters

source
Vector<Int16>

The source vector whose elements are widened into the outputs.

dest1low
Vector<Int32>

The first output vector, whose elements will contain the widened elements from lower indices in the source vector.

dest2high
Vector<Int32>

The second output vector, whose elements will contain the widened elements from higher indices in the source vector.

Applies to

Widen(Vector<Byte>, Vector<UInt16>, Vector<UInt16>)

Important

This API is not CLS-compliant.

Widens a Vector<Byte> into two Vector<UInt16> instances.

public:
 static void Widen(System::Numerics::Vector<System::Byte> source, [Runtime::InteropServices::Out] System::Numerics::Vector<System::UInt16> % dest1, [Runtime::InteropServices::Out] System::Numerics::Vector<System::UInt16> % dest2);
[System.CLSCompliant(false)]
public static void Widen(System.Numerics.Vector<byte> source, out System.Numerics.Vector<ushort> dest1, out System.Numerics.Vector<ushort> dest2);
[<System.CLSCompliant(false)>]
static member Widen : System.Numerics.Vector<byte> * Vector * Vector -> unit
Public Shared Sub Widen (source As Vector(Of Byte), ByRef dest1 As Vector(Of UShort), ByRef dest2 As Vector(Of UShort))

Parameters

source
Vector<Byte>

The source vector whose elements are widened into the outputs.

dest1low
Vector<UInt16>

When this method returns, contains the widened elements from lower indices in the source vector.

dest2high
Vector<UInt16>

>When this method returns, contains the widened elements from higher indices in the source vector.

Attributes

Applies to

Widen(Vector<Int32>, Vector<Int64>, Vector<Int64>)

Widens a Vector<Int32> into two Vector<Int64> instances.

public:
 static void Widen(System::Numerics::Vector<int> source, [Runtime::InteropServices::Out] System::Numerics::Vector<long> % dest1, [Runtime::InteropServices::Out] System::Numerics::Vector<long> % dest2);
public static void Widen(System.Numerics.Vector<int> source, out System.Numerics.Vector<long> dest1, out System.Numerics.Vector<long> dest2);
static member Widen : System.Numerics.Vector<int> * Vector * Vector -> unit
Public Shared Sub Widen (source As Vector(Of Integer), ByRef dest1 As Vector(Of Long), ByRef dest2 As Vector(Of Long))

Parameters

source
Vector<Int32>

The source vector whose elements are widened into the outputs.

dest1low
Vector<Int64>

The first output vector, whose elements will contain the widened elements from lower indices in the source vector.

dest2high
Vector<Int64>

The second output vector, whose elements will contain the widened elements from higher indices in the source vector.

Applies to