namespaceSystem.Runtime.Intrinsics.Arm{publicabstractclassAdvSimd{/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogical(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogical(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogical(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogical(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogical(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogical(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogical(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogical(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogical(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogical(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogical(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogical(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogical(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogical(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRounded(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRounded(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRounded(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRounded(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRounded(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRounded(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRounded(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRounded(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRounded(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRounded(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRounded(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRounded(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL and VSHL/// </summary>Vector64<sbyte>ShiftArithmetic(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmetic(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmetic(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmetic(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmetic(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmetic(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmetic(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL and VRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRounded(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRounded(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRounded(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRounded(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRounded(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRoundedSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRoundedSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRoundedSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRoundedSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL and VQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL and VQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Shift Left Immediate/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHL and VSHL/// </summary>Vector64<byte>ShiftLeftLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of USHR and VSHR/// </summary>Vector64<byte>ShiftRightLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of URSHR and VRSHR/// </summary>Vector64<byte>ShiftRightLogicalRounded(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalRounded(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalRounded(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalRounded(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalRounded(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalRounded(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalRounded(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalRounded(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalRounded(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalRounded(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalRounded(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalRounded(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalRoundedScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalRoundedScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SSHR and VSHR/// </summary>Vector64<sbyte>ShiftRightArithmetic(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmetic(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmetic(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmetic(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmetic(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmetic(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmetic(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticScalar(Vector64<long>value,byteshift);/// <summary>/// Signed Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of SRSHR and VRSHR/// </summary>Vector64<sbyte>ShiftRightArithmeticRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticRounded(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticRounded(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticRounded(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticRounded(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticRounded(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticRoundedScalar(Vector64<long>value,byteshift);/// <summary>/// Unsigned Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of USRA and VSRA/// </summary>Vector64<byte>ShiftRightLogicalAdd(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAdd(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAdd(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAdd(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAdd(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAdd(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAdd(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of SSRA and VSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of URSRA and VRSRA/// </summary>Vector64<byte>ShiftRightLogicalAddRounded(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAddRounded(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAddRounded(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAddRounded(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAddRounded(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAddRounded(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAddRounded(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddRoundedScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of SRSRA and VRSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Signed Saturating Shift Left and Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHL, UQSHL, and VQSHL/// </summary>Vector64<byte>ShiftLeftLogicalSaturate(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogicalSaturate(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogicalSaturate(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturate(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogicalSaturate(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturate(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturate(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogicalSaturate(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogicalSaturate(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturate(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogicalSaturate(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturate(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogicalSaturate(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturate(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalSaturateScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Left Unsigned/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHLU and VQSHLU/// </summary>Vector64<byte>ShiftLeftLogicalSaturateUnsigned(Vector64<sbyte>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturateUnsigned(Vector64<short>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturateUnsigned(Vector64<int>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturateUnsigned(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturateUnsigned(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturateUnsigned(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturateUnsigned(Vector128<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateUnsignedScalar(Vector64<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN and VSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowLower(Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN and VRSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL and VSHLL/// </summary>Vector128<short>ShiftLeftLogicalAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN and VQSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN and VQRSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN and VQSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN and VQRSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);publicabstractclassArm64{/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL/// </summary>Vector64<sbyte>ShiftArithmeticScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogicalScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL/// </summary>Vector128<short>SignExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<long>SignExtendAndWidenLower(Vector64<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL/// </summary>Vector128<short>ZeroExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL2/// </summary>Vector128<short>ShiftLeftLogicalAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL2/// </summary>Vector128<short>SignExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<long>SignExtendAndWidenUpper(Vector128<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL2/// </summary>Vector128<short>ZeroExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);}}}