Method ShiftRightLogical_Core
- Namespace
- Zyl.VectorTraits.Impl.AVector
- Assembly
- VectorTraits.dll
ShiftRightLogical_Core(Vector<sbyte>, int, Vector<sbyte>, Vector<sbyte>)
Core calculation for shifts (unsigned) each element of a vector right by the specified amount. (将向量的每个无符号元素逻辑右移指定量的核心计算). Its arguments are derived from ShiftRightLogical_Args (其参数来源于 ShiftRightLogical_Args).
Mnemonic: rt[i] := value[i] >>> shiftAmount, shiftAmount &= (T.BitSize-1).
[CLSCompliant(false)]
public override Vector<sbyte> ShiftRightLogical_Core(Vector<sbyte> value, int shiftAmount, Vector<sbyte> args0, Vector<sbyte> args1)
Parameters
valueVector<sbyte>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmountintThe number of bits by which to shift each element (每个元素的移位位数).
args0Vector<sbyte>Arguments 0 (参数0). Derived from ShiftRightLogical_Args .
args1Vector<sbyte>Arguments 1 (参数1). Derived from ShiftRightLogical_Args .
Returns
- See Also
ShiftRightLogical_Core(Vector<byte>, int, Vector<byte>, Vector<byte>)
Core calculation for shifts (unsigned) each element of a vector right by the specified amount. (将向量的每个无符号元素逻辑右移指定量的核心计算). Its arguments are derived from ShiftRightLogical_Args (其参数来源于 ShiftRightLogical_Args).
Mnemonic: rt[i] := value[i] >>> shiftAmount, shiftAmount &= (T.BitSize-1).
public override Vector<byte> ShiftRightLogical_Core(Vector<byte> value, int shiftAmount, Vector<byte> args0, Vector<byte> args1)
Parameters
valueVector<byte>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmountintThe number of bits by which to shift each element (每个元素的移位位数).
args0Vector<byte>Arguments 0 (参数0). Derived from ShiftRightLogical_Args .
args1Vector<byte>Arguments 1 (参数1). Derived from ShiftRightLogical_Args .
Returns
- See Also
ShiftRightLogical_Core(Vector<int>, int, Vector<int>, Vector<int>)
Core calculation for shifts (unsigned) each element of a vector right by the specified amount. (将向量的每个无符号元素逻辑右移指定量的核心计算). Its arguments are derived from ShiftRightLogical_Args (其参数来源于 ShiftRightLogical_Args).
Mnemonic: rt[i] := value[i] >>> shiftAmount, shiftAmount &= (T.BitSize-1).
public override Vector<int> ShiftRightLogical_Core(Vector<int> value, int shiftAmount, Vector<int> args0, Vector<int> args1)
Parameters
valueVector<int>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmountintThe number of bits by which to shift each element (每个元素的移位位数).
args0Vector<int>Arguments 0 (参数0). Derived from ShiftRightLogical_Args .
args1Vector<int>Arguments 1 (参数1). Derived from ShiftRightLogical_Args .
Returns
- See Also
ShiftRightLogical_Core(Vector<uint>, int, Vector<uint>, Vector<uint>)
Core calculation for shifts (unsigned) each element of a vector right by the specified amount. (将向量的每个无符号元素逻辑右移指定量的核心计算). Its arguments are derived from ShiftRightLogical_Args (其参数来源于 ShiftRightLogical_Args).
Mnemonic: rt[i] := value[i] >>> shiftAmount, shiftAmount &= (T.BitSize-1).
[CLSCompliant(false)]
public override Vector<uint> ShiftRightLogical_Core(Vector<uint> value, int shiftAmount, Vector<uint> args0, Vector<uint> args1)
Parameters
valueVector<uint>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmountintThe number of bits by which to shift each element (每个元素的移位位数).
args0Vector<uint>Arguments 0 (参数0). Derived from ShiftRightLogical_Args .
args1Vector<uint>Arguments 1 (参数1). Derived from ShiftRightLogical_Args .
Returns
- See Also
ShiftRightLogical_Core(Vector<long>, int, Vector<long>, Vector<long>)
Core calculation for shifts (unsigned) each element of a vector right by the specified amount. (将向量的每个无符号元素逻辑右移指定量的核心计算). Its arguments are derived from ShiftRightLogical_Args (其参数来源于 ShiftRightLogical_Args).
Mnemonic: rt[i] := value[i] >>> shiftAmount, shiftAmount &= (T.BitSize-1).
public override Vector<long> ShiftRightLogical_Core(Vector<long> value, int shiftAmount, Vector<long> args0, Vector<long> args1)
Parameters
valueVector<long>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmountintThe number of bits by which to shift each element (每个元素的移位位数).
args0Vector<long>Arguments 0 (参数0). Derived from ShiftRightLogical_Args .
args1Vector<long>Arguments 1 (参数1). Derived from ShiftRightLogical_Args .
Returns
- See Also
ShiftRightLogical_Core(Vector<ulong>, int, Vector<ulong>, Vector<ulong>)
Core calculation for shifts (unsigned) each element of a vector right by the specified amount. (将向量的每个无符号元素逻辑右移指定量的核心计算). Its arguments are derived from ShiftRightLogical_Args (其参数来源于 ShiftRightLogical_Args).
Mnemonic: rt[i] := value[i] >>> shiftAmount, shiftAmount &= (T.BitSize-1).
[CLSCompliant(false)]
public override Vector<ulong> ShiftRightLogical_Core(Vector<ulong> value, int shiftAmount, Vector<ulong> args0, Vector<ulong> args1)
Parameters
valueVector<ulong>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmountintThe number of bits by which to shift each element (每个元素的移位位数).
args0Vector<ulong>Arguments 0 (参数0). Derived from ShiftRightLogical_Args .
args1Vector<ulong>Arguments 1 (参数1). Derived from ShiftRightLogical_Args .
Returns
- See Also