diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lasx.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lasx.PlatformNotSupported.cs new file mode 100644 index 00000000000000..c0a10d7aa1ae1f --- /dev/null +++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lasx.PlatformNotSupported.cs @@ -0,0 +1,5731 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Runtime.CompilerServices; + +namespace System.Runtime.Intrinsics.LoongArch +{ + /// + /// This class provides access to the LASX-256bits hardware instructions via intrinsics + /// + [CLSCompliant(false)] +#if SYSTEM_PRIVATE_CORELIB + public +#else + internal +#endif + abstract class Lasx : Lsx + { + internal Lasx() { } + + public static new bool IsSupported { [Intrinsic] get { return false; } } + + /// + /// int8x32_t xvadd_b(int8x32_t a, int8x32_t b) + /// LASX: XVADD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Add(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvadd_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVADD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Add(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvadd_h(int16x16_t a, int16x16_t b) + /// LASX: XVADD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Add(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvadd_h(uint16x16_t a, uint16x16_t b) + /// LASX: XVADD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Add(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvadd_w(int32x8_t a, int32x8_t b) + /// LASX: XVADD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Add(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvadd_w(uint32x8_t a, uint32x8_t b) + /// LASX: XVADD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Add(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvadd_d(int64x4_t a, int64x4_t b) + /// LASX: XVADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Add(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvadd_d(uint64x4_t a, uint64x4_t b) + /// LASX: XVADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Add(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfadd_s(float32x8_t a, float32x8_t b) + /// LASX: XVFADD.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Add(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfadd_d(float64x4_t a, float64x4_t b) + /// LASX: XVFADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Add(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvsadd_b(int8x32_t a, int8x32_t b) + /// LASX: XVSADD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsadd_h(int16x16_t a, int16x16_t b) + /// LASX: XVSADD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsadd_w(int32x8_t a, int32x8_t b) + /// LASX: XVSADD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvsadd_d(int64x4_t a, int64x4_t b) + /// LASX: XVSADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsadd_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSADD.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsadd_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSADD.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsadd_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSADD.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsadd_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSADD.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvhaddw_h_b(int3x32_t a, int3x32_t b) + /// LASX: XVHADDW.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvhaddw_hu_bu(uint3x32_t a, uint3x32_t b) + /// LASX: XVHADDW.HU.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvhaddw_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVHADDW.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvhaddw_wu_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVHADDW.WU.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvhaddw_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVHADDW.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvhaddw_du_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVHADDW.DU.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x2_t xvhaddw_q_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVHADDW.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x2_t xvhaddw_qu_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVHADDW.QU.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvaddwev_h_b(int8x32_t a, int8x32_t b) + /// LASX: XVADDWEV.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvaddwev_h_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVADDWEV.H.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvaddwev_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVADDWEV.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvaddwev_w_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVADDWEV.W.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvaddwev_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVADDWEV.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvaddwev_d_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVADDWEV.D.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x2_t xvaddwev_q_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVADDWEV.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x2_t xvaddwev_q_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVADDWEV.Q.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvaddwod_h_b(int8x32_t a, int8x32_t b) + /// LASX: XVADDWOD.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvaddwod_h_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVADDWOD.H.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvaddwod_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVADDWOD.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvaddwod_w_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVADDWOD.W.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvaddwod_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVADDWOD.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvaddwod_d_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVADDWOD.D.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x2_t xvaddwod_q_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVADDWOD.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x2_t xvaddwod_q_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVADDWOD.Q.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvaddwev_h_bu_b(int8x32_t a, int8x32_t b) + /// LASX: XVADDWEV.H.BU.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvaddwev_w_hu_h(int16x16_t a, int16x16_t b) + /// LASX: XVADDWEV.W.HU.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvaddwev_d_wu_w(int32x8_t a, int32x8_t b) + /// LASX: XVADDWEV.D.WU.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x2_t xvaddwev_q_du_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVADDWEV.Q.DU.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvaddwod_h_bu_b(int8x32_t a, int8x32_t b) + /// LASX: XVADDWOD.H.BU.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvaddwod_w_hu_h(int16x16_t a, int16x16_t b) + /// LASX: XVADDWOD.W.HU.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvaddwod_d_wu_w(int32x8_t a, int32x8_t b) + /// LASX: XVADDWOD.D.WU.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x2_t xvaddwod_q_du_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVADDWOD.Q.DU.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector128 AddHorizontalElements(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.HU.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector128 AddHorizontalElements(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector128 AddHorizontalElements(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.WU.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector128 AddHorizontalElements(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector128 AddHorizontalElements(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.DU.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector128 AddHorizontalElements(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector128 AddHorizontalElements(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.QU.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector128 AddHorizontalElements(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: sum_all_float_elements witin vector. + /// + public static Vector64 AddHorizontalElements(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: sum_all_double_elements witin vector. + /// + public static Vector64 AddHorizontalElements(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvsub_b(int8x32_t a, int8x32_t b) + /// LASX: XVSUB.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsub_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVSUB.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsub_h(int16x16_t a, int16x16_t b) + /// LASX: XVSUB.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsub_h(uint16x16_t a, uint16x16_t b) + /// LASX: XVSUB.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsub_w(int32x8_t a, int32x8_t b) + /// LASX: XVSUB.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsub_w(uint32x8_t a, uint32x8_t b) + /// LASX: XVSUB.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvsub_d(int64x4_t a, int64x4_t b) + /// LASX: XVSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsub_d(uint64x4_t a, uint64x4_t b) + /// LASX: XVSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfsub_s(float32x8_t a, float32x8_t b) + /// LASX: XVFSUB.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfsub_d(float64x4_t a, float64x4_t b) + /// LASX: XVFSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvhsubw_h_b(int3x32_t a, int3x32_t b) + /// LASX: XVHSUBW.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvhsubw_hu_bu(uint3x32_t a, uint3x32_t b) + /// LASX: XVHSUBW.HU.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvhsubw_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVHSUBW.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvhsubw_wu_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVHSUBW.WU.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvhsubw_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVHSUBW.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvhsubw_du_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVHSUBW.DU.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x2_t xvhsubw_q_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVHSUBW.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x2_t xvhsubw_qu_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVHSUBW.QU.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvssub_b(int8x32_t a, int8x32_t b) + /// LASX: XVSSUB.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvssub_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSSUB.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvssub_h(int16x16_t a, int16x16_t b) + /// LASX: XVSSUB.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssub_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSSUB.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvssub_w(int32x8_t a, int32x8_t b) + /// LASX: XVSSUB.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvssub_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSSUB.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvssub_d(int64x4_t a, int64x4_t b) + /// LASX: XVSSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvssub_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSSUB.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmul_b(int8x32_t a, int8x32_t b) + /// LASX: XVMUL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvmul_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVMUL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmul_h(int16x16_t a, int16x16_t b) + /// LASX: XVMUL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmul_h(uint16x16_t a, uint16x16_t b) + /// LASX: XVMUL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmul_w(int32x8_t a, int32x8_t b) + /// LASX: XVMULW Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmul_w(uint32x8_t a, uint32x8_t b) + /// LASX: XVMUL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmul_d(int64x4_t a, int64x4_t b) + /// LASX: XVMUL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmul_d(uint64x4_t a, uint64x4_t b) + /// LASX: XVMUL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfmul_s(float32x8_t a, float32x8_t b) + /// LASX: XVFMUL.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfmul_d(float64x4_t a, float64x4_t b) + /// LASX: XVFMUL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmuh_b(int8x32_t a, int8x32_t b) + /// LASX: XVMUH.B Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvmuh_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMUH.BU Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmuh_h(int16x16_t a, int16x16_t b) + /// LASX: XVMUH.H Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmuh_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMUH.HU Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmuh_w(int32x8_t a, int32x8_t b) + /// LASX: VMUL.W Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmuh_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMUH.WU Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmuh_d(int64x4_t a, int64x4_t b) + /// LASX: XVMUH.D Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmuh_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMUH.DU Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvdiv_b(int8x32_t a, int8x32_t b) + /// LASX: XVDIV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Divide(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvdiv_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVDIV.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Divide(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvdiv_h(int16x16_t a, int16x16_t b) + /// LASX: XVDIV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Divide(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvdiv_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVDIV.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Divide(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvdiv_w(int32x8_t a, int32x8_t b) + /// LASX: XVDIV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Divide(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvdiv_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVDIV.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Divide(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvdiv_d(int64x4_t a, int64x4_t b) + /// LASX: XVDIV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Divide(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvdiv_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVDIV.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Divide(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfdiv_s(float32x8_t a, float32x8_t b) + /// LASX: XVFDIV.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Divide(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfdiv_d(float64x4_t a, float64x4_t b) + /// LASX: XVFDIV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Divide(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmod_b(int8x32_t a, int8x32_t b) + /// LASX: XVMOD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvmod_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMOD.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmod_h(int16x16_t a, int16x16_t b) + /// LASX: XVMOD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmod_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMOD.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmod_w(int32x8_t a, int32x8_t b) + /// LASX: XVMOD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmod_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMOD.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmod_d(int64x4_t a, int64x4_t b) + /// LASX: XVMOD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmod_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMOD.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfmadd_s(float32x8_t a, float32x8_t b, float32x8_t c) + /// LASX: XVFMADD.S Xd.8S, Xj.8S, Xk.8S, Xa.8S + /// + public static Vector256 FusedMultiplyAdd(Vector256 left, Vector256 right, Vector256 addend) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfmadd_d(float64x4_t a, float64x4_t b, float64x4_t c) + /// LASX: XVFMADD.D Xd.4D, Xj.4D, Xk.4D, Xa.4D + /// + public static Vector256 FusedMultiplyAdd(Vector256 left, Vector256 right, Vector256 addend) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfnmadd_s(float32x8_t a, float32x8_t b, float32x8_t c) + /// LASX: XVFNMADD.S Xd.8S, Xj.8S, Xk.8S, Xa.8S + /// + public static Vector256 FusedMultiplyAddNegated(Vector256 left, Vector256 right, Vector256 addend) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfnmadd_d(float64x4_t a, float64x4_t b, float64x4_t c) + /// LASX: XVFNMADD.D Xd.4D, Xj.4D, Xk.4D, Xa.4D + /// + public static Vector256 FusedMultiplyAddNegated(Vector256 left, Vector256 right, Vector256 addend) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmadd_b(int8x32_t a, int8x32_t b, int8x32_t c) + /// LASX: XVMADD.B Xd.32B, Xj.32B, Xk.32B //NOTE: The Vd is both input and output while input as addend. + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvmadd_b(uint8x32_t a, uint8x32_t b, uint8x32_t c) + /// LASX: XVMADD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmadd_h(int16x16_t a, int16x16_t b, int16x16_t c) + /// LASX: XVMADD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmadd_h(uint16x16_t a, uint16x16_t b, uint16x16_t c) + /// LASX: XVMADD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmadd_w(int32x8_t a, int32x8_t b, int32x8_t c) + /// LASX: XVMADD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmadd_w(uint32x8_t a, uint32x8_t b, uint32x8_t c) + /// LASX: XVMADD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmadd_d(int64x4_t a, int64x4_t b, int64x4_t c) + /// LASX: XVMADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmadd_d(uint64x4_t a, uint64x4_t b, uint64x4_t c) + /// LASX: XVMADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfmsub_s(float32x8_t a, float32x8_t b, float32x8_t c) + /// LASX: XVFMSUB.S Xd.8S, Xj.8S, Xk.8S, Xa.8S + /// + public static Vector256 FusedMultiplySubtract(Vector256 left, Vector256 right, Vector256 minuend) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfmsub_d(float64x4_t a, float64x4_t b, float64x4_t c) + /// LASX: XVFMSUB.D Xd.4D, Xj.4D, Xk.4D, Xa.4D + /// + public static Vector256 FusedMultiplySubtract(Vector256 left, Vector256 right, Vector256 minuend) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfnmsub_s(float32x8_t a, float32x8_t b, float32x8_t c) + /// LASX: XVFNMSUB.S Xd.8S, Xj.8S, Xk.8S, Xa.8S + /// + public static Vector256 FusedMultiplySubtractNegated(Vector256 left, Vector256 right, Vector256 minuend) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfnmsub_d(float64x4_t a, float64x4_t b, float64x4_t c) + /// LASX: XVFNMSUB.D Xd.4D, Xj.4D, Xk.4D, Xa.4D + /// + public static Vector256 FusedMultiplySubtractNegated(Vector256 left, Vector256 right, Vector256 minuend) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmsub_b(int8x32_t a, int8x32_t b, int8x32_t c) + /// LASX: XVMSUB.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvmsub_b(uint8x32_t a, uint8x32_t b, uint8x32_t c) + /// LASX: XVMSUB.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmsub_h(int16x16_t a, int16x16_t b, int16x16_t c) + /// LASX: XVMSUB.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmsub_h(uint16x16_t a, uint16x16_t b, uint16x16_t c) + /// LASX: XVMSUB.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmsub_w(int32x8_t a, int32x8_t b, int32x8_t c) + /// LASX: XVMSUB.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmsub_w(uint32x8_t a, uint32x8_t b, uint32x8_t c) + /// LASX: XVMSUB.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmsub_d(int64x4_t a, int64x4_t b, int64x4_t c) + /// LASX: XVMSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MultiplySubtract(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmsub_d(uint64x4_t a, uint64x4_t b, uint64x4_t c) + /// LASX: XVMSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MultiplySubtract(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmaddwev_h_b(int16x16_t a, int8x8_t b, int8x8_t c) + /// LASX: XVMADDWEV.H.B Xd.16H, Xj.8B, Xk.8B + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmaddwev_h_bu(uint16x16_t a, uint8x8_t b, uint8x8_t c) + /// LASX: XVMADDWEV.H.BU Xd.16H, Xj.8B, Xk.8B + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmaddwev_w_h(int32x8_t a, int16x4_t b, int16x4_t c) + /// LASX: XVMADDWEV.W.H Xd.8W, Xj.4H, Xk.4H + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmaddwev_w_hu(uint32x8_t a, uint16x4_t b, uint16x4_t c) + /// LASX: XVMADDWEV.W.HU Xd.8W, Xj.4H, Xk.4H + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmaddwev_d_w(int64x4_t a, int32x2_t b, int32x2_t c) + /// LASX: XVMADDWEV.D.W Xd.4D, Xj.2S, Xk.2S + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmaddwev_d_wu(uint64x4_t a, uint32x2_t b, uint32x2_t c) + /// LASX: XVMADDWEV.D.WU Xd.4D, Xj.2S, Xk.2S + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmaddwod_h_b(int16x16_t a, int8x32_t b, int8x32_t c) + /// LASX: XVMADDWOD.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmaddwod_h_bu(uint16x16_t a, uint8x32_t b, uint8x32_t c) + /// LASX: XVMADDWOD.H.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmaddwod_w_h(int32x8_t a, int16x16_t b, int16x16_t c) + /// LASX: XVMADDWOD.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmaddwod_w_hu(uint32x8_t a, uint16x16_t b, uint16x16_t c) + /// LASX: XVMADDWOD.W.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmaddwod_d_w(int64x4_t a, int32x8_t b, int32x8_t c) + /// LASX: XVMADDWOD.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmaddwod_d_wu(uint64x4_t a, uint32x8_t b, uint32x8_t c) + /// LASX: XVMADDWOD.D.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmsknz_b(int8x32_t value) + /// LASX: XVMSKNZ.B Vd.32B, Vj.32B + /// + public static Vector256 CompareNotEqualZeroEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvmsknz_b(uint8x32_t value) + /// LASX: XVMSKNZ.B Vd.32B, Vj.32B + /// + public static Vector256 CompareNotEqualZeroEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvseqi_b(int8x32_t a, int8_t si5) + /// LASX: XVSEQI.B Xd.32B, Xj.32B, si5 + /// + public static Vector256 CompareEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvseqi_h(int16x16_t a, int8_t si5) + /// LASX: XVSEQI.H Xd.16H, Xj.16H, si5 + /// + public static Vector256 CompareEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvseqi_w(int32x8_t a, int8_t si5) + /// LASX: XVSEQI.W Xd.8W, Xj.8W, si5 + /// + public static Vector256 CompareEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvseqi_d(int64x4_t a, int8_t si5) + /// LASX: XVSEQI.D Xd.4D, Xj.4D, si5 + /// + public static Vector256 CompareEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvseq_b(int8x32_t a, int8x32_t b) + /// LASX: XVSEQ.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvseq_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVSEQ.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvseq_h(int16x16_t a, int16x16_t b) + /// LASX: XVSEQ.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvseq_h(uint16x16_t a, uint16x16_t b) + /// LASX: XVSEQ.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvseq_w(int32x8_t a, int32x8_t b) + /// LASX: XVSEQ.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvseq_w(uint32x8_t a, uint32x8_t b) + /// LASX: XVSEQ.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvseq_d(int64x4_t a, int64x4_t b) + /// LASX: XVSEQ.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvseq_d(uint64x4_t a, uint64x4_t b) + /// LASX: XVSEQ.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvfcmp_ceq_s(float32x8_t a, float32x8_t b) + /// LASX: XVFCMP.CEQ.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvfcmp_ceq_d(float64x4_t a, float64x4_t b) + /// LASX: XVFCMP.CEQ.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmskltz_b(int8x32_t value) + /// LASX: XVMSKLTZ.B Xd.32B, Xj.32B + /// + public static Vector256 CompareLessThanZeroEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmskltz_h(int16x16_t value) + /// LASX: XVMSKLTZ.H Xd.16H, Xj.16H + /// + public static Vector256 CompareLessThanZeroEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmskltz_w(int32x8_t value) + /// LASX: XVMSKLTZ.W Xd.8W, Xj.8W + /// + public static Vector256 CompareLessThanZeroEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmskltz_d(int64x4_t value) + /// LASX: XVMSKLTZ.D Xd.4D, Xj.4D + /// + public static Vector256 CompareLessThanZeroEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvslti_b(int8x32_t a, int8_t si5) + /// LASX: XVSLTI.Bd.32B, Xj.32B, si5 + /// + public static Vector256 CompareLessThan(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvslti_h(int16x16_t a, int8_t si5) + /// LASX: XVSLTI.H Xd.16H, Xj.16H, si5 + /// + public static Vector256 CompareLessThan(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvslti_w(int32x8_t a, int8_t si5) + /// LASX: XVSLTI.W Xd.8W, Xj.8W, si5 + /// + public static Vector256 CompareLessThan(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvslti_d(int64x4_t a, int8_t si5) + /// LASX: XVSLTI.D Xd.4D, Xj.4D, si5 + /// + public static Vector256 CompareLessThan(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvslt_b(int8x32_t a, int8x32_t b) + /// LASX: XVSLT.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvslt_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSLT.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvslt_h(int16x16_t a, int16x16_t b) + /// LASX: XVSLT.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvslt_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSLT.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvslt_w(int32x8_t a, int32x8_t b) + /// LASX: XVSLT.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvslt_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSLT.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvslt_d(int64x4_t a, int64x4_t b) + /// LASX: XVSLT.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvslt_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSLT.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvfcmp_clt_s(float32x8_t a, float32x8_t b) + /// LASX: XVFCMP.CLT.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvfcmp_clt_d(float64x4_t a, float64x4_t b) + /// LASX: XVFCMP.CLT.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvslei_b(int8x32_t a, int8_t si5) + /// LASX: XVSLEI.Bd.32B, Xj.32B, si5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvslei_h(int16x16_t a, int8_t si5) + /// LASX: XVSLEI.H Xd.16H, Xj.16H, si5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvslei_w(int32x8_t a, int8_t si5) + /// LASX: XVSLEI.W Xd.8W, Xj.8W, si5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvslei_d(int64x4_t a, int8_t si5) + /// LASX: XVSLEI.D Xd.4D, Xj.4D, si5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsle_b(int8x32_t a, int8x32_t b) + /// LASX: XVSLE.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsle_h(int16x16_t a, int16x16_t b) + /// LASX: XVSLE.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsle_w(int32x8_t a, int32x8_t b) + /// LASX: XVSLE.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsle_d(int64x4_t a, int64x4_t b) + /// LASX: XVSLE.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvslei_bu(uint8x32_t a, uint8_t ui5) + /// LASX: XVSLEI.BU Xd.32B, Xj.32B, ui5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvslei_hu(uint16x16_t a, uint8_t ui5) + /// LASX: XVSLEI.HU Xd.16H, Xj.16H, ui5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvslei_wu(uint32x8_t a, uint8_t ui5) + /// LASX: XVSLEI.WU Xd.8W, Xj.8W, ui5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvslei_du(uint64x4_t a, uint8_t ui5) + /// LASX: XVSLEI.DU Xd.4D, Xj.4D, ui5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsle_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSLE.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsle_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSLE.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsle_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSLE.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsle_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSLE.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvfcmp_cle_s(float32x8_t a, float32x8_t b) + /// LASX: XVFCMP.CLE.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvfcmp_cle_d(float64x4_t a, float64x4_t b) + /// LASX: XVFCMP.CLE.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsle_b(int8x32_t a, int8x32_t b) + /// LASX: XVSLE.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsle_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSLE.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsle_h(int16x16_t a, int16x16_t b) + /// LASX: XVSLE.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsle_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSLE.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsle_w(int32x8_t a, int32x8_t b) + /// LASX: XVSLE.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsle_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSLE.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsle_d(int64x4_t a, int64x4_t b) + /// LASX: XVSLE.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsle_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSLE.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvfcmp_cle_s(float32x8_t a, float32x8_t b) + /// LASX: XVFCMP.CLE.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvfcmp_cle_d(float64x4_t a, float64x4_t b) + /// LASX: XVFCMP.CLE.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmskgez_b(int8x32_t value) + /// LASX: XVMSKGEZ.B Xd.32B, Xj.32B + /// + public static Vector256 CompareGreaterThanOrEqualZeroEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvslt_b(int8x32_t a, int8x32_t b) + /// LASX: XVSLT.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvslt_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSLT.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvslt_h(int16x16_t a, int16x16_t b) + /// LASX: XVSLT.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvslt_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSLT.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvslt_w(int32x8_t a, int32x8_t b) + /// LASX: XVSLT.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvslt_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSLT.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvslt_d(int64x4_t a, int64x4_t b) + /// LASX: XVSLT.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvslt_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSLT.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvfcmp_clt_s(float32x8_t a, float32x8_t b) + /// LASX: XVFCMP.CLT.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvfcmp_clt_d(float64x4_t a, float64x4_t b) + /// LASX: XVFCMP.CLT.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmaxi_b(int8x32_t a, int8_t si5) + /// LASX: XVMAXI.B Xd.32B, Xj.32B, si5 + /// + public static Vector256 Max(Vector256 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvmaxi_bu(uint8x32_t a, int8_t si5) + /// LASX: XVMAXI.BU Xd.32B, Xj.32B, ui5 + /// + public static Vector256 Max(Vector256 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmaxi_h(int16x16_t a, int8_t si5) + /// LASX: XVMAXI.H Xd.16H, Xj.16H, si5 + /// + public static Vector256 Max(Vector256 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmaxi_hu(uint16x16_t a, int8_t si5) + /// LASX: XVMAXI.HU Xd.16H, Xj.16H, ui5 + /// + public static Vector256 Max(Vector256 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmaxi_w(int32x8_t a, int8_t si5) + /// LASX: XVMAXI.W Xd.8W, Xj.8W, si5 + /// + public static Vector256 Max(Vector256 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmaxi_wu(uint32x8_t a, int8_t si5) + /// LASX: XVMAXI.WU Xd.8W, Xj.8W, ui5 + /// + public static Vector256 Max(Vector256 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmaxi_d(int64x4_t a, int8_t si5) + /// LASX: XVMAXI.D Xd.4D, Xj.4D, si5 + /// + public static Vector256 Max(Vector256 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmaxi_du(uint64x4_t a, int8_t si5) + /// LASX: XVMAXI.DU Xd.4D, Xj.4D, ui5 + /// + public static Vector256 Max(Vector256 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmax_b(int8x32_t a, int8x32_t b) + /// LASX: XVMAX.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Max(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvmax_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMAX.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Max(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmax_h(int16x16_t a, int16x16_t b) + /// LASX: XVMAX.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Max(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmax_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMAX.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Max(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmax_w(int32x8_t a, int32x8_t b) + /// LASX: XVMAX.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Max(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmax_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMAX.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Max(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmax_d(int64x4_t a, int64x4_t b) + /// LASX: XVMAX.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Max(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmax_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMAX.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Max(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfmax_s(float32x8_t a, float32x8_t b) + /// LASX: XVFMAX.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Max(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfmax_d(float64x4_t a, float64x4_t b) + /// LASX: XVFMAX.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Max(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfmaxa_s(float32x8_t a, float32x8_t b) + /// LASX: XVFMAXA.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 MaxFloatAbsolute(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfmaxa_d(float64x4_t a, float64x4_t b) + /// LASX: XVFMAXA.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MaxFloatAbsolute(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmini_b(int8x32_t a, int8_t si5) + /// LASX: XVMINI.B Xd.32B, Xj.32B, si5 + /// + public static Vector256 Min(Vector256 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvmini_bu(uint8x32_t a, int8_t si5) + /// LASX: XVMINI.BU Xd.32B, Xj.32B, ui5 + /// + public static Vector256 Min(Vector256 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmini_h(int16x16_t a, int8_t si5) + /// LASX: XVMINI.H Xd.16H, Xj.16H, si5 + /// + public static Vector256 Min(Vector256 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmini_hu(uint16x16_t a, int8_t si5) + /// LASX: XVMINI.HU Xd.16H, Xj.16H, ui5 + /// + public static Vector256 Min(Vector256 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmini_w(int32x8_t a, int8_t si5) + /// LASX: XVMINI.W Xd.8W, Xj.8W, si5 + /// + public static Vector256 Min(Vector256 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmini_wu(uint32x8_t a, int8_t si5) + /// LASX: XVMINI.WU Xd.8W, Xj.8W, ui5 + /// + public static Vector256 Min(Vector256 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmini_d(int64x4_t a, int8_t si5) + /// LASX: XVMINI.D Xd.4D, Xj.4D, si5 + /// + public static Vector256 Min(Vector256 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmini_du(uint64x4_t a, int8_t si5) + /// LASX: XVMINI.DU Xd.4D, Xj.4D, ui5 + /// + public static Vector256 Min(Vector256 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvmin_b(int8x32_t a, int8x32_t b) + /// LASX: XVMIN.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Min(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvmin_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMIN.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Min(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmin_h(int16x16_t a, int16x16_t b) + /// LASX: XVMIN.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Min(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmin_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMIN.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Min(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmin_w(int32x8_t a, int32x8_t b) + /// LASX: XVMIN.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Min(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmin_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMIN.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Min(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmin_d(int64x4_t a, int64x4_t b) + /// LASX: XVMIN.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Min(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmin_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMIN.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Min(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfmin_s(float32x8_t a, float32x8_t b) + /// LASX: XVFMIN.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Min(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfmin_d(float64x4_t a, float64x4_t b) + /// LASX: XVFMIN.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Min(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfmina_s(float32x8_t a, float32x8_t b) + /// LASX: XVFMINA.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 MinFloatAbsolute(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfmina_d(float64x4_t a, float64x4_t b) + /// LASX: XVFMINA.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MinFloatAbsolute(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvbitsel_v(uint8x32_t a, int8x32_t b, int8x32_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvbitsel_v(uint8x32_t a, uint8x32_t b, uint8x32_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvbitsel_v(uint16x16_t a, int16x16_t b, int16x16_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvbitsel_v(uint16x16_t a, uint16x16_t b, uint16x16_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvbitsel_v(uint32x8_t a, int32x8_t b, int32x8_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvbitsel_v(uint32x8_t a, uint32x8_t b, uint32x8_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvbitsel_v(uint64x4_t a, int64x4_t b, int64x4_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvbitsel_v(uint64x4_t a, uint64x4_t b, uint64x4_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvbitsel_v(uint32x8_t a, float32x8_t b, float32x8_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvbitsel_v(uint64x4_t a, float64x4_t b, float64x4_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvabsd_b(int8x32_t a, int8x32_t b) + /// LASX: XVABSD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvabsd_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVABSD.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvabsd_h(int16x16_t a, int16x16_t b) + /// LASX: XVABSD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvabsd_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVABSD.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvabsd_w(int32x8_t a, int32x8_t b) + /// LASX: XVABSD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvabsd_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVABSD.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvabsd_d(uint64x4_t a, int64x4_t b, int64x4_t c) + /// LASX: XVABSD.D Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvabsd_du(uint64x4_t a, uint64x4_t b, uint64x4_t c) + /// LASX: XVABSD.DU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + ///// + ///// float32x8_t TODO(float32x8_t a, float32x8_t b) multi-instructions. + ///// LASX: TODO Xd.8S, Xj.8S, Xk.8S + ///// + //public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + ///// + ///// float64x4_t TODO(float64x4_t a, float64x4_t b) + ///// LASX: TODO Xd.4D, Xj.4D, Xk.4D + ///// + //public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvld(int8_t const * ptr, const short si12) + /// LASX: XVLD Xd.32B, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(sbyte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvld(uint8_t const * ptr, const short si12) + /// LASX: XVLD Xd.32B, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(byte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvld(int16_t const * ptr, const short si12) + /// LASX: XVLD Xd.16H, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(short* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvld(uint16_t const * ptr, const short si12) + /// LASX: XVLD Xd.16H, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(ushort* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvld(int32_t const * ptr, const short si12) + /// LASX: XVLD Xd.8W, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(int* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvld(uint32_t const * ptr, const short si12) + /// LASX: XVLD Xd.8W, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(uint* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvld(int64_t const * ptr, const short si12) + /// LASX: XVLD Xd.4D, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(long* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvld(uint64_t const * ptr, const short si12) + /// LASX: XVLD Xd.4D, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(ulong* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvld(float32_t const * ptr, const short si12) + /// LASX: XVLD Xd.8S, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(float* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvld(float64_t const * ptr, const short si12) + /// LASX: XVLD Xd.4D, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(double* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvldx(int8_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.32B, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(sbyte* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvldx(uint8_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.32B, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(byte* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvldx(int16_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.16H, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(short* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvldx(uint16_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.16H, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(ushort* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvldx(int32_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.8W, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(int* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvldx(uint32_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.8W, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(uint* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvldx(int64_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.4D, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(long* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvldx(uint64_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.4D, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(ulong* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvldx(float32_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.8S, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(float* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvldx(float64_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.4D, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(double* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvldrepl_b(int8_t const * ptr, const short si12) + /// LASX: XVLDREPL.B Xd.32B, Rj, si12 + /// + public static unsafe Vector256 LoadElementReplicateVector(sbyte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvldrepl_b(uint8_t const * ptr, const short si12) + /// LASX: XVLDREPL.B Xd.32B, Rj, si12 + /// + public static unsafe Vector256 LoadElementReplicateVector(byte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvldrepl_h(int16_t const * ptr, const short si12) + /// LASX: XVLDREPL.H Xd.16H, Rj, si11 + /// + public static unsafe Vector256 LoadElementReplicateVector(short* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvldrepl_h(uint16_t const * ptr, const short si12) + /// LASX: XVLDREPL.H Xd.16H, Rj, si11 + /// + public static unsafe Vector256 LoadElementReplicateVector(ushort* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvldrepl_w(int32_t const * ptr, const short si12) + /// LASX: XVLDREPL.W Xd.8W, Rj, si10 + /// + public static unsafe Vector256 LoadElementReplicateVector(int* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvldrepl_w(uint32_t const * ptr, const short si12) + /// LASX: XVLDREPL.W Xd.8W, Rj, si10 + /// + public static unsafe Vector256 LoadElementReplicateVector(uint* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvldrepl_d(int64_t const * ptr, const short si12) + /// LASX: XVLDREPL.D Xd.4D, Rj, si9 + /// + public static unsafe Vector256 LoadElementReplicateVector(long* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvldrepl_d(uint64_t const * ptr, const short si12) + /// LASX: XVLDREPL.D Xd.4D, Rj, si9 + /// + public static unsafe Vector256 LoadElementReplicateVector(ulong* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t vld(float32_t const * ptr, const short si12) + /// LASX: XVLDREPL.W Xd.4S, Rj, si10 + /// + public static unsafe Vector256 LoadElementReplicateVector(float* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvldrepl_d(float64_t const * ptr, const short si12) + /// LASX: XVLDREPL.D Xd.4D, Rj, si9 + /// + public static unsafe Vector256 LoadElementReplicateVector(double* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfrecip_s(float32x8_t a) + /// LASX: XVFRECIP.S Xd.8S Xj.8S + /// + public static Vector256 Reciprocal(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfrecip_d(float64x4_t a) + /// LASX: XVFRECIP.D Xd.4D Xj.4D + /// + public static Vector256 Reciprocal(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfrsqrt_s(float32x8_t a) + /// LASX: XVFRSQRT.S Xd.8S Xj.8S + /// + public static Vector256 ReciprocalSqrt(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfrsqrt_d(float64x4_t a) + /// LASX: XVFRSQRT.D Xd.4D Xj.4D + /// + public static Vector256 ReciprocalSqrt(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfsqrt_s(float32x8_t a) + /// LASX: XVFSQRT.S Xd.8S, Xj.8S + /// + public static Vector256 Sqrt(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfsqrt_d(float64x4_t a) + /// LASX: XVFSQRT.D Xd.4D, Xj.4D + /// + public static Vector256 Sqrt(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvflogb_d(float32x8_t a) + /// LASX: XVFLOGB.S Xd.8S, Xj.8S + /// + public static Vector256 FloatLogarithm2(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvflogb_d(float64x4_t a) + /// LASX: XVFLOGB.D Xd.4D, Xj.4D + /// + public static Vector256 FloatLogarithm2(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// void xvst(int8x32_t val, int8_t* addr, const short si12) + /// LASX: XVST Xd.32B, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, sbyte* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void xvst(uint8x32_t val, uint8_t* addr, const short si12) + /// LASX: XVST Xd.32B, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, byte* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void xvst(int16x16_t val, int16_t* addr, const short si12) + /// LASX: XVST Xd.16H, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, short* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void xvst(uint16x16_t val, uint16_t* addr, const short si12) + /// LASX: XVST Xd.16H, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, ushort* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void xvst(int32x8_t val, int32_t* addr, const short si12) + /// LASX: XVST Xd.8W, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, int* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void xvst(uint32x8_t val, uint32_t* addr, const short si12) + /// LASX: XVST Xd.8W, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, uint* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void xvst(int64x4_t val, int64_t* addr, const short si12) + /// LASX: XVST Xd.4D, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, long* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void xvst(uint64x4_t val, uint64_t* addr, const short si12) + /// LASX: XVST Xd.4D, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, ulong* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void xvst(float32x8_t val, float32_t* addr, const short si12) + /// LASX: XVST Xd.8W, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, float* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void xvst(float64x4_t val, float64_t* addr, const short si12) + /// LASX: XVST Xd.4D, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, double* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstx(int8x32_t val, int8_t* addr, long offsetValue) + /// LASX: XVSTX Xd.32B, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, sbyte* addr, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstx(uint8x32_t val, uint8_t* addr, long offsetValue) + /// LASX: XVSTX Xd.32B, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, byte* addr, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstx(int16x16_t val, int16_t* addr, long offsetValue) + /// LASX: XVSTX Xd.16H, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, short* addr, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstx(uint16x16_t val, uint16_t* addr, long offsetValue) + /// LASX: XVSTX Xd.16H, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, ushort* addr, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstx(int32x8_t val, int32_t* addr, long offsetValue) + /// LASX: XVSTX Xd.8W, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, int* addr, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstx(uint32x8_t val, uint32_t* addr, long offsetValue) + /// LASX: XVSTX Xd.8W, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, uint* addr, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstx(int64x4_t val, int64_t* addr, long offsetValue) + /// LASX: XVSTX Xd.4D, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, long* addr, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstx(uint64x4_t val, uint64_t* addr, long offsetValue) + /// LASX: XVSTX Xd.4D, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, ulong* addr, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstx(float32x8_t val, float32_t* addr, long offsetValue) + /// LASX: XVSTX Xd.8W, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, float* addr, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstx(float64x4_t val, float64_t* addr, long offsetValue) + /// LASX: XVSTX Xd.4D, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, double* addr, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstelm_b(int8x32_t val, int8_t* addr, const short si8, const byte idx) + /// LASX: XVSTELM.B Xd.32B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, sbyte* addr, [ConstantExpected(Min = -128, Max = 127)] short si8, [ConstantExpected(Max = (byte)(31))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstelm_b(uint8x32_t val, uint8_t* addr, const short si8, const byte idx) + /// LASX: XVSTELM.B Xd.32B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, byte* addr, [ConstantExpected(Min = -128, Max = 127)] short si8, [ConstantExpected(Max = (byte)(31))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstelm_h(int16x16_t val, int16_t* addr, const short si9, const byte idx) // Note: si9 is 2byte aligned. + /// LASX: XVSTELM.H Xd.16H, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, short* addr, [ConstantExpected(Min = -256, Max = 254)] short si9, [ConstantExpected(Max = (byte)(15))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstelm_h(uint16x16_t val, uint16_t* addr, const short si9, const byte idx) + /// LASX: XVSTELM.H Xd.16H, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, ushort* addr, [ConstantExpected(Min = -256, Max = 254)] short si9, [ConstantExpected(Max = (byte)(15))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstelm_w(int32x8_t val, int32_t* addr, const short si10, const byte idx) // Note: si10 is 4byte aligned. + /// LASX: XVSTELM.W Xd.8W, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, int* addr, [ConstantExpected(Min = -512, Max = 508)] short si10, [ConstantExpected(Max = (byte)(7))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstelm_w(uint32x8_t val, uint32_t* addr, const short si10, const byte idx) + /// LASX: XVSTELM.W Xd.8W, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, uint* addr, [ConstantExpected(Min = -512, Max = 508)] short si10, [ConstantExpected(Max = (byte)(7))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + const /// void xvstelm_d(int64x4_t val, int64_t* addr, const short si11, const byte idx) // Note: si11 is 8byte aligned. + /// LASX: XVSTELM.D Xd.4D, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, long* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(3))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstelm_d(uint64x4_t val, uint64_t* addr, const short si11, const byte idx) + /// LASX: XVSTELM.D Xd.4D, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, ulong* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(3))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstelm_w(float32x8_t val, float32_t* addr, const short si10, const byte idx) + /// LASX: XVSTELM.W Xd.8S, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, float* addr, [ConstantExpected(Min = -512, Max = 511)] short si10, [ConstantExpected(Max = (byte)(7))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void xvstelm_d(float64x4_t val, float64_t* addr, const short si11, const byte idx) + /// LASX: XVSTELM.D Xd.4D, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, double* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(3))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvneg_b(int8x32_t a) + /// LASX: XVNEG.B Xd.32B, Xj.32B + /// + public static Vector256 Negate(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvneg_h(int16x16_t a) + /// LASX: XVNEG.H Xd.16H, Xj.16H + /// + public static Vector256 Negate(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvneg_w(int32x8_t a) + /// LASX: XVNEG.W Xd.8W, Xj.8W + /// + public static Vector256 Negate(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvneg_d(int64x4_t a) + /// LASX: XVNEG.D Xd.4D, Xj.4D + /// + public static Vector256 Negate(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvbitrevi_w(float32x8_t a) + /// LASX: XVBITREVI.W Xd.8W, Xj.8W, 31 + /// + public static Vector256 Negate(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvbitrevi_d(float64x4_t a) + /// LASX: XVBITREVI.D Xd.4D, Xj.4D + /// + public static Vector256 Negate(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmulwod_h_b(int8x32_t a, int8x32_t b) + /// LASX: XVMULWOD.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmulwod_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVMULWOD.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmulwod_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVMULWOD.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x2_t xvmulwod_q_d(int64x4_t a, int64x4_t b) + /// LASX: XVMULWOD.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvmulwev_h_b(int8x32_t a, int8x32_t b) + /// LASX: XVMULWEV.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvmulwev_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVMULWEV.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvmulwev_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVMULWEV.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x2_t xvmulwev_q_d(int64x4_t a, int64x4_t b) + /// LASX: XVMULWEV.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmulwod_hu_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMULWOD.H.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmulwod_wu_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMULWOD.W.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmulwod_du_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMULWOD.D.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x2_t xvmulwod_qu_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMULWOD.Q.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvmulwev_hu_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMULWEV.H.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvmulwev_wu_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMULWEV.W.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvmulwev_du_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMULWEV.D.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x2_t xvmulwev_qu_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMULWEV.Q.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int16x16_t xvmulwod_h_bu(uint8x32_t a, int8x32_t b) + // /// LASX: XVMULWOD.H.BU.B Xd.16H, Xj.32B, Xk.32B + // /// + // public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int32x8_t xvmulwod_w_hu(uint16x16_t a, int16x16_t b) + // /// LASX: XVMULWOD.W.HU.H Xd.8W, Xj.16H, Xk.16H + // /// + // public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int64x4_t xvmulwod_d_wu(uint32x8_t a, int32x8_t b) + // /// LASX: XVMULWOD.D.WU.W Xd.4D, Xj.8W, Xk.8W + // /// + // public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int128x2_t xvmulwod_q_du(uint64x4_t a, int64x4_t b) + // /// LASX: XVMULWOD.Q.DU.D Xd.2Q, Xj.4D, Xk.4D + // /// + // public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int16x16_t xvmulwev_h_bu(uint8x32_t a, int8x32_t b) + // /// LASX: XVMULWEV.H.BU.B Xd.16H, Xj.32B, Xk.32B + // /// + // public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int32x8_t xvmulwev_w_hu(uint16x16_t a, int16x16_t b) + // /// LASX: XVMULWEV.W.HU.H Xd.8W, Xj.16H, Xk.16H + // /// + // public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int64x4_t xvmulwev_d_wu(uint32x8_t a, int32x8_t b) + // /// LASX: XVMULWEV.D.WU.W Xd.4D, Xj.8W, Xk.8W + // /// + // public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int128x2_t xvmulwev_q_du(uint64x4_t a, int64x4_t b) + // /// LASX: XVMULWEV.Q.DU.D Xd.2Q, Xj.4D, Xk.4D + // /// + // public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvavg_b(int8x32_t a, int8x32_t b) + /// LASX: XVAVG.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Average(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvavg_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVAVG.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Average(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvavg_h(int16x16_t a, int16x16_t b) + /// LASX: XVAVG.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Average(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvavg_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVAVG.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Average(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvavg_w(int32x8_t a, int32x8_t b) + /// LASX: XVAVG.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Average(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvavg_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVAVG.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Average(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvavg_d(int64x4_t a, int64x4_t b) + /// LASX: XVAVG.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Average(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvavg_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVAVG.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Average(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvavgr_b(int8x32_t a, int8x32_t b) + /// LASX: XVAVGR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvavgr_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVAVGR.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvavgr_h(int16x16_t a, int16x16_t b) + /// LASX: XVAVGR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvavgr_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVAVGR.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvavgr_w(int32x8_t a, int32x8_t b) + /// LASX: XVAVGR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvavgr_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVAVGR.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvavgr_d(int64x4_t a, int64x4_t b) + /// LASX: XVAVGR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvavgr_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVAVGR.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsllwil_h_b(int8x32_t a, uint8_t ui3) + /// LASX: XVSLLWIL.H.B Xd.16H, Xj.32B, ui3 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsllwil_h_b(uint8x32_t a, uint8_t ui3) + /// LASX: XVSLLWIL.H.B Xd.16H, Xj.32B, ui3 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsllwil_w_h(int16x4_t a, uint8_t ui4) + /// LASX: XVSLLWIL.W.H Xd.8W, Xj.4H, ui4 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsllwil_w_h(uint16x4_t a, uint8_t ui4) + /// LASX: XVSLLWIL.W.H Xd.8W, Xj.4H, ui4 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvsllwil_d_w(int32x2_t a, uint8_t ui5) + /// LASX: XVSLLWIL.D.W Xd.4D, Xj.2W, ui5 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvsllwil_d_w(uint32x2_t a, uint8_t ui5) + /// LASX: XVSLLWIL.D.W Xd.4D, Xj.2W, ui5 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsllwil_hu_bu(uint8x32_t a, uint8_t ui3) + /// LASX: XVSLLWIL.HU.BU Xd.16H, Xj.32B, ui3 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsllwil_hu_bu(int8x32_t a, uint8_t ui3) + /// LASX: XVSLLWIL.HU.BU Xd.16H, Xj.32B, ui3 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsllwil_wu_hu(uint16x16_t a, uint8_t ui4) + /// LASX: XVSLLWIL.WU.HU Xd.8W, Xj.16H, ui4 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsllwil_wu_hu(int16x16_t a, uint8_t ui4) + /// LASX: XVSLLWIL.WU.HU Xd.8W, Xj.16H, ui4 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsllwil_du_wu(uint32x8_t a, uint8_t ui5) + /// LASX: XVSLLWIL.DU.WU Xd.4D, Xj.8W, ui5 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvsllwil_du_wu(int32x8_t a, uint8_t ui5) + /// LASX: XVSLLWIL.DU.WU Xd.4D, Xj.8W, ui5 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x2_t xvextl_qu_du(int64x4_t a) + /// LASX: XVEXTL.QU.DU Xd.2Q, Xj.D + /// + public static Vector256 ZeroExtendWideningLowerEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x2_t xvextl_qu_du(uint64x4_t a) + /// LASX: XVEXTL.QU.DU Xd.2Q, Xj.D + /// + public static Vector256 ZeroExtendWideningLowerEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t vext2xv_h_b(int8x16_t a) + /// LASX: VEXT2XV.H.B Xd.16H, Xj.16B + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t vext2xv_h_b(uint8x16_t a) + /// LASX: VEXT2XV.H.B Xd.16H, Xj.16B + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t vext2xv_w_b(int8x8_t a) + /// LASX: VEXT2XV.W.B Xd.8W, Xj.8B + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + //public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t vext2xv_w_b(uint8x8_t a) + /// LASX: VEXT2XV.W.B Xd.8W, Xj.8B + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + //public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t vext2xv_d_b(int8x4_t a) + /// LASX: VEXT2XV.D.B Xd.4D, Xj.4B + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t vext2xv_d_b(uint8x4_t a) + /// LASX: VEXT2XV.D.B Xd.4D, Xj.4B + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t vext2xv_w_h(int16x8_t a) + /// LASX: VEXT2XV.W.H Xd.8W, Xj.8H + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t vext2xv_w_h(uint16x8_t a) + /// LASX: VEXT2XV.W.H Xd.8W, Xj.8H + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t vext2xv_d_h(int16x4_t a) + /// LASX: VEXT2XV.D.H Xd.4D, Xj.4H + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + //public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t vext2xv_d_h(uint16x4_t a) + /// LASX: VEXT2XV.D.H Xd.4D, Xj.4H + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + //public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t vext2xv_d_w(int32x2_t a) + /// LASX: VEXT2XV.D.W Xd.4D, Xj.2W + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t vext2xv_d_w(uint32x2_t a) + /// LASX: VEXT2XV.D.W Xd.4D, Xj.2W + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t vext2xv_hu_bu(uint8x16_t a) + /// LASX: VEXT2XV.HU.BU Xd.16H, Xj.16B + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t vext2xv_hu_bu(int8x16_t a) + /// LASX: VEXT2XV.HU.BU Xd.16H, Xj.16B + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t vext2xv_wu_bu(uint8x8_t a) + /// LASX: VEXT2XV.WU.BU Xd.8W, Xj.8B + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t vext2xv_wu_bu(int8x8_t a) + /// LASX: VEXT2XV.WU.BU Xd.8W, Xj.8B + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t vext2xv_du_bu(uint8x4_t a) + /// LASX: VEXT2XV.DU.BU Xd.4D, Xj.4B + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t vext2xv_du_bu(int8x4_t a) + /// LASX: VEXT2XV.DU.BU Xd.4D, Xj.4B + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t vext2xv_wu_hu(uint16x8_t a) + /// LASX: VEXT2XV.WU.HU Xd.8W, Xj.8H + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t vext2xv_wu_hu(int16x8_t a) + /// LASX: VEXT2XV.WU.HU Xd.8W, Xj.8H + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t vext2xv_du_hu(uint16x4_t a) + /// LASX: VEXT2XV.DU.HU Xd.4D, Xj.4H + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t vext2xv_du_hu(int16x4_t a) + /// LASX: VEXT2XV.DU.HU Xd.4D, Xj.4H + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t vext2xv_du_wu(uint32x4_t a) + /// LASX: VEXT2XV.DU.WU Xd.4D, Xj.4W + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t vext2xv_du_wu(int32x4_t a) + /// LASX: VEXT2XV.DU.WU Xd.4D, Xj.4W + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvexth_h_b(int8x32_t a) + /// LASX: XVEXTH.H.B Xd.16H, Xj.32B + /// + public static Vector256 SignExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvexth_w_h(int16x16_t a) + /// LASX: XVEXTH.W.H Xd.8W, Xj.16H + /// + public static Vector256 SignExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvexth_d_w(int32x8_t a) + /// LASX: XVEXTH.D.W Xd.4D, Xj.8W + /// + public static Vector256 SignExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int128x2_t xvexth_d_w(int64x4_t a) + /// LASX: XVEXTH.Q.D Xd.2Q, Xj.4D + /// + public static Vector256 SignExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvexth_HU_BU(int8x32_t a) + /// LASX: XVEXTH.HU.BU Xd.16H, Xj.32B + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvexth_HU_BU(uint8x32_t a) + /// LASX: XVEXTH.HU.BU Xd.16H, Xj.32B + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvexth_WU_HU(int16x16_t a) + /// LASX: XVEXTH.WU.HU Xd.8W, Xj.16H + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvexth_WU_HU(uint16x16_t a) + /// LASX: XVEXTH.WU.HU Xd.8W, Xj.16H + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvexth_DU_WU(uint32x8_t a) + /// LASX: XVEXTH.DU.WU Xd.4D, Xj.8W + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvexth_DU_WU(uint32x8_t a) + /// LASX: XVEXTH.DU.WU Xd.4D, Xj.8W + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int128x2_t xvexth_DU_WU(int64x4_t a) + /// LASX: XVEXTH.QU.DU Xd.2Q, Xj.4D + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x2_t xvexth_DU_WU(uint64x4_t a) + /// LASX: XVEXTH.QU.DU Xd.2Q, Xj.4D + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvand_v(int8x32_t a, int8x32_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvand_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvand_v(int16x16_t a, int16x16_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvand_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvand_v(int32x8_t a, int32x8_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvand_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvand_v(int64x4_t a, int64x4_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvand_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvand_v(float32x8_t a, float32x8_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvand_v(float64x4_t a, float64x4_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvandn_v(int8x32_t a, int8x32_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvandn_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvandn_v(int16x16_t a, int16x16_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvandn_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvandn_v(int32x8_t a, int32x8_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvandn_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvandn_v(int64x4_t a, int64x4_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvandn_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvandn_v(float32x8_t a, float32x8_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvandn_v(float64x4_t a, float64x4_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvor_v(int8x32_t a, int8x32_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvor_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvor_v(int16x16_t a, int16x16_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvor_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvor_v(int32x8_t a, int32x8_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvor_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvor_v(int64x4_t a, int64x4_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvor_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvor_v(float32x8_t a, float32x8_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvor_v(float64x4_t a, float64x4_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvnori_b(uint8x32_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvnori_b(float64x4_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvnori_b(int16x16_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvnori_b(int32x8_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvnori_b(int64x4_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvnori_b(int8x32_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvnori_b(float32x8_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvnori_b(uint16x16_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvnori_b(uint32x8_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvnori_b(uint64x4_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// The above native signature does not exist. We provide this additional overload for consistency with the other scalar APIs. + /// + public static Vector256 Not(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvnor_v(int8x32_t a, int8x32_t b) + /// LASX: XVNOR.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvnor_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVNOR.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvnor_v(int16x16_t a, int16x16_t b) + /// LASX: XVNOR.V Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvnor_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVNOR.V Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvnor_v(int32x8_t a, int32x8_t b) + /// LASX: XVNOR.V Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvnor_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVNOR.V Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvnor_v(int64x4_t a, int64x4_t b) + /// LASX: XVNOR.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvnor_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVNOR.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvnor_v(float32x8_t a, float32x8_t b) + /// LASX: XVNOR.V Vd.8S, Vj.8S, Vk.8S + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvnor_v(float64x4_t a, float64x4_t b) + /// LASX: XVNOR.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t xvorn(uint8x8_t a, uint8x8_t b) + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x1_t xvorn(float64x1_t a, float64x1_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t xvorn(int16x4_t a, int16x4_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t xvorn(int32x2_t a, int32x2_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x1_t xvorn(int64x1_t a, int64x1_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t xvorn(int8x8_t a, int8x8_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x2_t xvorn(float32x2_t a, float32x2_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t xvorn(uint16x4_t a, uint16x4_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t xvorn(uint32x2_t a, uint32x2_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x1_t xvorn(uint64x1_t a, uint64x1_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvorn_v(int8x32_t a, int8x32_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvorn_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvor_v(int16x16_t a, int16x16_t b) + /// LASX: XVORN.V Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvor_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVORN.V Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvorn_v(int32x8_t a, int32x8_t b) + /// LASX: XVORN.V Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvorn_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVORN.V Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvorn_v(int64x4_t a, int64x4_t b) + /// LASX: XVORN.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvorn_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVORN.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvorn_v(float32x8_t a, float32x8_t b) + /// LASX: XVORN.V Vd.8S, Vj.8S, Vk.8S + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvorn_v(float64x4_t a, float64x4_t b) + /// LASX: XVORN.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvxor_v(int8x32_t a, int8x32_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvxor_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvxor_v(int16x16_t a, int16x16_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvxor_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvxor_v(int32x8_t a, int32x8_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvxor_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvxor_v(int64x4_t a, int64x4_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvxor_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvxor_v(float32x8_t a, float32x8_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvxor_v(float64x4_t a, float64x4_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvslli_b(int8x32_t a, const int n) + /// LASX: XVSLLI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvslli_b(uint8x32_t a, const int n) + /// LASX: XVSLLI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvslli_h(int16x16_t a, const int n) + /// LASX: XVSLLI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvslli_h(uint16x16_t a, const int n) + /// LASX: XVSLLI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvslli_w(uint32x8_t a, const int n) + /// LASX: XVSLLI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvslli_w(uint32x8_t a, const int n) + /// LASX: XVSLLI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvslli_d(int64x4_t a, const int n) + /// LASX: XVSLLI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvslli_d(uint64x4_t a, const int n) + /// LASX: XVSLLI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvbsll_v(int8x32_t a, const int shift) + /// LASX: XVBSLL.V Xd.32B, Xj.32B, ui4 + /// + public static Vector256 ShiftLeftLogicalByByteEach128(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvbsll_v(uint8x32_t a, const int shift) + /// LASX: XVBSLL.V Xd.32B, Xj.32B, ui4 + /// + public static Vector256 ShiftLeftLogicalByByteEach128(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// int8x32_t xvsll_b(int8x32_t a, int8x32_t b) + /// LASX: XVSLL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsll_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVSLL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16 xvsll_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSLL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16 xvsll_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSLL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8 xvsll_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSLL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8 xvsll_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSLL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4 xvsll_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSLL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4 xvsll_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSLL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsrli_b(uint8x32_t a, const int n) + /// LASX: XVSRLI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsrli_b(uint8x32_t a, const int n) + /// LASX: XVSRLI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsrli_h(uint16x16_t a, const int n) + /// LASX: XVSRLI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsrli_h(uint16x16_t a, const int n) + /// LASX: XVSRLI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsrli_w(uint32x8_t a, const int n) + /// LASX: XVSRLI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsrli_w(uint32x8_t a, const int n) + /// LASX: XVSRLI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsrli_d(uint64x4_t a, const int n) + /// LASX: XVSRLI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsrli_d(uint64x4_t a, const int n) + /// LASX: XVSRLI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvbsrl_v(int8x32_t a, const int shift) + /// LASX: XVBSRL.V Xd.32B, Xj.32B, ui4 + /// + public static Vector256 ShiftRightLogicalByByteEach128(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvbsrl_v(uint8x32_t a, const int shift) + /// LASX: XVBSRL.V Xd.32B, Xj.32B, ui4 + /// + public static Vector256 ShiftRightLogicalByByteEach128(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// int8x32_t xvsrl_b(int8x32_t a, int8x32_t b) + /// LASX: XVSRL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsrl_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVSRL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16 xvsrl_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16 xvsrl_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSRL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8 xvsrl_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8 xvsrl_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSRL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4 xvsrl_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4 xvsrl_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSRL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsrlri_b(uint8x32_t a, const int n) + /// LASX: XVSRLRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsrlri_b(uint8x32_t a, const int n) + /// LASX: XVSRLRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsrlri_h(uint16x16_t a, const int n) + /// LASX: XVSRLRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsrlri_h(uint16x16_t a, const int n) + /// LASX: XVSRLRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsrlri_w(uint32x8_t a, const int n) + /// LASX: XVSRLRI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsrlri_w(uint32x8_t a, const int n) + /// LASX: XVSRLRI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsrlri_d(uint64x4_t a, const int n) + /// LASX: XVSRLRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsrlri_d(uint64x4_t a, const int n) + /// LASX: XVSRLRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvsrlr_b(int8x32_t a, int8x32_t b) + /// LASX: XVSRLR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsrlr_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVSRLR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16 xvsrlr_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRLR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16 xvsrlr_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSRLR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8 xvsrlr_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRLR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8 xvsrlr_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSRLR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4 xvsrlr_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRLR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4 xvsrlr_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSRLR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsrlrni_b_h(uint16x16_t left, uint16x16_t right, const int n) + /// LASX: XVSRLRNI.B.H Xd, Xj, ui4 ///NOTE: The Vd is both input and output, so the left shoule be ref type!!! + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvsrlrni_b_h(int16x16_t left, int16x16_t right, const int n) + /// LASX: XVSRLRNI.B.H Xd, Xj, ui4 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsrlrni_h_w(int32x8_t left, int32x8_t right, const int n) + /// LASX: XVSRLRNI.H.W Xd, Xj, ui5 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsrlrni_h_w(uint32x8_t left, uint32x8_t right, const int n) + /// LASX: XVSRLRNI.H.W Xd, Xj, ui5 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsrlrni_w_d(int64x4_t left, int64x4_t right, const int n) + /// LASX: XVSRLRNI.W.D Xd, Xj, ui6 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsrlrni_w_d(uint64x4_t left, uint64x4_t right, const int n) + /// LASX: XVSRLRNI.W.D Xd, Xj, ui6 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x4_t xvsrlrni_d_q(int128x2_t left, int128x2_t right, const int n) + ///// LASX: XVSRLRNI.D.Q Xd, Xj, ui7 + ///// + //public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t xvsrlrn_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRLRN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t xvsrlrn_b_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSRLRN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t xvsrlrn_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRLRN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t xvsrlrn_h_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSRLRN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t xvsrlrn_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRLRN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t xvsrlrn_w_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSRLRN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t xvsrarni_b_h(int16x16_t left, int16x16_t right, const int n) + /// LASX: XVSRARNI.B.H Xd, Xj, ui4 ///NOTE: The Vd is both input and output, so the left shoule be ref type!!! + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsrarni_h_w(int32x8_t left, int32x8_t right, const int n) + /// LASX: XVSRARNI.H.W Xd, Xj, ui5 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsrarni_w_d(int64x4_t left, int64x4_t right, const int n) + /// LASX: XVSRARNI.W.D Xd, Xj, ui6 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x4_t xvsrarni_d_q(int128x2_t left, int128x2_t right, const int n) + ///// LASX: XVSRARNI.D.Q Xd, Xj, ui7 + ///// + //public static Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t xvsrarn_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRARN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t xvsrarn_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRARN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t xvsrarn_h_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSRARN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t xvsrarn_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRARN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvsrai_b(int8x32_t a, const int n) + /// LASX: XVSRAI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsrai_h(int16x16_t a, const int n) + /// LASX: XVSRAI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsrai_w(int32x8_t a, const int n) + /// LASX: XVSRAI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvsrai_d(int64x4_t a, const int n) + /// LASX: XVSRAI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_txvsra_b(int8x32_t a, int8x32_t b) + /// LASX: XVSRA.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16xvsra_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRA.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8xvsra_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRA.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4xvsra_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRA.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvsrari_b(int8x32_t a, const int n) + /// LASX: XVSRARI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsrari_h(int16x16_t a, const int n) + /// LASX: XVSRARI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsrari_w(int32x8_t a, const int n) + /// LASX: XVSRARI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvsrari_d(int64x4_t a, const int n) + /// LASX: XVSRARI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvsrar_b(int8x32_t a, int8x32_t b) + /// LASX: XVSRAR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16 xvsrar_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRAR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8 xvsrar_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRAR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4 xvsrar_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRAR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvrotri_b(uint8x32_t a, const int n) + /// LASX: XVROTRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvrotri_b(uint8x32_t a, const int n) + /// LASX: XVROTRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvrotri_h(uint16x16_t a, const int n) + /// LASX: XVROTRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvrotri_h(uint16x16_t a, const int n) + /// LASX: XVROTRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvrotri_w(uint32x8_t a, const int n) + /// LASX: XVROTRI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvrotri_w(uint32x8_t a, const int n) + /// LASX: XVROTRI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvrotri_d(uint64x4_t a, const int n) + /// LASX: XVROTRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvrotri_d(uint64x4_t a, const int n) + /// LASX: XVROTRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvrotr_b(int8x32_t a, int8x32_t b) + /// LASX: XVROTR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvrotr_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVROTR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16 xvrotr_h(int16x16_t value, int16x16_t shift) + /// LASX: XVROTR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16 xvrotr_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVROTR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8 xvrotr_w(int32x8_t value, int32x8_t shift) + /// LASX: XVROTR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8 xvrotr_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVROTR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4 xvrotr_d(int64x4_t value, int64x4_t shift) + /// LASX: XVROTR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4 xvrotr_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVROTR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvsigncov_b(int8x32_t a) + /// LASX: XVSIGNCOV.B Xd.32B, Xj.32B, Xj.32B + /// + public static Vector256 Abs(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsigncov_h(int16x16_t a) + /// LASX: XVSIGNCOV.H Xd.16H, Xj.16H, Xj.16H + /// + public static Vector256 Abs(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsigncov_w(int32x8_t a) + /// LASX: XVSIGNCOV.W Xd.8W, Xj.8W, Xj.8W + /// + public static Vector256 Abs(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvsigncov_d(int64xx_t a) + /// LASX: XVSIGNCOV.D Xd.4D, Xj.4D, Xj.4D + /// + public static Vector256 Abs(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvbitclri_w(float32x8_t a) + /// LASX: XVBITCLRI.W Xd.8S, Xd.8S, 31 + /// + public static Vector256 Abs(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvbitclri_d(float64x4_t a) + /// LASX: XVBITCLRI.D Xd.4D, Xj.4D, 63 + /// + public static Vector256 Abs(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfrintrm_s(float32x8_t a) + /// LASX: XVFRINTRM.S Xd.8S, Xj.8S + /// + public static Vector256 Floor(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfrintrm_d(float64x4_t a) + /// LASX: XVFRINTRM.D Xd.4D, Xj.4D + /// + public static Vector256 Floor(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfrintrp_s(float32x8_t a) + /// LASX: XVFRINTRP.S Xd.8S, Xj.8S + /// + public static Vector256 Ceiling(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfrintrp_d(float64x4_t a) + /// LASX: XVFRINTRP.D Xd.4D, Xj.4D + /// + public static Vector256 Ceiling(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfrintrz_s(float32x8_t a) + /// LASX: XVFRINTRZ.S Xd.8S, Xj.8S + /// + public static Vector256 RoundToZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfrintrz_d(float64x4_t a) + /// LASX: XVFRINTRZ.D Xd.4D, Xj.4D + /// + public static Vector256 RoundToZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfrintrm_s(float32x8_t a) + /// LASX: XVFRINTRM.S Xd.8S, Xj.8S + /// + public static Vector256 RoundToNegativeInfinity(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfrintrm_d(float64x4_t a) + /// LASX: XVFRINTRM.D Xd.4D, Xj.4D + /// + public static Vector256 RoundToNegativeInfinity(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvfrintrp_s(float32x8_t a) + /// LASX: XVFRINTRP.S Xd.8S, Xj.8S + /// + public static Vector256 RoundToPositiveInfinity(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvfrintrp_d(float64x4_t a) + /// LASX: XVFRINTRP.D Xd.4D, Xj.4D + /// + public static Vector256 RoundToPositiveInfinity(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvinsgr2vr_w(int32x8_t v, int32_t data, const int index) + /// LASX: XVINSGR2VR.W Xd.S, Rj, ui3 + /// + public static Vector256 Insert(Vector256 vector, int data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvinsgr2vr_w(uint32x8_t v, uint32_t data, const int index) + /// LASX: XVINSGR2VR.W Xd.S, Rj, ui3 + /// + public static Vector256 Insert(Vector256 vector, uint data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvinsgr2vr_d(int64x4_t v, int64_t data, const int index) + /// LASX: XVINSGR2VR.D Xd.D, Rj, ui2 + /// + public static Vector256 Insert(Vector256 vector, long data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvinsgr2vr_d(uint64x4_t v, uint64_t data, const int index) + /// LASX: XVINSGR2VR.D Xd.D, Rj, ui2 + /// + public static Vector256 Insert(Vector256 vector, ulong data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvinsve0_w(float32x8_t v, float32_t data, const int index) + /// LASX: XVINSVE0.W Xd.S, Xj.S[0], ui3 + /// + public static Vector256 Insert(Vector256 vector, float data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvinsve0_d(float64x4_t v, float64_t data, const int index) + /// LASX: XVINSVE0.D Xd.D, Xj.D[0], ui2 + /// + public static Vector256 Insert(Vector256 vector, double data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvreplgr2vr_b(int8_t value) + /// LASX: XVREPLGR2VR.B Xd.32B, Rj + /// + public static Vector256 DuplicateToVector256(sbyte value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvreplgr2vr_b(uint8_t value) + /// LASX: XVREPLGR2VR.B Xd.32B, Rj + /// + public static Vector256 DuplicateToVector256(byte value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvreplgr2vr_h(int16_t value) + /// LASX: XVREPLGR2VR.H Xd.16H, Rj + /// + public static Vector256 DuplicateToVector256(short value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvreplgr2vr_h(uint16_t value) + /// LASX: XVREPLGR2VR.H Xd.16H, Rj + /// + public static Vector256 DuplicateToVector256(ushort value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvreplgr2vr_w(int32_t value) + /// LASX: XVREPLGR2VR.W Xd.8W, Rj + /// + public static Vector256 DuplicateToVector256(int value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvreplgr2vr_w(uint32_t value) + /// LASX: XVREPLGR2VR.W Xd.8W, Rj + /// + public static Vector256 DuplicateToVector256(uint value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvreplgr2vr_d(int64_t value) + /// LASX: XVREPLGR2VR.D Xd.4D, Rj + /// + public static Vector256 DuplicateToVector256(long value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvreplgr2vr_d(uint64_t value) + /// LASX: XVREPLGR2VR.D Xd.4D, Rj + /// + public static Vector256 DuplicateToVector256(ulong value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvreplve0_w(float32_t value) + /// LASX: XVREPLVE0.W Xd.8S, Xj.S[0] + /// + public static Vector256 DuplicateToVector256(float value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvreplve0_d(float64_t value) + /// LASX: XVREPLVE0.D Xd.4D, Xj.D[0] + /// + public static Vector256 DuplicateToVector256(double value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvffint_s_w(int32x8_t a) + /// LASX: XVFFINT.S.W Xd.8S, Xj.8W + /// + public static Vector256 ConvertToSingle(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x8_t xvffint_s_wu(uint32x8_t a) + /// LASX: XVFFINT.S.WU Xd.8S, Xj.8W + /// + public static Vector256 ConvertToSingle(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvffint_d_l(int64x4_t a) + /// LASX: XVFFINT.D.L Xd.4D, Xj.4D + /// + public static Vector256 ConvertToDouble(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x4_t xvffint_d_lu(uint64x4_t a) + /// LASX: XVFFINT.D.LU Xd.4D, Xj.4D + /// + public static Vector256 ConvertToDouble(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetnez_v(uint8x32_t value) + /// LASX: XVSETNEZ.V cd, Xj.32B + /// + public static bool HasElementsNotZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvseteqz_v(uint8x32_t value) + /// LASX: XVSETEQZ.V cd, Xj.32B + /// + public static bool AllElementsIsZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetallnez_b(int8x32_t value) + /// LASX: XVSETALLNEZ.B cd, Xj.32B + /// + public static bool AllElementsNotZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetallnez_b(uint8x32_t value) + /// LASX: XVSETALLNEZ.B cd, Xj.32B + /// + public static bool AllElementsNotZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetallnez_h(int16x16_t value) + /// LASX: XVSETALLNEZ.H cd, Xj.16H + /// + public static bool AllElementsNotZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetallnez_h(uint16x16_t value) + /// LASX: XVSETALLNEZ.H cd, Xj.16H + /// + public static bool AllElementsNotZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetallnez_w(int32x8_t value) + /// LASX: XVSETALLNEZ.W cd, Xj.8W + /// + public static bool AllElementsNotZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetallnez_w(uint32x8_t value) + /// LASX: XVSETALLNEZ.W cd, Xj.8W + /// + public static bool AllElementsNotZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetallnez_w(int64x8_t value) + /// LASX: XVSETALLNEZ.D cd, Xj.4D + /// + public static bool AllElementsNotZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetallnez_w(uint64x8_t value) + /// LASX: XVSETALLNEZ.D cd, Xj.4D + /// + public static bool AllElementsNotZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetanyeqz_b(int8x32_t value) + /// LASX: XVSETANYEQZ.B cd, Xj.32B + /// + public static bool HasElementsIsZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetanyeqz_b(uint8x32_t value) + /// LASX: XVSETANYEQZ.B cd, Xj.32B + /// + public static bool HasElementsIsZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetanyeqz_h(int16x16_t value) + /// LASX: XVSETANYEQZ.H cd, Xj.16H + /// + public static bool HasElementsIsZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetanyeqz_h(uint16x16_t value) + /// LASX: XVSETANYEQZ.H cd, Xj.16H + /// + public static bool HasElementsIsZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetanyeqz_w(int32x8_t value) + /// LASX: XVSETANYEQZ.W cd, Xj.8W + /// + public static bool HasElementsIsZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetanyeqz_w(uint32x8_t value) + /// LASX: XVSETANYEQZ.W cd, Xj.8W + /// + public static bool HasElementsIsZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetanyeqz_w(int64x8_t value) + /// LASX: XVSETANYEQZ.D cd, Xj.4D + /// + public static bool HasElementsIsZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool xvsetanyeqz_w(uint64x8_t value) + /// LASX: XVSETANYEQZ.D cd, Xj.4D + /// + public static bool HasElementsIsZero(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32 xvsrlni_b_h(int16x16_t left, int16x16_t right, shift) + /// LASX: XVSRLNI.B.H Xd, Xj, ui4 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32 xvsrlni_b_h(uint16x16_t left, uint16x16_t right, shift) + /// LASX: XVSRLNI.B.H Xd, Xj, ui4 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16 xvsrlni_h_w(int32x8_t left, int32x8_t right, shift) + /// LASX: XVSRLNI.H.W Xd, Xj, ui5 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16 xvsrlni_h_w(uint32x8_t left, uint32x8_t right, shift) + /// LASX: XVSRLNI.H.W Xd, Xj, ui5 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8 xvsrlni_w_d(int64x4_t left, int64x4_t right, shift) + /// LASX: XVSRLNI.W.D Xd, Xj, ui6 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8 xvsrlni_w_d(uint64x4_t left, uint64x4_t right, shift) + /// LASX: XVSRLNI.W.D Xd, Xj, ui6 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint64x4 xvsrlni_d_q(uint128x2_t left, uint128x2_t right, shift) + ///// LASX: XVSRLNI.D.Q Xd.2Q, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t xvsrln_b_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSRLN.B.H Xd.8B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t xvsrln_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRLN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t xvsrln_h_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSRLN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t xvsrln_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRLN.W.D Xd.4W, Xj.4D, Xk.2D + /// + public static Vector128 ShiftRightLogicalNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t xvsrln_w_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSRLN.W.D Xd.4W, Xj.4D, Xk.2D + /// + public static Vector128 ShiftRightLogicalNarrowingLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvssrlni_b_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRLNI.B.H Xd.32B, Xj.16H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvssrlni_b_h(uint16x16_t left, uint16x16_t right, const byte n) + /// LASX: XVSSRLNI.B.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvssrlni_h_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRLNI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssrlni_h_w(uint32x8_t left, uint32x8_t right, const byte n) + /// LASX: XVSSRLNI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvssrlni_w_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRLNI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvssrlni_w_d(uint64x4_t left, uint64x4_t right, const byte n) + /// LASX: XVSSRLNI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x4_t xvssrlni_d_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRLNI.D.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t xvssrln_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRLN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t xvssrln_b_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSSRLN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t xvssrln_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRLN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t xvssrln_h_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSSRLN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t xvssrln_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRLN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t xvssrln_w_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSSRLN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssrlni_bu_h(uint16x16_t left, uint16x16_t right, const byte n) + /// LASX: XVSSRLNI.BU.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssrlni_hu_w(uint32x8_t left, uint32x8_t right, const byte n) + /// LASX: XVSSRLNI.HU.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvssrlni_wu_d(uint64x4_t left, uint64x4_t right, const byte n) + /// LASX: XVSSRLNI.WU.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint64x4_t xvssrlni_du_q(uint128x2_t left, uint128x2_t right, const byte n) + ///// LASX: XVSSRLNI.DU.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t xvssrln_bu_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSSRLN.BU.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t xvssrln_hu_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSSRLN.HU.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t xvssrln_wu_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSSRLN.WU.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvssran_b_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRANI.B.H Xd.32B, Xj.16H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvssran_h_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRANI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvssran_w_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRANI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x4_t xvssran_d_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRANI.D.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t xvssran_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRAN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t xvssran_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRAN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t xvssran_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRAN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssrani_bu_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRANI.BU.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssrani_hu_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRANI.HU.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvssrani_wu_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRANI.WU.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint64x4_t xvssrani_du_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRANI.DU.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t xvssran_bu_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRAN.BU.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t xvssran_hu_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRAN.HU.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t xvssran_wu_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRAN.WU.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvssrlrni_b_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRLRNI.B.H Xd.32B, Xj.16H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssrlrni_b_h(uint16x16_t left, uint16x16_t right, const byte n) + /// LASX: XVSSRLRNI.B.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvssrlrni_h_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRLRNI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssrlrni_h_w(uint32x8_t left, uint32x8_t right, const byte n) + /// LASX: XVSSRLRNI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvssrlrni_w_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRLRNI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvssrlrni_w_d(uint64x4_t left, uint64x4_t right, const byte n) + /// LASX: XVSSRLRNI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x4_t xvssrlrni_d_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRLRNI.D.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t xvssrlrn_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRLRN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t xvssrlrn_b_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSSRLRN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t xvssrlrn_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRLRN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t xvssrlrn_h_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSSRLRN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t xvssrlrn_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRLRN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t xvssrlrn_w_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSSRLRN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssrlrni_bu_h(uint16x16_t left, uint16x16_t right, const byte n) + /// LASX: XVSSRLRNI.BU.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssrlrni_hu_w(uint32x8_t left, uint32x8_t right, const byte n) + /// LASX: XVSSRLRNI.HU.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvssrlrni_wu_d(uint64x4_t left, uint64x4_t right, const byte n) + /// LASX: XVSSRLRNI.WU.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint64x4_t xvssrlrni_du_q(uint128x2_t left, uint128x2_t right, const byte n) + ///// LASX: XVSSRLRNI.DU.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t xvssrlrn_bu_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSSRLRN.BU.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t xvssrlrn_hu_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSSRLRN.HU.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t xvssrlrn_wu_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSSRLRN.WU.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvssrarn_b_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRARNI.B.H Xd.32B, Xj.16H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvssrarn_h_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRARNI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvssrarn_w_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRARNI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x4_t xvssrarn_d_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRARNI.D.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t xvssrarn_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRARN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t xvssrarn_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRARN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t xvssrarn_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRARN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssrarni_bu_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRARNI.BU.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvssrarni_hu_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRARNI.HU.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvssrarni_wu_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRARNI.WU.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint64x4_t xvssrarni_du_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRARNI.DU.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t xvssrarn_bu_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRARN.BU.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t xvssrarn_hu_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRARN.HU.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t xvssrarn_wu_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRARN.WU.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvclo_b(int8x32_t a) + /// LASX: XVCLO.B Xd.32B, Xj.32B + /// + public static Vector256 LeadingSignCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvclo_h(int16x16_t a) + /// LASX: XVCLO.H Xd.16H, Xj.16H + /// + public static Vector256 LeadingSignCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvclo_w(int32x8_t a) + /// LASX: XVCLO.W Xd.8W, Xj.8W + /// + public static Vector256 LeadingSignCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvclo_d(int64x4_t a) + /// LASX: XVCLO.D Xd.4D, Xj.4D + /// + public static Vector256 LeadingSignCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvclz_b(int8x32_t a) + /// LASX: XVCLZ.B Xd.32B, Xj.32B + /// + public static Vector256 LeadingZeroCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvclz_b(uint8x32_t a) + /// LASX: XVCLZ.B Xd.32B, Xj.32B + /// + public static Vector256 LeadingZeroCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvclz_h(int16x16_t a) + /// LASX: XVCLZ.H Xd.16H, Xj.16H + /// + public static Vector256 LeadingZeroCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvclz_h(uint16x16_t a) + /// LASX: XVCLZ.H Xd.16H, Xj.16H + /// + public static Vector256 LeadingZeroCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvclz_w(int32x8_t a) + /// LASX: XVCLZ.W Xd.8W, Xj.8W + /// + public static Vector256 LeadingZeroCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvclz_w(uint32x8_t a) + /// LASX: XVCLZ.W Xd.8W, Xj.8W + /// + public static Vector256 LeadingZeroCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvclz_d(int64x4_t a) + /// LASX: XVCLZ.D Xd.4D, Xj.4D + /// + public static Vector256 LeadingZeroCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvclz_d(uint64x4_t a) + /// LASX: XVCLZ.D Xd.4D, Xj.4D + /// + public static Vector256 LeadingZeroCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvpcnt_b(int8x32_t a) + /// LASX: XVPCNT_B Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvpcnt_b(uint8x32_t a) + /// LASX: XVPCNT_B Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvpcnt_h(int16x16_t a) + /// LASX: XVPCNT_H Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvpcnt_h(uint16x16_t a) + /// LASX: XVPCNT_H Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvpcnt_w(int32x8_t a) + /// LASX: XVPCNT_W Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvpcnt_w(uint32x8_t a) + /// LASX: XVPCNT_W Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvpcnt_d(int64x4_t a) + /// LASX: XVPCNT_D Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvpcnt_d(uint64x4_t a) + /// LASX: XVPCNT_D Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvperm_w(int32x8_t vec, int32x8_t idx) + /// LASX: XVPERM.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorShuffle(Vector256 vector, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvperm_w(uint32x8_t vec, uint32x8_t idx) + /// LASX: XVPERM.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorShuffle(Vector256 vector, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvpermi_w(int64x4_t vec, uint8_t idx) + /// LASX: XVPERMI.D Xd.4D, Xj.4D, ui8 + /// + public static Vector256 VectorShuffle(Vector256 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvpermi_w(uint64x4_t vec, uint8_t idx) + /// LASX: XVPERMI.D Xd.4D, Xj.4D, ui8 + /// + public static Vector256 VectorShuffle(Vector256 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int128x2_t xvpermi_w(int128x2_t vec0, int128x2_t vec1, uint8_t idx) + /// LASX: XVPERMI.D Xd.2Q, Xj.2Q, ui8 ///NOTE: The Xd is both input and output. + /// + public static Vector256 VectorShuffle(Vector256 vector0, Vector256 vector1, const byte indexs) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint8x32_t xvshuf_b(uint8x32_t vec, uint8x32_t idx) + ///// LASX: XVSHUF.B Xd.32B, Xj.32B, Xk.32B, Xa.32B + ///// + //public static Vector256 VectorShuffleEach128(Vector256 vector, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + ///// + ///// int8x32_t xvshuf_b(int8x32_t vec, int8x32_t idx) + ///// LASX: XVSHUF.B Xd.32B, Xj.32B, Xk.32B, Xa.32B + ///// + //public static Vector256 VectorShuffleEach128(Vector256 vector, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvshuf_b(uint8x32_t vec0, uint8x32_t vec1, uint8x32_t idx) + /// LASX: XVSHUF.B Xd.32B, Xj.32B, Xk.32B, Xa.32B + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvshuf_b(int8x32_t vec0, int8x32_t vec1, int8x32_t idx) + /// LASX: XVSHUF.B Xd.32B, Xj.32B, Xk.32B, Xa.32B + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + ///// + ///// int16x16_t xvshuf_h(int16x16_t vec, int16x16_t idx) + ///// LASX: XVSHUF.H Xd.16H, Xj.16H, Xk.16H //NOTE: Xd is both input and output while input as index. + ///// + //public static Vector256 VectorShuffleEach128(Vector256 vector, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint16x16_t xvshuf_h(uint16x16_t vec, uint16x16_t idx) + ///// LASX: XVSHUF.H Xd.16H, Xj.16H, Xk.16H //NOTE: Xd is both input and output while input as index. + ///// + //public static Vector256 VectorShuffleEach128(Vector256 vector, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvshuf_h(int16x16_t vec0, int16x16_t vec1, int16x16_t idx) + /// LASX: XVSHUF.H Xd.16H, Xj.16H, Xk.16H //NOTE: Xd is both input and output while input as index. + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvshuf_h(uint16x16_t vecj, uint16x16_t veck, uint16x16_t idx) + /// LASX: XVSHUF.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvpermi_w(int32x8_t vec, uint8_t idx) + /// LASX: XVPERMI.W Xd.8W, Xj.8W, ui8 + /// + public static Vector256 VectorShuffleEach128(Vector256 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvpermi_w(uint32x8_t vec, uint8_t idx) + /// LASX: XVPERMI.W Xd.8W, Xj.8W, ui8 + /// + public static Vector256 VectorShuffleEach128(Vector256 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvshuf_w(int32x8_t vec0, int32x8_t vec1, int32x8_t idx) + /// LASX: XVSHUF.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvshuf_w(uint32x8_t vecj, uint32x8_t veck, uint32x8_t idx) + /// LASX: XVSHUF.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvshuf_d(int64x4_t vec0, int64x4_t vec1, int64x4_t idx) + /// LASX: XVSHUF.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvshuf_d(uint64x4_t vecj, uint64x4_t veck, uint64x4_t idx) + /// LASX: XVSHUF.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvshuf4i_b(int8x32_t vec, uint8_t idx) + /// LASX: XVSHUF4I.B Xd.32B, Xj.32B, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvshuf4i_b(uint8x32_t vec, uint8_t idx) + /// LASX: XVSHUF4I.B Xd.32B, Xj.32B, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvshuf4i_h(int16x16_t vec, uint8_t idx) + /// LASX: XVSHUF4I.H Xd.16H, Xj.16H, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvshuf4i_h(uint16x16_t vec, uint8_t idx) + /// LASX: XVSHUF4I.H Xd.16H, Xj.16H, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvshuf4i_w(int32x8_t vec, uint8_t idx) + /// LASX: XVSHUF4I.W Xd.8W, Xj.8W, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvshuf4i_w(uint32x8_t vec, uint8_t idx) + /// LASX: XVSHUF4I.W Xd.8W, Xj.8W, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvshuf4i_d(int64x4_t vec0, uint64x4_t vec1, uint8_t idx) + /// LASX: XVSHUF4I.D Xd.4D, Xj.4D, ui4 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector0, Vector256 vector1, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvshuf4i_d(uint64x4_t vec0, uint64x4_t vec1, uint8_t idx) + /// LASX: XVSHUF4I.D Xd.4D, Xj.4D, ui4 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector0, Vector256 vector1, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvilvl_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVILVL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvilvl_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVILVL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvilvl_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVILVL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvilvl_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVILVL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvilvl_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVILVL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvilvl_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVILVL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvilvl_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVILVL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvilvl_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVILVL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvilvh_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVILVH.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvilvh_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVILVH.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvilvh_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVILVH.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvilvh_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVILVH.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvilvh_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVILVH.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvilvh_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVILVH.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvilvh_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVILVH.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvilvh_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVILVH.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvpackev_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVPACKEV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvpackev_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVPACKEV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvpackev_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVPACKEV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvpackev_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVPACKEV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvpackev_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVPACKEV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvpackev_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVPACKEV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvpackev_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVPACKEV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvpackev_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVPACKEV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvpackod_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVPACKOD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvpackod_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVPACKOD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvpackod_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVPACKOD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvpackod_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVPACKOD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvpackod_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVPACKOD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvpackod_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVPACKOD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvpackod_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVPACKOD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvpackod_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVPACKOD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvpickev_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVPICKEV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvpickev_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVPICKEV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvpickev_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVPICKEV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvpickev_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVPICKEV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvpickev_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVPICKEV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvpickev_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVPICKEV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvpickev_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVPICKEV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvpickev_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVPICKEV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvpickod_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVPICKOD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvpickod_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVPICKOD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvpickod_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVPICKOD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvpickod_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVPICKOD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvpickod_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVPICKOD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvpickod_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVPICKOD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvpickod_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVPICKOD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvpickod_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVPICKOD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvrepl128vei(uint8x32_t vector, uint8_t idx) + /// LASX: XVREPL128VEI_B Xd.32B, Xj.32B, ui4 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvrepl128vei(int8x32_t vector, uint8_t idx) + /// LASX: XVREPL128VEI_B Xd.32B, Xj.32B, ui4 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvrepl128vei(int16x16_t vector, uint8_t idx) + /// LASX: XVREPL128VEI_H Xd.16H, Xj.16H, ui3 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvrepl128vei(uint16x16_t vector, uint8_t idx) + /// LASX: XVREPL128VEI_H Xd.16H, Xj.16H, ui3 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvrepl128vei(int32x8_t vector, uint8_t idx) + /// LASX: XVREPL128VEII_W Xd.8W, Xj.8W, ui2 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvrepl128vei(uint32x8_t vector, uint8_t idx) + /// LASX: XVREPL128VEII_W Xd.8W, Xj.8W, ui2 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvrepl128vei(int64x4_t vector, uint8_t idx) + /// LASX: XVREPL128VEII_D Xd.4D, Xj.4D, ui1 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvrepl128vei(uint64x4_t vector, uint8_t idx) + /// LASX: XVREPL128VEII_D Xd.4D, Xj.4D, ui1 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvextrins_b(int8x32_t vec, uint8_t idx) + /// LASX: XVEXTRINS.B Xd.32B, Xj.32B, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvextrins_b(uint8x32_t vec, uint8_t idx) + /// LASX: XVEXTRINS.B Xd.32B, Xj.32B, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvextrins_h(int16x16_t vec, uint8_t idx) + /// LASX: XVEXTRINS.H Xd.16H, Xj.16H, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvextrins_h(uint16x16_t vec, uint8_t idx) + /// LASX: XVEXTRINS.H Xd.16H, Xj.16H, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvextrins_w(int32x8_t vec, uint8_t idx) + /// LASX: XVEXTRINS.W Xd.8W, Xj.8W, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvextrins_w(uint32x8_t vec, uint8_t idx) + /// LASX: XVEXTRINS.W Xd.8W, Xj.8W, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvextrins_d(int64x4_t vec, uint8_t idx) + /// LASX: XVEXTRINS.D Xd.4D, Xj.4D, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvextrins_d(uint64x4_t vec, uint8_t idx) + /// LASX: XVEXTRINS.D Xd.4D, Xj.4D, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvsigncov_b(int8x32_t sign, int8x32_t data) + /// LASX: XVSIGNCOV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsigncov_h(int16x16_t sign, int16x16_t data) + /// LASX: XVSIGNCOV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsigncov_w(int32x8_t sign, int32x8_t data) + /// LASX: XVSIGNCOV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvsigncov_d(int64x4_t sign, int64x4_t data) + /// LASX: XVSIGNCOV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvbitclri_b(int8x32_t a, const int n) + /// LASX: XVBITCLRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvbitclri_b(uint8x32_t a, const int n) + /// LASX: XVBITCLRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvbitclri_h(int16x16_t a, const int n) + /// LASX: XVBITCLRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvbitclri_h(uint16x16_t a, const int n) + /// LASX: XVBITCLRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvbitclri_w(uint32x8_t a, const int n) + /// LASX: XVBITCLRI.W Xd.4W, Xj.4W, ui5 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvbitclri_w(uint32x8_t a, const int n) + /// LASX: XVBITCLRI.W Xd.4W, Xj.4W, ui5 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvbitclri_d(int64x4_t a, const int n) + /// LASX: XVBITCLRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvbitclri_d(uint64x4_t a, const int n) + /// LASX: XVBITCLRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvbitclr_b(int8x32_t a, int8x32_t b) + /// LASX: XVBITCLR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvbitclr_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVBITCLR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvbitclr_h(int16x16_t value, int16x16_t index) + /// LASX: XVBITCLR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvbitclr_h(uint16x16_t value, uint16x16_t index) + /// LASX: XVBITCLR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvbitclr_w(int32x8_t value, int32x8_t index) + /// LASX: XVBITCLR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvbitclr_w(uint32x8_t value, uint32x8_t index) + /// LASX: XVBITCLR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvbitclr_d(int64x4_t value, int64x4_t index) + /// LASX: XVBITCLR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvbitclr_d(uint64x4_t value, uint64x4_t index) + /// LASX: XVBITCLR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvbitseti_b(int8x32_t a, const int n) + /// LASX: XVBITSETI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvbitseti_b(uint8x32_t a, const int n) + /// LASX: XVBITSETI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvbitseti_h(int16x16_t a, const int n) + /// LASX: XVBITSETI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvbitseti_h(uint16x16_t a, const int n) + /// LASX: XVBITSETI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvbitseti_w(uint32x8_t a, const int n) + /// LASX: XVBITSETI.W Xd.4W, Xj.4W, ui5 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvbitseti_w(uint32x8_t a, const int n) + /// LASX: XVBITSETI.W Xd.4W, Xj.4W, ui5 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvbitseti_d(int64x4_t a, const int n) + /// LASX: XVBITSETI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvbitseti_d(uint64x4_t a, const int n) + /// LASX: XVBITSETI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvbitset_b(int8x32_t a, int8x32_t b) + /// LASX: XVBITSET.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvbitset_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVBITSET.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvbitset_h(int16x16_t value, int16x16_t index) + /// LASX: XVBITSET.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvbitset_h(uint16x16_t value, uint16x16_t index) + /// LASX: XVBITSET.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvbitset_w(int32x8_t value, int32x8_t index) + /// LASX: XVBITSET.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvbitset_w(uint32x8_t value, uint32x8_t index) + /// LASX: XVBITSET.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvbitset_d(int64x4_t value, int64x4_t index) + /// LASX: XVBITSET.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvbitset_d(uint64x4_t value, uint64x4_t index) + /// LASX: XVBITSET.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvbitrevi_b(int8x32_t a, const int n) + /// LASX: XVBITREVI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvbitrevi_b(uint8x32_t a, const int n) + /// LASX: XVBITREVI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvbitrevi_h(int16x16_t a, const int n) + /// LASX: XVBITREVI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvbitrevi_h(uint16x16_t a, const int n) + /// LASX: XVBITREVI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvbitrevi_w(uint32x8_t a, const int n) + /// LASX: XVBITREVI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvbitrevi_w(uint32x8_t a, const int n) + /// LASX: XVBITREVI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvbitrevi_d(int64x4_t a, const int n) + /// LASX: XVBITREVI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvbitrevi_d(uint64x4_t a, const int n) + /// LASX: XVBITREVI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvbitrev_b(int8x32_t a, int8x32_t b) + /// LASX: XVBITREV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvbitrev_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVBITREV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvbitrev_h(int16x16_t value, int16x16_t index) + /// LASX: XVBITREV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvbitrev_h(uint16x16_t value, uint16x16_t index) + /// LASX: XVBITREV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvbitrev_w(int32x8_t value, int32x8_t index) + /// LASX: XVBITREV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvbitrev_w(uint32x8_t value, uint32x8_t index) + /// LASX: XVBITREV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvbitrev_d(int64x4_t value, int64x4_t index) + /// LASX: XVBITREV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvbitrev_d(uint64x4_t value, uint64x4_t index) + /// LASX: XVBITREV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvfrstp_b(int8x32_t value, int8x32_t save) + /// LASX: XVFRSTP.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 IndexOfFirstNegativeElementEach128(Vector256 value, Vector256 save) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvfrstp_h(int16x16_t value, int16x16_t save) + /// LASX: XVFRSTP.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 IndexOfFirstNegativeElementEach128(Vector256 value, Vector256 save) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvfrstpi_b(int8x32_t value, uint8_t save) + /// LASX: XVFRSTPI.B Xd.32B, Xj.32B, ui4 + /// + public static Vector256 IndexOfFirstNegativeElementEach128(Vector256 value, const byte save) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvfrstpi_h(int16x16_t value, uint8_t save) + /// LASX: XVFRSTPI.H Xd.16H, Xj.16H, ui3 + /// + public static Vector256 IndexOfFirstNegativeElementEach128(Vector256 value, const byte save) { throw new PlatformNotSupportedException(); } + + /// + /// int8x32_t xvsat_b(int8x32_t value, uint8_t ui3) + /// LASX: XVSAT.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorSaturate(Vector256 value, [ConstantExpected(Max = (byte)(7))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// int16x16_t xvsat_h(int16x16_t value, uint8_t ui4) + /// LASX: XVSAT.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorSaturate(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t xvsat_w(int32x8_t value, uint8_t ui5) + /// LASX: XVSAT.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 VectorSaturate(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t xvsat_d(int64x4_t value, uint8_t ui6) + /// LASX: XVSAT.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorSaturate(Vector256 value, [ConstantExpected(Max = (byte)(63))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x32_t xvsat_bu(uint8x32_t value, uint8_t ui3) + /// LASX: XVSAT.BU Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorSaturateUnsigned(Vector256 value, [ConstantExpected(Max = (byte)(7))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x16_t xvsat_hu(uint16x16_t value, uint8_t ui4) + /// LASX: XVSAT.HU Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorSaturateUnsigned(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x8_t xvsat_wu(uint32x8_t value, uint8_t ui5) + /// LASX: XVSAT.WU Xd.8W, Xj.8W, ui5 + /// + public static Vector256 VectorSaturateUnsigned(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x4_t xvsat_du(uint64x4_t value, uint8_t ui6) + /// LASX: XVSAT.DU Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorSaturateUnsigned(Vector256 value, [ConstantExpected(Max = (byte)(63))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// int32x8_t vfclass_s(float32x8_t a) + /// LASX: XVFCLASS.S Vd.8S, Vj.8S + /// + public static Vector256 FloatClass(Vector256 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x4_t vfclass_d(float64x4_t a) + /// LASX: XVFCLASS.D Vd.4D, Vj.4D + /// + public static Vector256 FloatClass(Vector256 value) { throw new PlatformNotSupportedException(); } + } +} diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lasx.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lasx.cs new file mode 100644 index 00000000000000..1fa8728238d49a --- /dev/null +++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lasx.cs @@ -0,0 +1,5751 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Runtime.CompilerServices; + +namespace System.Runtime.Intrinsics.LoongArch +{ + /// + /// This class provides access to the LASX-256bits hardware instructions via intrinsics + /// + [Intrinsic] + [CLSCompliant(false)] + public abstract class Lasx : Lsx + { + internal Lasx() { } + + public static new bool IsSupported { get => IsSupported; } + + /// + /// int8x32_t xvadd_b(int8x32_t a, int8x32_t b) + /// LASX: XVADD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Add(Vector256 left, Vector256 right) => Add(left, right); + + /// + /// uint8x32_t xvadd_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVADD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Add(Vector256 left, Vector256 right) => Add(left, right); + + /// + /// int16x16_t xvadd_h(int16x16_t a, int16x16_t b) + /// LASX: XVADD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Add(Vector256 left, Vector256 right) => Add(left, right); + + /// + /// uint16x16_t xvadd_h(uint16x16_t a, uint16x16_t b) + /// LASX: XVADD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Add(Vector256 left, Vector256 right) => Add(left, right); + + /// + /// int32x8_t xvadd_w(int32x8_t a, int32x8_t b) + /// LASX: XVADD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Add(Vector256 left, Vector256 right) => Add(left, right); + + /// + /// uint32x8_t xvadd_w(uint32x8_t a, uint32x8_t b) + /// LASX: XVADD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Add(Vector256 left, Vector256 right) => Add(left, right); + + /// + /// int64x4_t xvadd_d(int64x4_t a, int64x4_t b) + /// LASX: XVADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Add(Vector256 left, Vector256 right) => Add(left, right); + + /// + /// uint64x4_t xvadd_d(uint64x4_t a, uint64x4_t b) + /// LASX: XVADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Add(Vector256 left, Vector256 right) => Add(left, right); + + /// + /// float32x8_t xvfadd_s(float32x8_t a, float32x8_t b) + /// LASX: XVFADD.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Add(Vector256 left, Vector256 right) => Add(left, right); + + /// + /// float64x4_t xvfadd_d(float64x4_t a, float64x4_t b) + /// LASX: XVFADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Add(Vector256 left, Vector256 right) => Add(left, right); + + /// + /// int8x32_t xvsadd_b(int8x32_t a, int8x32_t b) + /// LASX: XVSADD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) => AddSaturate(left, right); + + /// + /// int16x16_t xvsadd_h(int16x16_t a, int16x16_t b) + /// LASX: XVSADD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) => AddSaturate(left, right); + + /// + /// int32x8_t xvsadd_w(int32x8_t a, int32x8_t b) + /// LASX: XVSADD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) => AddSaturate(left, right); + + /// + /// int64x4_t xvsadd_d(int64x4_t a, int64x4_t b) + /// LASX: XVSADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) => AddSaturate(left, right); + + /// + /// uint8x32_t xvsadd_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSADD.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) => AddSaturate(left, right); + + /// + /// uint16x16_t xvsadd_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSADD.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) => AddSaturate(left, right); + + /// + /// uint32x8_t xvsadd_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSADD.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) => AddSaturate(left, right); + + /// + /// uint64x4_t xvsadd_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSADD.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 AddSaturate(Vector256 left, Vector256 right) => AddSaturate(left, right); + + /// + /// int16x16_t xvhaddw_h_b(int3x32_t a, int3x32_t b) + /// LASX: XVHADDW.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) => AddOddEvenElementsWidening(left, right); + + /// + /// uint16x16_t xvhaddw_hu_bu(uint3x32_t a, uint3x32_t b) + /// LASX: XVHADDW.HU.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) => AddOddEvenElementsWidening(left, right); + + /// + /// int32x8_t xvhaddw_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVHADDW.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) => AddOddEvenElementsWidening(left, right); + + /// + /// uint32x8_t xvhaddw_wu_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVHADDW.WU.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) => AddOddEvenElementsWidening(left, right); + + /// + /// int64x4_t xvhaddw_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVHADDW.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) => AddOddEvenElementsWidening(left, right); + + /// + /// uint64x4_t xvhaddw_du_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVHADDW.DU.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) => AddOddEvenElementsWidening(left, right); + + /// + /// int128x2_t xvhaddw_q_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVHADDW.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) => AddOddEvenElementsWidening(left, right); + + /// + /// uint128x2_t xvhaddw_qu_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVHADDW.QU.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddOddEvenElementsWidening(Vector256 left, Vector256 right) => AddOddEvenElementsWidening(left, right); + + /// + /// int16x16_t xvaddwev_h_b(int8x32_t a, int8x32_t b) + /// LASX: XVADDWEV.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// uint16x16_t xvaddwev_h_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVADDWEV.H.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// int32x8_t xvaddwev_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVADDWEV.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// uint32x8_t xvaddwev_w_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVADDWEV.W.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// int64x4_t xvaddwev_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVADDWEV.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// uint64x4_t xvaddwev_d_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVADDWEV.D.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// int128x2_t xvaddwev_q_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVADDWEV.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// uint128x2_t xvaddwev_q_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVADDWEV.Q.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// int16x16_t xvaddwod_h_b(int8x32_t a, int8x32_t b) + /// LASX: XVADDWOD.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// uint16x16_t xvaddwod_h_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVADDWOD.H.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// int32x8_t xvaddwod_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVADDWOD.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// uint32x8_t xvaddwod_w_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVADDWOD.W.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// int64x4_t xvaddwod_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVADDWOD.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// uint64x4_t xvaddwod_d_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVADDWOD.D.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// int128x2_t xvaddwod_q_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVADDWOD.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// uint128x2_t xvaddwod_q_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVADDWOD.Q.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// int16x16_t xvaddwev_h_bu_b(int8x32_t a, int8x32_t b) + /// LASX: XVADDWEV.H.BU.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// int32x8_t xvaddwev_w_hu_h(int16x16_t a, int16x16_t b) + /// LASX: XVADDWEV.W.HU.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// int64x4_t xvaddwev_d_wu_w(int32x8_t a, int32x8_t b) + /// LASX: XVADDWEV.D.WU.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// int128x2_t xvaddwev_q_du_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVADDWEV.Q.DU.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddEvenElementsWidening(Vector256 left, Vector256 right) => AddEvenElementsWidening(left, right); + + /// + /// int16x16_t xvaddwod_h_bu_b(int8x32_t a, int8x32_t b) + /// LASX: XVADDWOD.H.BU.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// int32x8_t xvaddwod_w_hu_h(int16x16_t a, int16x16_t b) + /// LASX: XVADDWOD.W.HU.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// int64x4_t xvaddwod_d_wu_w(int32x8_t a, int32x8_t b) + /// LASX: XVADDWOD.D.WU.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// int128x2_t xvaddwod_q_du_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVADDWOD.Q.DU.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 AddOddElementsWidening(Vector256 left, Vector256 right) => AddOddElementsWidening(left, right); + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector128 AddHorizontalElements(Vector256 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.HU.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector128 AddHorizontalElements(Vector256 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector128 AddHorizontalElements(Vector256 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.WU.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector128 AddHorizontalElements(Vector256 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector128 AddHorizontalElements(Vector256 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.DU.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector128 AddHorizontalElements(Vector256 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector128 AddHorizontalElements(Vector256 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: XVHADDW.QU.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector128 AddHorizontalElements(Vector256 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: sum_all_float_elements witin vector. + /// + public static Vector64 AddHorizontalElements(Vector256 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LASX: sum_all_double_elements witin vector. + /// + public static Vector64 AddHorizontalElements(Vector256 value) => AddHorizontalElements(value); + + /// + /// int8x32_t xvsub_b(int8x32_t a, int8x32_t b) + /// LASX: XVSUB.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) => Subtract(left, right); + + /// + /// uint8x32_t xvsub_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVSUB.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) => Subtract(left, right); + + /// + /// int16x16_t xvsub_h(int16x16_t a, int16x16_t b) + /// LASX: XVSUB.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) => Subtract(left, right); + + /// + /// uint16x16_t xvsub_h(uint16x16_t a, uint16x16_t b) + /// LASX: XVSUB.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) => Subtract(left, right); + + /// + /// int32x8_t xvsub_w(int32x8_t a, int32x8_t b) + /// LASX: XVSUB.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) => Subtract(left, right); + + /// + /// uint32x8_t xvsub_w(uint32x8_t a, uint32x8_t b) + /// LASX: XVSUB.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) => Subtract(left, right); + + /// + /// int64x4_t xvsub_d(int64x4_t a, int64x4_t b) + /// LASX: XVSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) => Subtract(left, right); + + /// + /// uint64x4_t xvsub_d(uint64x4_t a, uint64x4_t b) + /// LASX: XVSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) => Subtract(left, right); + + /// + /// float32x8_t xvfsub_s(float32x8_t a, float32x8_t b) + /// LASX: XVFSUB.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) => Subtract(left, right); + + /// + /// float64x4_t xvfsub_d(float64x4_t a, float64x4_t b) + /// LASX: XVFSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Subtract(Vector256 left, Vector256 right) => Subtract(left, right); + + /// + /// int16x16_t xvhsubw_h_b(int3x32_t a, int3x32_t b) + /// LASX: XVHSUBW.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// uint16x16_t xvhsubw_hu_bu(uint3x32_t a, uint3x32_t b) + /// LASX: XVHSUBW.HU.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// int32x8_t xvhsubw_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVHSUBW.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// uint32x8_t xvhsubw_wu_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVHSUBW.WU.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// int64x4_t xvhsubw_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVHSUBW.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// uint64x4_t xvhsubw_du_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVHSUBW.DU.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// int128x2_t xvhsubw_q_d(int64x4_t a, int64x4_t b) TODO: long --> longlong 128bits. + /// LASX: XVHSUBW.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// uint128x2_t xvhsubw_qu_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVHSUBW.QU.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 SubtractOddEvenElementsWidening(Vector256 left, Vector256 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// int8x32_t xvssub_b(int8x32_t a, int8x32_t b) + /// LASX: XVSSUB.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) => SubtractSaturate(left, right); + + /// + /// uint8x32_t xvssub_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSSUB.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) => SubtractSaturate(left, right); + + /// + /// int16x16_t xvssub_h(int16x16_t a, int16x16_t b) + /// LASX: XVSSUB.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) => SubtractSaturate(left, right); + + /// + /// uint16x16_t xvssub_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSSUB.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) => SubtractSaturate(left, right); + + /// + /// int32x8_t xvssub_w(int32x8_t a, int32x8_t b) + /// LASX: XVSSUB.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) => SubtractSaturate(left, right); + + /// + /// uint32x8_t xvssub_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSSUB.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) => SubtractSaturate(left, right); + + /// + /// int64x4_t xvssub_d(int64x4_t a, int64x4_t b) + /// LASX: XVSSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) => SubtractSaturate(left, right); + + /// + /// uint64x4_t xvssub_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSSUB.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 SubtractSaturate(Vector256 left, Vector256 right) => SubtractSaturate(left, right); + + /// + /// int8x32_t xvmul_b(int8x32_t a, int8x32_t b) + /// LASX: XVMUL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) => Multiply(left, right); + + /// + /// uint8x32_t xvmul_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVMUL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) => Multiply(left, right); + + /// + /// int16x16_t xvmul_h(int16x16_t a, int16x16_t b) + /// LASX: XVMUL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) => Multiply(left, right); + + /// + /// uint16x16_t xvmul_h(uint16x16_t a, uint16x16_t b) + /// LASX: XVMUL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) => Multiply(left, right); + + /// + /// int32x8_t xvmul_w(int32x8_t a, int32x8_t b) + /// LASX: XVMULW Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) => Multiply(left, right); + + /// + /// uint32x8_t xvmul_w(uint32x8_t a, uint32x8_t b) + /// LASX: XVMUL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) => Multiply(left, right); + + /// + /// int64x4_t xvmul_d(int64x4_t a, int64x4_t b) + /// LASX: XVMUL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) => Multiply(left, right); + + /// + /// uint64x4_t xvmul_d(uint64x4_t a, uint64x4_t b) + /// LASX: XVMUL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) => Multiply(left, right); + + /// + /// float32x8_t xvfmul_s(float32x8_t a, float32x8_t b) + /// LASX: XVFMUL.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) => Multiply(left, right); + + /// + /// float64x4_t xvfmul_d(float64x4_t a, float64x4_t b) + /// LASX: XVFMUL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Multiply(Vector256 left, Vector256 right) => Multiply(left, right); + + /// + /// int8x32_t xvmuh_b(int8x32_t a, int8x32_t b) + /// LASX: XVMUH.B Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) => MultiplyHight(left, right); + + /// + /// uint8x32_t xvmuh_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMUH.BU Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) => MultiplyHight(left, right); + + /// + /// int16x16_t xvmuh_h(int16x16_t a, int16x16_t b) + /// LASX: XVMUH.H Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) => MultiplyHight(left, right); + + /// + /// uint16x16_t xvmuh_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMUH.HU Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) => MultiplyHight(left, right); + + /// + /// int32x8_t xvmuh_w(int32x8_t a, int32x8_t b) + /// LASX: VMUL.W Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) => MultiplyHight(left, right); + + /// + /// uint32x8_t xvmuh_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMUH.WU Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) => MultiplyHight(left, right); + + /// + /// int64x4_t xvmuh_d(int64x4_t a, int64x4_t b) + /// LASX: XVMUH.D Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) => MultiplyHight(left, right); + + /// + /// uint64x4_t xvmuh_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMUH.DU Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 MultiplyHight(Vector256 left, Vector256 right) => MultiplyHight(left, right); + + /// + /// int8x32_t xvdiv_b(int8x32_t a, int8x32_t b) + /// LASX: XVDIV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Divide(Vector256 left, Vector256 right) => Divide(left, right); + + /// + /// uint8x32_t xvdiv_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVDIV.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Divide(Vector256 left, Vector256 right) => Divide(left, right); + + /// + /// int16x16_t xvdiv_h(int16x16_t a, int16x16_t b) + /// LASX: XVDIV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Divide(Vector256 left, Vector256 right) => Divide(left, right); + + /// + /// uint16x16_t xvdiv_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVDIV.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Divide(Vector256 left, Vector256 right) => Divide(left, right); + + /// + /// int32x8_t xvdiv_w(int32x8_t a, int32x8_t b) + /// LASX: XVDIV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Divide(Vector256 left, Vector256 right) => Divide(left, right); + + /// + /// uint32x8_t xvdiv_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVDIV.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Divide(Vector256 left, Vector256 right) => Divide(left, right); + + /// + /// int64x4_t xvdiv_d(int64x4_t a, int64x4_t b) + /// LASX: XVDIV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Divide(Vector256 left, Vector256 right) => Divide(left, right); + + /// + /// uint64x4_t xvdiv_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVDIV.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Divide(Vector256 left, Vector256 right) => Divide(left, right); + + /// + /// float32x8_t xvfdiv_s(float32x8_t a, float32x8_t b) + /// LASX: XVFDIV.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Divide(Vector256 left, Vector256 right) => Divide(left, right); + + /// + /// float64x4_t xvfdiv_d(float64x4_t a, float64x4_t b) + /// LASX: XVFDIV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Divide(Vector256 left, Vector256 right) => Divide(left, right); + + /// + /// int8x32_t xvmod_b(int8x32_t a, int8x32_t b) + /// LASX: XVMOD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) => Modulo(left, right); + + /// + /// uint8x32_t xvmod_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMOD.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) => Modulo(left, right); + + /// + /// int16x16_t xvmod_h(int16x16_t a, int16x16_t b) + /// LASX: XVMOD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) => Modulo(left, right); + + /// + /// uint16x16_t xvmod_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMOD.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) => Modulo(left, right); + + /// + /// int32x8_t xvmod_w(int32x8_t a, int32x8_t b) + /// LASX: XVMOD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) => Modulo(left, right); + + /// + /// uint32x8_t xvmod_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMOD.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) => Modulo(left, right); + + /// + /// int64x4_t xvmod_d(int64x4_t a, int64x4_t b) + /// LASX: XVMOD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) => Modulo(left, right); + + /// + /// uint64x4_t xvmod_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMOD.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Modulo(Vector256 left, Vector256 right) => Modulo(left, right); + + /// + /// float32x8_t xvfmadd_s(float32x8_t a, float32x8_t b, float32x8_t c) + /// LASX: XVFMADD.S Xd.8S, Xj.8S, Xk.8S, Xa.8S + /// + public static Vector256 FusedMultiplyAdd(Vector256 left, Vector256 right, Vector256 addend) => FusedMultiplyAdd(left, right, addend); + + /// + /// float64x4_t xvfmadd_d(float64x4_t a, float64x4_t b, float64x4_t c) + /// LASX: XVFMADD.D Xd.4D, Xj.4D, Xk.4D, Xa.4D + /// + public static Vector256 FusedMultiplyAdd(Vector256 left, Vector256 right, Vector256 addend) => FusedMultiplyAdd(left, right, addend); + + /// + /// float32x8_t xvfnmadd_s(float32x8_t a, float32x8_t b, float32x8_t c) + /// LASX: XVFNMADD.S Xd.8S, Xj.8S, Xk.8S, Xa.8S + /// + public static Vector256 FusedMultiplyAddNegated(Vector256 left, Vector256 right, Vector256 addend) => FusedMultiplyAddNegated(left, right, addend); + + /// + /// float64x4_t xvfnmadd_d(float64x4_t a, float64x4_t b, float64x4_t c) + /// LASX: XVFNMADD.D Xd.4D, Xj.4D, Xk.4D, Xa.4D + /// + public static Vector256 FusedMultiplyAddNegated(Vector256 left, Vector256 right, Vector256 addend) => FusedMultiplyAddNegated(left, right, addend); + + /// + /// int8x32_t xvmadd_b(int8x32_t a, int8x32_t b, int8x32_t c) + /// LASX: XVMADD.B Xd.32B, Xj.32B, Xk.32B //NOTE: The Vd is both input and output while input as addend. + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyAdd(addend, left, right); + + /// + /// uint8x32_t xvmadd_b(uint8x32_t a, uint8x32_t b, uint8x32_t c) + /// LASX: XVMADD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyAdd(addend, left, right); + + /// + /// int16x16_t xvmadd_h(int16x16_t a, int16x16_t b, int16x16_t c) + /// LASX: XVMADD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyAdd(addend, left, right); + + /// + /// uint16x16_t xvmadd_h(uint16x16_t a, uint16x16_t b, uint16x16_t c) + /// LASX: XVMADD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyAdd(addend, left, right); + + /// + /// int32x8_t xvmadd_w(int32x8_t a, int32x8_t b, int32x8_t c) + /// LASX: XVMADD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyAdd(addend, left, right); + + /// + /// uint32x8_t xvmadd_w(uint32x8_t a, uint32x8_t b, uint32x8_t c) + /// LASX: XVMADD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyAdd(addend, left, right); + + /// + /// int64x4_t xvmadd_d(int64x4_t a, int64x4_t b, int64x4_t c) + /// LASX: XVMADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyAdd(addend, left, right); + + /// + /// uint64x4_t xvmadd_d(uint64x4_t a, uint64x4_t b, uint64x4_t c) + /// LASX: XVMADD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyAdd(addend, left, right); + + /// + /// float32x8_t xvfmsub_s(float32x8_t a, float32x8_t b, float32x8_t c) + /// LASX: XVFMSUB.S Xd.8S, Xj.8S, Xk.8S, Xa.8S + /// + public static Vector256 FusedMultiplySubtract(Vector256 left, Vector256 right, Vector256 minuend) => FusedMultiplySubtract(left, right, minuend); + + /// + /// float64x4_t xvfmsub_d(float64x4_t a, float64x4_t b, float64x4_t c) + /// LASX: XVFMSUB.D Xd.4D, Xj.4D, Xk.4D, Xa.4D + /// + public static Vector256 FusedMultiplySubtract(Vector256 left, Vector256 right, Vector256 minuend) => FusedMultiplySubtract(left, right, minuend); + + /// + /// float32x8_t xvfnmsub_s(float32x8_t a, float32x8_t b, float32x8_t c) + /// LASX: XVFNMSUB.S Xd.8S, Xj.8S, Xk.8S, Xa.8S + /// + public static Vector256 FusedMultiplySubtractNegated(Vector256 left, Vector256 right, Vector256 minuend) => FusedMultiplySubtractNegated(left, right, minuend); + + /// + /// float64x4_t xvfnmsub_d(float64x4_t a, float64x4_t b, float64x4_t c) + /// LASX: XVFNMSUB.D Xd.4D, Xj.4D, Xk.4D, Xa.4D + /// + public static Vector256 FusedMultiplySubtractNegated(Vector256 left, Vector256 right, Vector256 minuend) => FusedMultiplySubtractNegated(left, right, minuend); + + /// + /// int8x32_t xvmsub_b(int8x32_t a, int8x32_t b, int8x32_t c) + /// LASX: XVMSUB.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) => MultiplySubtract(minuend, left, right); + + /// + /// uint8x32_t xvmsub_b(uint8x32_t a, uint8x32_t b, uint8x32_t c) + /// LASX: XVMSUB.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) => MultiplySubtract(minuend, left, right); + + /// + /// int16x16_t xvmsub_h(int16x16_t a, int16x16_t b, int16x16_t c) + /// LASX: XVMSUB.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) => MultiplySubtract(minuend, left, right); + + /// + /// uint16x16_t xvmsub_h(uint16x16_t a, uint16x16_t b, uint16x16_t c) + /// LASX: XVMSUB.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) => MultiplySubtract(minuend, left, right); + + /// + /// int32x8_t xvmsub_w(int32x8_t a, int32x8_t b, int32x8_t c) + /// LASX: XVMSUB.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) => MultiplySubtract(minuend, left, right); + + /// + /// uint32x8_t xvmsub_w(uint32x8_t a, uint32x8_t b, uint32x8_t c) + /// LASX: XVMSUB.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 MultiplySubtract(Vector256 minuend, Vector256 left, Vector256 right) => MultiplySubtract(minuend, left, right); + + /// + /// int64x4_t xvmsub_d(int64x4_t a, int64x4_t b, int64x4_t c) + /// LASX: XVMSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MultiplySubtract(Vector256 addend, Vector256 left, Vector256 right) => MultiplySubtract(addend, left, right); + + /// + /// uint64x4_t xvmsub_d(uint64x4_t a, uint64x4_t b, uint64x4_t c) + /// LASX: XVMSUB.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MultiplySubtract(Vector256 addend, Vector256 left, Vector256 right) => MultiplySubtract(addend, left, right); + + /// + /// int16x16_t xvmaddwev_h_b(int16x16_t a, int8x8_t b, int8x8_t c) + /// LASX: XVMADDWEV.H.B Xd.16H, Xj.8B, Xk.8B + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// uint16x16_t xvmaddwev_h_bu(uint16x16_t a, uint8x8_t b, uint8x8_t c) + /// LASX: XVMADDWEV.H.BU Xd.16H, Xj.8B, Xk.8B + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// int32x8_t xvmaddwev_w_h(int32x8_t a, int16x4_t b, int16x4_t c) + /// LASX: XVMADDWEV.W.H Xd.8W, Xj.4H, Xk.4H + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// uint32x8_t xvmaddwev_w_hu(uint32x8_t a, uint16x4_t b, uint16x4_t c) + /// LASX: XVMADDWEV.W.HU Xd.8W, Xj.4H, Xk.4H + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// int64x4_t xvmaddwev_d_w(int64x4_t a, int32x2_t b, int32x2_t c) + /// LASX: XVMADDWEV.D.W Xd.4D, Xj.2S, Xk.2S + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// uint64x4_t xvmaddwev_d_wu(uint64x4_t a, uint32x2_t b, uint32x2_t c) + /// LASX: XVMADDWEV.D.WU Xd.4D, Xj.2S, Xk.2S + /// + public static Vector256 MultiplyWideningLowerAndAdd(Vector256 addend, Vector128 left, Vector128 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// int16x16_t xvmaddwod_h_b(int16x16_t a, int8x32_t b, int8x32_t c) + /// LASX: XVMADDWOD.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// uint16x16_t xvmaddwod_h_bu(uint16x16_t a, uint8x32_t b, uint8x32_t c) + /// LASX: XVMADDWOD.H.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// int32x8_t xvmaddwod_w_h(int32x8_t a, int16x16_t b, int16x16_t c) + /// LASX: XVMADDWOD.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// uint32x8_t xvmaddwod_w_hu(uint32x8_t a, uint16x16_t b, uint16x16_t c) + /// LASX: XVMADDWOD.W.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// int64x4_t xvmaddwod_d_w(int64x4_t a, int32x8_t b, int32x8_t c) + /// LASX: XVMADDWOD.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// uint64x4_t xvmaddwod_d_wu(uint64x4_t a, uint32x8_t b, uint32x8_t c) + /// LASX: XVMADDWOD.D.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningUpperAndAdd(Vector256 addend, Vector256 left, Vector256 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// int8x32_t xvmsknz_b(int8x32_t value) + /// LASX: XVMSKNZ.B Vd.32B, Vj.32B + /// + public static Vector256 CompareNotEqualZeroEach128(Vector256 value) => CompareNotEqualZeroEach128(value); + + /// + /// uint8x32_t xvmsknz_b(uint8x32_t value) + /// LASX: XVMSKNZ.B Vd.32B, Vj.32B + /// + public static Vector256 CompareNotEqualZeroEach128(Vector256 value) => CompareNotEqualZeroEach128(value); + + /// + /// int8x32_t xvseqi_b(int8x32_t a, int8_t si5) + /// LASX: XVSEQI.B Xd.32B, Xj.32B, si5 + /// + public static Vector256 CompareEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareEqual(value, si5); + + /// + /// int16x16_t xvseqi_h(int16x16_t a, int8_t si5) + /// LASX: XVSEQI.H Xd.16H, Xj.16H, si5 + /// + public static Vector256 CompareEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareEqual(value, si5); + + /// + /// int32x8_t xvseqi_w(int32x8_t a, int8_t si5) + /// LASX: XVSEQI.W Xd.8W, Xj.8W, si5 + /// + public static Vector256 CompareEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareEqual(value, si5); + + /// + /// int64x4_t xvseqi_d(int64x4_t a, int8_t si5) + /// LASX: XVSEQI.D Xd.4D, Xj.4D, si5 + /// + public static Vector256 CompareEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareEqual(value, si5); + + /// + /// int8x32_t xvseq_b(int8x32_t a, int8x32_t b) + /// LASX: XVSEQ.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) => CompareEqual(left, right); + + /// + /// uint8x32_t xvseq_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVSEQ.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) => CompareEqual(left, right); + + /// + /// int16x16_t xvseq_h(int16x16_t a, int16x16_t b) + /// LASX: XVSEQ.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) => CompareEqual(left, right); + + /// + /// uint16x16_t xvseq_h(uint16x16_t a, uint16x16_t b) + /// LASX: XVSEQ.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) => CompareEqual(left, right); + + /// + /// int32x8_t xvseq_w(int32x8_t a, int32x8_t b) + /// LASX: XVSEQ.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) => CompareEqual(left, right); + + /// + /// uint32x8_t xvseq_w(uint32x8_t a, uint32x8_t b) + /// LASX: XVSEQ.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) => CompareEqual(left, right); + + /// + /// int64x4_t xvseq_d(int64x4_t a, int64x4_t b) + /// LASX: XVSEQ.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) => CompareEqual(left, right); + + /// + /// uint64x4_t xvseq_d(uint64x4_t a, uint64x4_t b) + /// LASX: XVSEQ.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) => CompareEqual(left, right); + + /// + /// uint32x8_t xvfcmp_ceq_s(float32x8_t a, float32x8_t b) + /// LASX: XVFCMP.CEQ.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) => CompareEqual(left, right); + + /// + /// uint64x4_t xvfcmp_ceq_d(float64x4_t a, float64x4_t b) + /// LASX: XVFCMP.CEQ.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareEqual(Vector256 left, Vector256 right) => CompareEqual(left, right); + + /// + /// int8x32_t xvmskltz_b(int8x32_t value) + /// LASX: XVMSKLTZ.B Xd.32B, Xj.32B + /// + public static Vector256 CompareLessThanZeroEach128(Vector256 value) => CompareLessThanZeroEach128(value); + + /// + /// int16x16_t xvmskltz_h(int16x16_t value) + /// LASX: XVMSKLTZ.H Xd.16H, Xj.16H + /// + public static Vector256 CompareLessThanZeroEach128(Vector256 value) => CompareLessThanZeroEach128(value); + + /// + /// int32x8_t xvmskltz_w(int32x8_t value) + /// LASX: XVMSKLTZ.W Xd.8W, Xj.8W + /// + public static Vector256 CompareLessThanZeroEach128(Vector256 value) => CompareLessThanZeroEach128(value); + + /// + /// int64x4_t xvmskltz_d(int64x4_t value) + /// LASX: XVMSKLTZ.D Xd.4D, Xj.4D + /// + public static Vector256 CompareLessThanZeroEach128(Vector256 value) => CompareLessThanZeroEach128(value); + + /// + /// int8x32_t xvslti_b(int8x32_t a, int8_t si5) + /// LASX: XVSLTI.Bd.32B, Xj.32B, si5 + /// + public static Vector256 CompareLessThan(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThan(value, si5); + + /// + /// int16x16_t xvslti_h(int16x16_t a, int8_t si5) + /// LASX: XVSLTI.H Xd.16H, Xj.16H, si5 + /// + public static Vector256 CompareLessThan(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThan(value, si5); + + /// + /// int32x8_t xvslti_w(int32x8_t a, int8_t si5) + /// LASX: XVSLTI.W Xd.8W, Xj.8W, si5 + /// + public static Vector256 CompareLessThan(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThan(value, si5); + + /// + /// int64x4_t xvslti_d(int64x4_t a, int8_t si5) + /// LASX: XVSLTI.D Xd.4D, Xj.4D, si5 + /// + public static Vector256 CompareLessThan(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThan(value, si5); + + /// + /// uint8x32_t xvslt_b(int8x32_t a, int8x32_t b) + /// LASX: XVSLT.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) => CompareLessThan(left, right); + + /// + /// uint8x32_t xvslt_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSLT.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) => CompareLessThan(left, right); + + /// + /// uint16x16_t xvslt_h(int16x16_t a, int16x16_t b) + /// LASX: XVSLT.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) => CompareLessThan(left, right); + + /// + /// uint16x16_t xvslt_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSLT.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) => CompareLessThan(left, right); + + /// + /// uint32x8_t xvslt_w(int32x8_t a, int32x8_t b) + /// LASX: XVSLT.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) => CompareLessThan(left, right); + + /// + /// uint32x8_t xvslt_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSLT.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) => CompareLessThan(left, right); + + /// + /// uint64x4_t xvslt_d(int64x4_t a, int64x4_t b) + /// LASX: XVSLT.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) => CompareLessThan(left, right); + + /// + /// uint64x4_t xvslt_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSLT.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) => CompareLessThan(left, right); + + /// + /// uint32x8_t xvfcmp_clt_s(float32x8_t a, float32x8_t b) + /// LASX: XVFCMP.CLT.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) => CompareLessThan(left, right); + + /// + /// uint64x4_t xvfcmp_clt_d(float64x4_t a, float64x4_t b) + /// LASX: XVFCMP.CLT.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThan(Vector256 left, Vector256 right) => CompareLessThan(left, right); + + /// + /// int8x32_t xvslei_b(int8x32_t a, int8_t si5) + /// LASX: XVSLEI.Bd.32B, Xj.32B, si5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThanOrEqual(value, si5); + + /// + /// int16x16_t xvslei_h(int16x16_t a, int8_t si5) + /// LASX: XVSLEI.H Xd.16H, Xj.16H, si5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThanOrEqual(value, si5); + + /// + /// int32x8_t xvslei_w(int32x8_t a, int8_t si5) + /// LASX: XVSLEI.W Xd.8W, Xj.8W, si5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThanOrEqual(value, si5); + + /// + /// int64x4_t xvslei_d(int64x4_t a, int8_t si5) + /// LASX: XVSLEI.D Xd.4D, Xj.4D, si5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThanOrEqual(value, si5); + + /// + /// uint8x32_t xvsle_b(int8x32_t a, int8x32_t b) + /// LASX: XVSLE.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint16x16_t xvsle_h(int16x16_t a, int16x16_t b) + /// LASX: XVSLE.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint32x8_t xvsle_w(int32x8_t a, int32x8_t b) + /// LASX: XVSLE.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint64x4_t xvsle_d(int64x4_t a, int64x4_t b) + /// LASX: XVSLE.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint8x32_t xvslei_bu(uint8x32_t a, uint8_t ui5) + /// LASX: XVSLEI.BU Xd.32B, Xj.32B, ui5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte ui5) => CompareLessThanOrEqual(value, ui5); + + /// + /// uint16x16_t xvslei_hu(uint16x16_t a, uint8_t ui5) + /// LASX: XVSLEI.HU Xd.16H, Xj.16H, ui5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte ui5) => CompareLessThanOrEqual(value, ui5); + + /// + /// uint32x8_t xvslei_wu(uint32x8_t a, uint8_t ui5) + /// LASX: XVSLEI.WU Xd.8W, Xj.8W, ui5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte ui5) => CompareLessThanOrEqual(value, ui5); + + /// + /// uint64x4_t xvslei_du(uint64x4_t a, uint8_t ui5) + /// LASX: XVSLEI.DU Xd.4D, Xj.4D, ui5 + /// + public static Vector256 CompareLessThanOrEqual(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte ui5) => CompareLessThanOrEqual(value, ui5); + + /// + /// uint8x32_t xvsle_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSLE.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint16x16_t xvsle_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSLE.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint32x8_t xvsle_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSLE.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint64x4_t xvsle_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSLE.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint32x8_t xvfcmp_cle_s(float32x8_t a, float32x8_t b) + /// LASX: XVFCMP.CLE.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint64x4_t xvfcmp_cle_d(float64x4_t a, float64x4_t b) + /// LASX: XVFCMP.CLE.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareLessThanOrEqual(Vector256 left, Vector256 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint8x32_t xvsle_b(int8x32_t a, int8x32_t b) + /// LASX: XVSLE.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) => CompareGreaterThan(left, right); + + /// + /// uint8x32_t xvsle_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSLE.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) => CompareGreaterThan(left, right); + + /// + /// uint16x16_t xvsle_h(int16x16_t a, int16x16_t b) + /// LASX: XVSLE.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) => CompareGreaterThan(left, right); + + /// + /// uint16x16_t xvsle_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSLE.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) => CompareGreaterThan(left, right); + + /// + /// uint32x8_t xvsle_w(int32x8_t a, int32x8_t b) + /// LASX: XVSLE.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) => CompareGreaterThan(left, right); + + /// + /// uint32x8_t xvsle_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSLE.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) => CompareGreaterThan(left, right); + + /// + /// uint64x4_t xvsle_d(int64x4_t a, int64x4_t b) + /// LASX: XVSLE.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) => CompareGreaterThan(left, right); + + /// + /// uint64x4_t xvsle_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSLE.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) => CompareGreaterThan(left, right); + + /// + /// uint32x8_t xvfcmp_cle_s(float32x8_t a, float32x8_t b) + /// LASX: XVFCMP.CLE.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) => CompareGreaterThan(left, right); + + /// + /// uint64x4_t xvfcmp_cle_d(float64x4_t a, float64x4_t b) + /// LASX: XVFCMP.CLE.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThan(Vector256 left, Vector256 right) => CompareGreaterThan(left, right); + + /// + /// int8x32_t xvmskgez_b(int8x32_t value) + /// LASX: XVMSKGEZ.B Xd.32B, Xj.32B + /// + public static Vector256 CompareGreaterThanOrEqualZeroEach128(Vector256 value) => CompareGreaterThanOrEqualZeroEach128(value); + + /// + /// uint8x32_t xvslt_b(int8x32_t a, int8x32_t b) + /// LASX: XVSLT.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint8x32_t xvslt_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVSLT.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint16x16_t xvslt_h(int16x16_t a, int16x16_t b) + /// LASX: XVSLT.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint16x16_t xvslt_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVSLT.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint32x8_t xvslt_w(int32x8_t a, int32x8_t b) + /// LASX: XVSLT.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint32x8_t xvslt_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVSLT.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint64x4_t xvslt_d(int64x4_t a, int64x4_t b) + /// LASX: XVSLT.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint64x4_t xvslt_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVSLT.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint32x8_t xvfcmp_clt_s(float32x8_t a, float32x8_t b) + /// LASX: XVFCMP.CLT.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint64x4_t xvfcmp_clt_d(float64x4_t a, float64x4_t b) + /// LASX: XVFCMP.CLT.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 CompareGreaterThanOrEqual(Vector256 left, Vector256 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// int8x32_t xvmaxi_b(int8x32_t a, int8_t si5) + /// LASX: XVMAXI.B Xd.32B, Xj.32B, si5 + /// + public static Vector256 Max(Vector256 value, const sbyte si5) => Max(value, si5); + + /// + /// uint8x32_t xvmaxi_bu(uint8x32_t a, int8_t si5) + /// LASX: XVMAXI.BU Xd.32B, Xj.32B, ui5 + /// + public static Vector256 Max(Vector256 value, const byte ui5) => Max(value, ui5); + + /// + /// int16x16_t xvmaxi_h(int16x16_t a, int8_t si5) + /// LASX: XVMAXI.H Xd.16H, Xj.16H, si5 + /// + public static Vector256 Max(Vector256 value, const sbyte si5) => Max(value, si5); + + /// + /// uint16x16_t xvmaxi_hu(uint16x16_t a, int8_t si5) + /// LASX: XVMAXI.HU Xd.16H, Xj.16H, ui5 + /// + public static Vector256 Max(Vector256 value, const byte ui5) => Max(value, ui5); + + /// + /// int32x8_t xvmaxi_w(int32x8_t a, int8_t si5) + /// LASX: XVMAXI.W Xd.8W, Xj.8W, si5 + /// + public static Vector256 Max(Vector256 value, const sbyte si5) => Max(value, si5); + + /// + /// uint32x8_t xvmaxi_wu(uint32x8_t a, int8_t si5) + /// LASX: XVMAXI.WU Xd.8W, Xj.8W, ui5 + /// + public static Vector256 Max(Vector256 value, const byte ui5) => Max(value, ui5); + + /// + /// int64x4_t xvmaxi_d(int64x4_t a, int8_t si5) + /// LASX: XVMAXI.D Xd.4D, Xj.4D, si5 + /// + public static Vector256 Max(Vector256 value, const sbyte si5) => Max(value, si5); + + /// + /// uint64x4_t xvmaxi_du(uint64x4_t a, int8_t si5) + /// LASX: XVMAXI.DU Xd.4D, Xj.4D, ui5 + /// + public static Vector256 Max(Vector256 value, const byte ui5) => Max(value, ui5); + + /// + /// int8x32_t xvmax_b(int8x32_t a, int8x32_t b) + /// LASX: XVMAX.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Max(Vector256 left, Vector256 right) => Max(left, right); + + /// + /// uint8x32_t xvmax_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMAX.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Max(Vector256 left, Vector256 right) => Max(left, right); + + /// + /// int16x16_t xvmax_h(int16x16_t a, int16x16_t b) + /// LASX: XVMAX.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Max(Vector256 left, Vector256 right) => Max(left, right); + + /// + /// uint16x16_t xvmax_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMAX.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Max(Vector256 left, Vector256 right) => Max(left, right); + + /// + /// int32x8_t xvmax_w(int32x8_t a, int32x8_t b) + /// LASX: XVMAX.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Max(Vector256 left, Vector256 right) => Max(left, right); + + /// + /// uint32x8_t xvmax_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMAX.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Max(Vector256 left, Vector256 right) => Max(left, right); + + /// + /// int64x4_t xvmax_d(int64x4_t a, int64x4_t b) + /// LASX: XVMAX.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Max(Vector256 left, Vector256 right) => Max(left, right); + + /// + /// uint64x4_t xvmax_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMAX.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Max(Vector256 left, Vector256 right) => Max(left, right); + + /// + /// float32x8_t xvfmax_s(float32x8_t a, float32x8_t b) + /// LASX: XVFMAX.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Max(Vector256 left, Vector256 right) => Max(left, right); + + /// + /// float64x4_t xvfmax_d(float64x4_t a, float64x4_t b) + /// LASX: XVFMAX.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Max(Vector256 left, Vector256 right) => Max(left, right); + + /// + /// float32x8_t xvfmaxa_s(float32x8_t a, float32x8_t b) + /// LASX: XVFMAXA.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 MaxFloatAbsolute(Vector256 left, Vector256 right) => MaxFloatAbsolute(left, right); + + /// + /// float64x4_t xvfmaxa_d(float64x4_t a, float64x4_t b) + /// LASX: XVFMAXA.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MaxFloatAbsolute(Vector256 left, Vector256 right) => MaxFloatAbsolute(left, right); + + /// + /// int8x32_t xvmini_b(int8x32_t a, int8_t si5) + /// LASX: XVMINI.B Xd.32B, Xj.32B, si5 + /// + public static Vector256 Min(Vector256 value, const sbyte si5) => Min(value, si5); + + /// + /// uint8x32_t xvmini_bu(uint8x32_t a, int8_t si5) + /// LASX: XVMINI.BU Xd.32B, Xj.32B, ui5 + /// + public static Vector256 Min(Vector256 value, const byte ui5) => Min(value, ui5); + + /// + /// int16x16_t xvmini_h(int16x16_t a, int8_t si5) + /// LASX: XVMINI.H Xd.16H, Xj.16H, si5 + /// + public static Vector256 Min(Vector256 value, const sbyte si5) => Min(value, si5); + + /// + /// uint16x16_t xvmini_hu(uint16x16_t a, int8_t si5) + /// LASX: XVMINI.HU Xd.16H, Xj.16H, ui5 + /// + public static Vector256 Min(Vector256 value, const byte ui5) => Min(value, ui5); + + /// + /// int32x8_t xvmini_w(int32x8_t a, int8_t si5) + /// LASX: XVMINI.W Xd.8W, Xj.8W, si5 + /// + public static Vector256 Min(Vector256 value, const sbyte si5) => Min(value, si5); + + /// + /// uint32x8_t xvmini_wu(uint32x8_t a, int8_t si5) + /// LASX: XVMINI.WU Xd.8W, Xj.8W, ui5 + /// + public static Vector256 Min(Vector256 value, const byte ui5) => Min(value, ui5); + + /// + /// int64x4_t xvmini_d(int64x4_t a, int8_t si5) + /// LASX: XVMINI.D Xd.4D, Xj.4D, si5 + /// + public static Vector256 Min(Vector256 value, const sbyte si5) => Min(value, si5); + + /// + /// uint64x4_t xvmini_du(uint64x4_t a, int8_t si5) + /// LASX: XVMINI.DU Xd.4D, Xj.4D, ui5 + /// + public static Vector256 Min(Vector256 value, const byte ui5) => Min(value, ui5); + + /// + /// int8x32_t xvmin_b(int8x32_t a, int8x32_t b) + /// LASX: XVMIN.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Min(Vector256 left, Vector256 right) => Min(left, right); + + /// + /// uint8x32_t xvmin_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMIN.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Min(Vector256 left, Vector256 right) => Min(left, right); + + /// + /// int16x16_t xvmin_h(int16x16_t a, int16x16_t b) + /// LASX: XVMIN.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Min(Vector256 left, Vector256 right) => Min(left, right); + + /// + /// uint16x16_t xvmin_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMIN.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Min(Vector256 left, Vector256 right) => Min(left, right); + + /// + /// int32x8_t xvmin_w(int32x8_t a, int32x8_t b) + /// LASX: XVMIN.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Min(Vector256 left, Vector256 right) => Min(left, right); + + /// + /// uint32x8_t xvmin_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMIN.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Min(Vector256 left, Vector256 right) => Min(left, right); + + /// + /// int64x4_t xvmin_d(int64x4_t a, int64x4_t b) + /// LASX: XVMIN.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Min(Vector256 left, Vector256 right) => Min(left, right); + + /// + /// uint64x4_t xvmin_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMIN.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Min(Vector256 left, Vector256 right) => Min(left, right); + + /// + /// float32x8_t xvfmin_s(float32x8_t a, float32x8_t b) + /// LASX: XVFMIN.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 Min(Vector256 left, Vector256 right) => Min(left, right); + + /// + /// float64x4_t xvfmin_d(float64x4_t a, float64x4_t b) + /// LASX: XVFMIN.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Min(Vector256 left, Vector256 right) => Min(left, right); + + /// + /// float32x8_t xvfmina_s(float32x8_t a, float32x8_t b) + /// LASX: XVFMINA.S Xd.8S, Xj.8S, Xk.8S + /// + public static Vector256 MinFloatAbsolute(Vector256 left, Vector256 right) => MinFloatAbsolute(left, right); + + /// + /// float64x4_t xvfmina_d(float64x4_t a, float64x4_t b) + /// LASX: XVFMINA.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 MinFloatAbsolute(Vector256 left, Vector256 right) => MinFloatAbsolute(left, right); + + /// + /// int8x32_t xvbitsel_v(uint8x32_t a, int8x32_t b, int8x32_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) => BitwiseSelect(select, left, right); + + /// + /// uint8x32_t xvbitsel_v(uint8x32_t a, uint8x32_t b, uint8x32_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) => BitwiseSelect(select, left, right); + + /// + /// int16x16_t xvbitsel_v(uint16x16_t a, int16x16_t b, int16x16_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) => BitwiseSelect(select, left, right); + + /// + /// uint16x16_t xvbitsel_v(uint16x16_t a, uint16x16_t b, uint16x16_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) => BitwiseSelect(select, left, right); + + /// + /// int32x8_t xvbitsel_v(uint32x8_t a, int32x8_t b, int32x8_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) => BitwiseSelect(select, left, right); + + /// + /// uint32x8_t xvbitsel_v(uint32x8_t a, uint32x8_t b, uint32x8_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) => BitwiseSelect(select, left, right); + + /// + /// int64x4_t xvbitsel_v(uint64x4_t a, int64x4_t b, int64x4_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) => BitwiseSelect(select, left, right); + + /// + /// uint64x4_t xvbitsel_v(uint64x4_t a, uint64x4_t b, uint64x4_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) => BitwiseSelect(select, left, right); + + /// + /// float32x8_t xvbitsel_v(uint32x8_t a, float32x8_t b, float32x8_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) => BitwiseSelect(select, left, right); + + /// + /// float64x4_t xvbitsel_v(uint64x4_t a, float64x4_t b, float64x4_t c) + /// LASX: XVBITSEL.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 BitwiseSelect(Vector256 select, Vector256 left, Vector256 right) => BitwiseSelect(select, left, right); + + /// + /// int8x32_t xvabsd_b(int8x32_t a, int8x32_t b) + /// LASX: XVABSD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) => AbsoluteDifference(left, right); + + /// + /// uint8x32_t xvabsd_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVABSD.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) => AbsoluteDifference(left, right); + + /// + /// int16x16_t xvabsd_h(int16x16_t a, int16x16_t b) + /// LASX: XVABSD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) => AbsoluteDifference(left, right); + + /// + /// uint16x16_t xvabsd_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVABSD.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) => AbsoluteDifference(left, right); + + /// + /// int32x8_t xvabsd_w(int32x8_t a, int32x8_t b) + /// LASX: XVABSD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) => AbsoluteDifference(left, right); + + /// + /// uint32x8_t xvabsd_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVABSD.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) => AbsoluteDifference(left, right); + + /// + /// int64x4_t xvabsd_d(uint64x4_t a, int64x4_t b, int64x4_t c) + /// LASX: XVABSD.D Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) => AbsoluteDifference(left, right); + + /// + /// uint64x4_t xvabsd_du(uint64x4_t a, uint64x4_t b, uint64x4_t c) + /// LASX: XVABSD.DU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) => AbsoluteDifference(left, right); + + ///// + ///// float32x8_t TODO(float32x8_t a, float32x8_t b) multi-instructions. + ///// LASX: TODO Xd.8S, Xj.8S, Xk.8S + ///// + //public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) => AbsoluteDifference(left, right); + + ///// + ///// float64x4_t TODO(float64x4_t a, float64x4_t b) + ///// LASX: TODO Xd.4D, Xj.4D, Xk.4D + ///// + //public static Vector256 AbsoluteDifference(Vector256 left, Vector256 right) => AbsoluteDifference(left, right); + + /// + /// int8x32_t xvld(int8_t const * ptr, const short si12) + /// LASX: XVLD Xd.32B, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(sbyte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector256(address, si12); + + /// + /// uint8x32_t xvld(uint8_t const * ptr, const short si12) + /// LASX: XVLD Xd.32B, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(byte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector256(address, si12); + + /// + /// int16x16_t xvld(int16_t const * ptr, const short si12) + /// LASX: XVLD Xd.16H, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(short* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector256(address, si12); + + /// + /// uint16x16_t xvld(uint16_t const * ptr, const short si12) + /// LASX: XVLD Xd.16H, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(ushort* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector256(address, si12); + + /// + /// int32x8_t xvld(int32_t const * ptr, const short si12) + /// LASX: XVLD Xd.8W, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(int* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector256(address, si12); + + /// + /// uint32x8_t xvld(uint32_t const * ptr, const short si12) + /// LASX: XVLD Xd.8W, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(uint* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector256(address, si12); + + /// + /// int64x4_t xvld(int64_t const * ptr, const short si12) + /// LASX: XVLD Xd.4D, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(long* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector256(address, si12); + + /// + /// uint64x4_t xvld(uint64_t const * ptr, const short si12) + /// LASX: XVLD Xd.4D, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(ulong* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector256(address, si12); + + /// + /// float32x8_t xvld(float32_t const * ptr, const short si12) + /// LASX: XVLD Xd.8S, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(float* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector256(address, si12); + + /// + /// float64x4_t xvld(float64_t const * ptr, const short si12) + /// LASX: XVLD Xd.4D, Rj, si12 + /// + public static unsafe Vector256 LoadVector256(double* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector256(address, si12); + + /// + /// int8x32_t xvldx(int8_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.32B, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(sbyte* address, long offsetValue) => LoadVector256(address, offsetValue); + + /// + /// uint8x32_t xvldx(uint8_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.32B, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(byte* address, long offsetValue) => LoadVector256(address, offsetValue); + + /// + /// int16x16_t xvldx(int16_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.16H, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(short* address, long offsetValue) => LoadVector256(address, offsetValue); + + /// + /// uint16x16_t xvldx(uint16_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.16H, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(ushort* address, long offsetValue) => LoadVector256(address, offsetValue); + + /// + /// int32x8_t xvldx(int32_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.8W, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(int* address, long offsetValue) => LoadVector256(address, offsetValue); + + /// + /// uint32x8_t xvldx(uint32_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.8W, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(uint* address, long offsetValue) => LoadVector256(address, offsetValue); + + /// + /// int64x4_t xvldx(int64_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.4D, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(long* address, long offsetValue) => LoadVector256(address, offsetValue); + + /// + /// uint64x4_t xvldx(uint64_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.4D, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(ulong* address, long offsetValue) => LoadVector256(address, offsetValue); + + /// + /// float32x8_t xvldx(float32_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.8S, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(float* address, long offsetValue) => LoadVector256(address, offsetValue); + + /// + /// float64x4_t xvldx(float64_t const * ptr, long offsetValue) + /// LASX: XVLDX Xd.4D, Rj, Rk + /// + public static unsafe Vector256 LoadVector256(double* address, long offsetValue) => LoadVector256(address, offsetValue); + + /// + /// int8x32_t xvldrepl_b(int8_t const * ptr, const short si12) + /// LASX: XVLDREPL.B Xd.32B, Rj, si12 + /// + public static unsafe Vector256 LoadElementReplicateVector(sbyte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// uint8x32_t xvldrepl_b(uint8_t const * ptr, const short si12) + /// LASX: XVLDREPL.B Xd.32B, Rj, si12 + /// + public static unsafe Vector256 LoadElementReplicateVector(byte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// int16x16_t xvldrepl_h(int16_t const * ptr, const short si12) + /// LASX: XVLDREPL.H Xd.16H, Rj, si11 + /// + public static unsafe Vector256 LoadElementReplicateVector(short* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// uint16x16_t xvldrepl_h(uint16_t const * ptr, const short si12) + /// LASX: XVLDREPL.H Xd.16H, Rj, si11 + /// + public static unsafe Vector256 LoadElementReplicateVector(ushort* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// int32x8_t xvldrepl_w(int32_t const * ptr, const short si12) + /// LASX: XVLDREPL.W Xd.8W, Rj, si10 + /// + public static unsafe Vector256 LoadElementReplicateVector(int* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// uint32x8_t xvldrepl_w(uint32_t const * ptr, const short si12) + /// LASX: XVLDREPL.W Xd.8W, Rj, si10 + /// + public static unsafe Vector256 LoadElementReplicateVector(uint* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// int64x4_t xvldrepl_d(int64_t const * ptr, const short si12) + /// LASX: XVLDREPL.D Xd.4D, Rj, si9 + /// + public static unsafe Vector256 LoadElementReplicateVector(long* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// uint64x4_t xvldrepl_d(uint64_t const * ptr, const short si12) + /// LASX: XVLDREPL.D Xd.4D, Rj, si9 + /// + public static unsafe Vector256 LoadElementReplicateVector(ulong* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// float32x8_t vld(float32_t const * ptr, const short si12) + /// LASX: XVLDREPL.W Xd.4S, Rj, si10 + /// + public static unsafe Vector256 LoadElementReplicateVector(float* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// float64x4_t xvldrepl_d(float64_t const * ptr, const short si12) + /// LASX: XVLDREPL.D Xd.4D, Rj, si9 + /// + public static unsafe Vector256 LoadElementReplicateVector(double* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// float32x8_t xvfrecip_s(float32x8_t a) + /// LASX: XVFRECIP.S Xd.8S Xj.8S + /// + public static Vector256 Reciprocal(Vector256 value) => Reciprocal(value); + + /// + /// float64x4_t xvfrecip_d(float64x4_t a) + /// LASX: XVFRECIP.D Xd.4D Xj.4D + /// + public static Vector256 Reciprocal(Vector256 value) => Reciprocal(value); + + /// + /// float32x8_t xvfrsqrt_s(float32x8_t a) + /// LASX: XVFRSQRT.S Xd.8S Xj.8S + /// + public static Vector256 ReciprocalSqrt(Vector256 value) => ReciprocalSqrt(value); + + /// + /// float64x4_t xvfrsqrt_d(float64x4_t a) + /// LASX: XVFRSQRT.D Xd.4D Xj.4D + /// + public static Vector256 ReciprocalSqrt(Vector256 value) => ReciprocalSqrt(value); + + /// + /// float32x8_t xvfsqrt_s(float32x8_t a) + /// LASX: XVFSQRT.S Xd.8S, Xj.8S + /// + public static Vector256 Sqrt(Vector256 value) => Sqrt(value); + + /// + /// float64x4_t xvfsqrt_d(float64x4_t a) + /// LASX: XVFSQRT.D Xd.4D, Xj.4D + /// + public static Vector256 Sqrt(Vector256 value) => Sqrt(value); + + /// + /// float32x8_t xvflogb_d(float32x8_t a) + /// LASX: XVFLOGB.S Xd.8S, Xj.8S + /// + public static Vector256 FloatLogarithm2(Vector256 value) => FloatLogarithm2(value); + + /// + /// float64x4_t xvflogb_d(float64x4_t a) + /// LASX: XVFLOGB.D Xd.4D, Xj.4D + /// + public static Vector256 FloatLogarithm2(Vector256 value) => FloatLogarithm2(value); + + /// + /// void xvst(int8x32_t val, int8_t* addr, const short si12) + /// LASX: XVST Xd.32B, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, sbyte* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void xvst(uint8x32_t val, uint8_t* addr, const short si12) + /// LASX: XVST Xd.32B, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, byte* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void xvst(int16x16_t val, int16_t* addr, const short si12) + /// LASX: XVST Xd.16H, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, short* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void xvst(uint16x16_t val, uint16_t* addr, const short si12) + /// LASX: XVST Xd.16H, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, ushort* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void xvst(int32x8_t val, int32_t* addr, const short si12) + /// LASX: XVST Xd.8W, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, int* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void xvst(uint32x8_t val, uint32_t* addr, const short si12) + /// LASX: XVST Xd.8W, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, uint* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void xvst(int64x4_t val, int64_t* addr, const short si12) + /// LASX: XVST Xd.4D, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, long* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void xvst(uint64x4_t val, uint64_t* addr, const short si12) + /// LASX: XVST Xd.4D, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, ulong* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void xvst(float32x8_t val, float32_t* addr, const short si12) + /// LASX: XVST Xd.8W, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, float* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void xvst(float64x4_t val, float64_t* addr, const short si12) + /// LASX: XVST Xd.4D, Rj, si12 + /// + public static unsafe void Store(Vector256 vector, double* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void xvstx(int8x32_t val, int8_t* addr, long offsetValue) + /// LASX: XVSTX Xd.32B, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, sbyte* addr, long offsetValue) => Store(vector, addr, offsetValue); + + /// + /// void xvstx(uint8x32_t val, uint8_t* addr, long offsetValue) + /// LASX: XVSTX Xd.32B, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, byte* addr, long offsetValue) => Store(vector, addr, offsetValue); + + /// + /// void xvstx(int16x16_t val, int16_t* addr, long offsetValue) + /// LASX: XVSTX Xd.16H, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, short* addr, long offsetValue) => Store(vector, addr, offsetValue); + + /// + /// void xvstx(uint16x16_t val, uint16_t* addr, long offsetValue) + /// LASX: XVSTX Xd.16H, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, ushort* addr, long offsetValue) => Store(vector, addr, offsetValue); + + /// + /// void xvstx(int32x8_t val, int32_t* addr, long offsetValue) + /// LASX: XVSTX Xd.8W, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, int* addr, long offsetValue) => Store(vector, addr, offsetValue); + + /// + /// void xvstx(uint32x8_t val, uint32_t* addr, long offsetValue) + /// LASX: XVSTX Xd.8W, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, uint* addr, long offsetValue) => Store(vector, addr, offsetValue); + + /// + /// void xvstx(int64x4_t val, int64_t* addr, long offsetValue) + /// LASX: XVSTX Xd.4D, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, long* addr, long offsetValue) => Store(vector, addr, offsetValue); + + /// + /// void xvstx(uint64x4_t val, uint64_t* addr, long offsetValue) + /// LASX: XVSTX Xd.4D, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, ulong* addr, long offsetValue) => Store(vector, addr, offsetValue); + + /// + /// void xvstx(float32x8_t val, float32_t* addr, long offsetValue) + /// LASX: XVSTX Xd.8W, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, float* addr, long offsetValue) => Store(vector, addr, offsetValue); + + /// + /// void xvstx(float64x4_t val, float64_t* addr, long offsetValue) + /// LASX: XVSTX Xd.4D, Rj, Rk + /// + public static unsafe void Store(Vector256 vector, double* addr, long offsetValue) => Store(vector, addr, offsetValue); + + /// + /// void xvstelm_b(int8x32_t val, int8_t* addr, const short si8, const byte idx) + /// LASX: XVSTELM.B Xd.32B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, sbyte* addr, [ConstantExpected(Min = -128, Max = 127)] short si8, [ConstantExpected(Max = (byte)(31))] byte idx) => StoreElement(vector, addr, si8, idx); + + /// + /// void xvstelm_b(uint8x32_t val, uint8_t* addr, const short si8, const byte idx) + /// LASX: XVSTELM.B Xd.32B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, byte* addr, [ConstantExpected(Min = -128, Max = 127)] short si8, [ConstantExpected(Max = (byte)(31))] byte idx) => StoreElement(vector, addr, si8, idx); + + /// + /// void xvstelm_h(int16x16_t val, int16_t* addr, const short si9, const byte idx) // Note: si9 is 2byte aligned. + /// LASX: XVSTELM.H Xd.16H, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, short* addr, [ConstantExpected(Min = -256, Max = 254)] short si9, [ConstantExpected(Max = (byte)(15))] byte idx) => StoreElement(vector, addr, si9, idx); + + /// + /// void xvstelm_h(uint16x16_t val, uint16_t* addr, const short si9, const byte idx) + /// LASX: XVSTELM.H Xd.16H, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, ushort* addr, [ConstantExpected(Min = -256, Max = 254)] short si9, [ConstantExpected(Max = (byte)(15))] byte idx) => StoreElement(vector, addr, si9, idx); + + /// + /// void xvstelm_w(int32x8_t val, int32_t* addr, const short si10, const byte idx) // Note: si10 is 4byte aligned. + /// LASX: XVSTELM.W Xd.8W, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, int* addr, [ConstantExpected(Min = -512, Max = 508)] short si10, [ConstantExpected(Max = (byte)(7))] byte idx) => StoreElement(vector, addr, si10, idx); + + /// + /// void xvstelm_w(uint32x8_t val, uint32_t* addr, const short si10, const byte idx) + /// LASX: XVSTELM.W Xd.8W, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, uint* addr, [ConstantExpected(Min = -512, Max = 508)] short si10, [ConstantExpected(Max = (byte)(7))] byte idx) => StoreElement(vector, addr, si10, idx); + + /// + const /// void xvstelm_d(int64x4_t val, int64_t* addr, const short si11, const byte idx) // Note: si11 is 8byte aligned. + /// LASX: XVSTELM.D Xd.4D, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, long* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(3))] byte idx) => StoreElement(vector, addr, si11, idx); + + /// + /// void xvstelm_d(uint64x4_t val, uint64_t* addr, const short si11, const byte idx) + /// LASX: XVSTELM.D Xd.4D, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, ulong* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(3))] byte idx) => StoreElement(vector, addr, si11, idx); + + /// + /// void xvstelm_w(float32x8_t val, float32_t* addr, const short si10, const byte idx) + /// LASX: XVSTELM.W Xd.8S, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, float* addr, [ConstantExpected(Min = -512, Max = 511)] short si10, [ConstantExpected(Max = (byte)(7))] byte idx) => StoreElement(vector, addr, si10, idx); + + /// + /// void xvstelm_d(float64x4_t val, float64_t* addr, const short si11, const byte idx) + /// LASX: XVSTELM.D Xd.4D, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector256 vector, double* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(3))] byte idx) => StoreElement(vector, addr, si11, idx); + + /// + /// int8x32_t xvneg_b(int8x32_t a) + /// LASX: XVNEG.B Xd.32B, Xj.32B + /// + public static Vector256 Negate(Vector256 value) => Negate(value); + + /// + /// int16x16_t xvneg_h(int16x16_t a) + /// LASX: XVNEG.H Xd.16H, Xj.16H + /// + public static Vector256 Negate(Vector256 value) => Negate(value); + + /// + /// int32x8_t xvneg_w(int32x8_t a) + /// LASX: XVNEG.W Xd.8W, Xj.8W + /// + public static Vector256 Negate(Vector256 value) => Negate(value); + + /// + /// int64x4_t xvneg_d(int64x4_t a) + /// LASX: XVNEG.D Xd.4D, Xj.4D + /// + public static Vector256 Negate(Vector256 value) => Negate(value); + + /// + /// float32x8_t xvbitrevi_w(float32x8_t a) + /// LASX: XVBITREVI.W Xd.8W, Xj.8W, 31 + /// + public static Vector256 Negate(Vector256 value) => Negate(value); + + /// + /// float64x4_t xvbitrevi_d(float64x4_t a) + /// LASX: XVBITREVI.D Xd.4D, Xj.4D + /// + public static Vector256 Negate(Vector256 value) => Negate(value); + + /// + /// int16x16_t xvmulwod_h_b(int8x32_t a, int8x32_t b) + /// LASX: XVMULWOD.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + /// + /// int32x8_t xvmulwod_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVMULWOD.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + /// + /// int64x4_t xvmulwod_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVMULWOD.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + /// + /// int128x2_t xvmulwod_q_d(int64x4_t a, int64x4_t b) + /// LASX: XVMULWOD.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + /// + /// int16x16_t xvmulwev_h_b(int8x32_t a, int8x32_t b) + /// LASX: XVMULWEV.H.B Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + /// + /// int32x8_t xvmulwev_w_h(int16x16_t a, int16x16_t b) + /// LASX: XVMULWEV.W.H Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + /// + /// int64x4_t xvmulwev_d_w(int32x8_t a, int32x8_t b) + /// LASX: XVMULWEV.D.W Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + /// + /// int128x2_t xvmulwev_q_d(int64x4_t a, int64x4_t b) + /// LASX: XVMULWEV.Q.D Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + /// + /// uint16x16_t xvmulwod_hu_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMULWOD.H.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + /// + /// uint32x8_t xvmulwod_wu_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMULWOD.W.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + /// + /// uint64x4_t xvmulwod_du_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMULWOD.D.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + /// + /// uint128x2_t xvmulwod_qu_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMULWOD.Q.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + /// + /// uint16x16_t xvmulwev_hu_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVMULWEV.H.BU Xd.16H, Xj.32B, Xk.32B + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + /// + /// uint32x8_t xvmulwev_wu_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVMULWEV.W.HU Xd.8W, Xj.16H, Xk.16H + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + /// + /// uint64x4_t xvmulwev_du_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVMULWEV.D.WU Xd.4D, Xj.8W, Xk.8W + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + /// + /// uint128x2_t xvmulwev_qu_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVMULWEV.Q.DU Xd.2Q, Xj.4D, Xk.4D + /// + public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + // /// + // /// int16x16_t xvmulwod_h_bu(uint8x32_t a, int8x32_t b) + // /// LASX: XVMULWOD.H.BU.B Xd.16H, Xj.32B, Xk.32B + // /// + // public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + // /// + // /// int32x8_t xvmulwod_w_hu(uint16x16_t a, int16x16_t b) + // /// LASX: XVMULWOD.W.HU.H Xd.8W, Xj.16H, Xk.16H + // /// + // public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + // /// + // /// int64x4_t xvmulwod_d_wu(uint32x8_t a, int32x8_t b) + // /// LASX: XVMULWOD.D.WU.W Xd.4D, Xj.8W, Xk.8W + // /// + // public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + // /// + // /// int128x2_t xvmulwod_q_du(uint64x4_t a, int64x4_t b) + // /// LASX: XVMULWOD.Q.DU.D Xd.2Q, Xj.4D, Xk.4D + // /// + // public static Vector256 MultiplyWideningOdd(Vector256 left, Vector256 right) => MultiplyWideningOdd(left, right); + + // /// + // /// int16x16_t xvmulwev_h_bu(uint8x32_t a, int8x32_t b) + // /// LASX: XVMULWEV.H.BU.B Xd.16H, Xj.32B, Xk.32B + // /// + // public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + // /// + // /// int32x8_t xvmulwev_w_hu(uint16x16_t a, int16x16_t b) + // /// LASX: XVMULWEV.W.HU.H Xd.8W, Xj.16H, Xk.16H + // /// + // public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + // /// + // /// int64x4_t xvmulwev_d_wu(uint32x8_t a, int32x8_t b) + // /// LASX: XVMULWEV.D.WU.W Xd.4D, Xj.8W, Xk.8W + // /// + // public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + // /// + // /// int128x2_t xvmulwev_q_du(uint64x4_t a, int64x4_t b) + // /// LASX: XVMULWEV.Q.DU.D Xd.2Q, Xj.4D, Xk.4D + // /// + // public static Vector256 MultiplyWideningEven(Vector256 left, Vector256 right) => MultiplyWideningEven(left, right); + + /// + /// int8x32_t xvavg_b(int8x32_t a, int8x32_t b) + /// LASX: XVAVG.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Average(Vector256 left, Vector256 right) => Average(left, right); + + /// + /// uint8x32_t xvavg_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVAVG.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Average(Vector256 left, Vector256 right) => Average(left, right); + + /// + /// int16x16_t xvavg_h(int16x16_t a, int16x16_t b) + /// LASX: XVAVG.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Average(Vector256 left, Vector256 right) => Average(left, right); + + /// + /// uint16x16_t xvavg_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVAVG.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 Average(Vector256 left, Vector256 right) => Average(left, right); + + /// + /// int32x8_t xvavg_w(int32x8_t a, int32x8_t b) + /// LASX: XVAVG.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Average(Vector256 left, Vector256 right) => Average(left, right); + + /// + /// uint32x8_t xvavg_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVAVG.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 Average(Vector256 left, Vector256 right) => Average(left, right); + + /// + /// int64x4_t xvavg_d(int64x4_t a, int64x4_t b) + /// LASX: XVAVG.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Average(Vector256 left, Vector256 right) => Average(left, right); + + /// + /// uint64x4_t xvavg_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVAVG.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 Average(Vector256 left, Vector256 right) => Average(left, right); + + /// + /// int8x32_t xvavgr_b(int8x32_t a, int8x32_t b) + /// LASX: XVAVGR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) => AverageRounded(left, right); + + /// + /// uint8x32_t xvavgr_bu(uint8x32_t a, uint8x32_t b) + /// LASX: XVAVGR.BU Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) => AverageRounded(left, right); + + /// + /// int16x16_t xvavgr_h(int16x16_t a, int16x16_t b) + /// LASX: XVAVGR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) => AverageRounded(left, right); + + /// + /// uint16x16_t xvavgr_hu(uint16x16_t a, uint16x16_t b) + /// LASX: XVAVGR.HU Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) => AverageRounded(left, right); + + /// + /// int32x8_t xvavgr_w(int32x8_t a, int32x8_t b) + /// LASX: XVAVGR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) => AverageRounded(left, right); + + /// + /// uint32x8_t xvavgr_wu(uint32x8_t a, uint32x8_t b) + /// LASX: XVAVGR.WU Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) => AverageRounded(left, right); + + /// + /// int64x4_t xvavgr_d(int64x4_t a, int64x4_t b) + /// LASX: XVAVGR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) => AverageRounded(left, right); + + /// + /// uint64x4_t xvavgr_du(uint64x4_t a, uint64x4_t b) + /// LASX: XVAVGR.DU Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 AverageRounded(Vector256 left, Vector256 right) => AverageRounded(left, right); + + /// + /// int16x16_t xvsllwil_h_b(int8x32_t a, uint8_t ui3) + /// LASX: XVSLLWIL.H.B Xd.16H, Xj.32B, ui3 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => SignExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// int16x16_t xvsllwil_h_b(uint8x32_t a, uint8_t ui3) + /// LASX: XVSLLWIL.H.B Xd.16H, Xj.32B, ui3 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => SignExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// int32x8_t xvsllwil_w_h(int16x4_t a, uint8_t ui4) + /// LASX: XVSLLWIL.W.H Xd.8W, Xj.4H, ui4 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => SignExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// int32x8_t xvsllwil_w_h(uint16x4_t a, uint8_t ui4) + /// LASX: XVSLLWIL.W.H Xd.8W, Xj.4H, ui4 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => SignExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// int64x4_t xvsllwil_d_w(int32x2_t a, uint8_t ui5) + /// LASX: XVSLLWIL.D.W Xd.4D, Xj.2W, ui5 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => SignExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// int64x4_t xvsllwil_d_w(uint32x2_t a, uint8_t ui5) + /// LASX: XVSLLWIL.D.W Xd.4D, Xj.2W, ui5 + /// + public static Vector256 SignExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => SignExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// uint16x16_t xvsllwil_hu_bu(uint8x32_t a, uint8_t ui3) + /// LASX: XVSLLWIL.HU.BU Xd.16H, Xj.32B, ui3 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => ZeroExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// int16x16_t xvsllwil_hu_bu(int8x32_t a, uint8_t ui3) + /// LASX: XVSLLWIL.HU.BU Xd.16H, Xj.32B, ui3 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => ZeroExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// uint32x8_t xvsllwil_wu_hu(uint16x16_t a, uint8_t ui4) + /// LASX: XVSLLWIL.WU.HU Xd.8W, Xj.16H, ui4 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => ZeroExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// int32x8_t xvsllwil_wu_hu(int16x16_t a, uint8_t ui4) + /// LASX: XVSLLWIL.WU.HU Xd.8W, Xj.16H, ui4 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => ZeroExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// uint64x4_t xvsllwil_du_wu(uint32x8_t a, uint8_t ui5) + /// LASX: XVSLLWIL.DU.WU Xd.4D, Xj.8W, ui5 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => ZeroExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// int64x4_t xvsllwil_du_wu(int32x8_t a, uint8_t ui5) + /// LASX: XVSLLWIL.DU.WU Xd.4D, Xj.8W, ui5 + /// + public static Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(Vector256 value, byte shift) => ZeroExtendWideningLowerAndShiftLeftEach128(value, shift); + + /// + /// uint128x2_t xvextl_qu_du(int64x4_t a) + /// LASX: XVEXTL.QU.DU Xd.2Q, Xj.D + /// + public static Vector256 ZeroExtendWideningLowerEach128(Vector256 value) => ZeroExtendWideningLowerEach128(value); + + /// + /// uint128x2_t xvextl_qu_du(uint64x4_t a) + /// LASX: XVEXTL.QU.DU Xd.2Q, Xj.D + /// + public static Vector256 ZeroExtendWideningLowerEach128(Vector256 value) => ZeroExtendWideningLowerEach128(value); + + /// + /// int16x16_t vext2xv_h_b(int8x16_t a) + /// LASX: VEXT2XV.H.B Xd.16H, Xj.16B + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// int16x16_t vext2xv_h_b(uint8x16_t a) + /// LASX: VEXT2XV.H.B Xd.16H, Xj.16B + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// int32x8_t vext2xv_w_b(int8x8_t a) + /// LASX: VEXT2XV.W.B Xd.8W, Xj.8B + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) => SignExtendWideningLower(value, shift); + //public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// int32x8_t vext2xv_w_b(uint8x8_t a) + /// LASX: VEXT2XV.W.B Xd.8W, Xj.8B + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) => SignExtendWideningLower(value, shift); + //public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// int64x4_t vext2xv_d_b(int8x4_t a) + /// LASX: VEXT2XV.D.B Xd.4D, Xj.4B + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// int64x4_t vext2xv_d_b(uint8x4_t a) + /// LASX: VEXT2XV.D.B Xd.4D, Xj.4B + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// int32x8_t vext2xv_w_h(int16x8_t a) + /// LASX: VEXT2XV.W.H Xd.8W, Xj.8H + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// int32x8_t vext2xv_w_h(uint16x8_t a) + /// LASX: VEXT2XV.W.H Xd.8W, Xj.8H + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// int64x4_t vext2xv_d_h(int16x4_t a) + /// LASX: VEXT2XV.D.H Xd.4D, Xj.4H + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) => SignExtendWideningLower(value, shift); + //public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// int64x4_t vext2xv_d_h(uint16x4_t a) + /// LASX: VEXT2XV.D.H Xd.4D, Xj.4H + /// + public static Vector256 SignExtendWideningLower(Vector64 value, byte shift) => SignExtendWideningLower(value, shift); + //public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// int64x4_t vext2xv_d_w(int32x2_t a) + /// LASX: VEXT2XV.D.W Xd.4D, Xj.2W + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// int64x4_t vext2xv_d_w(uint32x2_t a) + /// LASX: VEXT2XV.D.W Xd.4D, Xj.2W + /// + public static Vector256 SignExtendWideningLower(Vector128 value, byte shift) => SignExtendWideningLower(value, shift); + + /// + /// uint16x16_t vext2xv_hu_bu(uint8x16_t a) + /// LASX: VEXT2XV.HU.BU Xd.16H, Xj.16B + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// int16x16_t vext2xv_hu_bu(int8x16_t a) + /// LASX: VEXT2XV.HU.BU Xd.16H, Xj.16B + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// uint32x8_t vext2xv_wu_bu(uint8x8_t a) + /// LASX: VEXT2XV.WU.BU Xd.8W, Xj.8B + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// int32x8_t vext2xv_wu_bu(int8x8_t a) + /// LASX: VEXT2XV.WU.BU Xd.8W, Xj.8B + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// uint64x4_t vext2xv_du_bu(uint8x4_t a) + /// LASX: VEXT2XV.DU.BU Xd.4D, Xj.4B + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// int64x4_t vext2xv_du_bu(int8x4_t a) + /// LASX: VEXT2XV.DU.BU Xd.4D, Xj.4B + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// uint32x8_t vext2xv_wu_hu(uint16x8_t a) + /// LASX: VEXT2XV.WU.HU Xd.8W, Xj.8H + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// int32x8_t vext2xv_wu_hu(int16x8_t a) + /// LASX: VEXT2XV.WU.HU Xd.8W, Xj.8H + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// uint64x4_t vext2xv_du_hu(uint16x4_t a) + /// LASX: VEXT2XV.DU.HU Xd.4D, Xj.4H + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// int64x4_t vext2xv_du_hu(int16x4_t a) + /// LASX: VEXT2XV.DU.HU Xd.4D, Xj.4H + /// + public static Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// uint64x4_t vext2xv_du_wu(uint32x4_t a) + /// LASX: VEXT2XV.DU.WU Xd.4D, Xj.4W + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// int64x4_t vext2xv_du_wu(int32x4_t a) + /// LASX: VEXT2XV.DU.WU Xd.4D, Xj.4W + /// + public static Vector256 ZeroExtendWideningLower(Vector128 value, byte shift) => ZeroExtendWideningLower(value, shift); + + /// + /// int16x16_t xvexth_h_b(int8x32_t a) + /// LASX: XVEXTH.H.B Xd.16H, Xj.32B + /// + public static Vector256 SignExtendWideningUpperEach128(Vector256 value) => SignExtendWideningUpperEach128(value); + + /// + /// int32x8_t xvexth_w_h(int16x16_t a) + /// LASX: XVEXTH.W.H Xd.8W, Xj.16H + /// + public static Vector256 SignExtendWideningUpperEach128(Vector256 value) => SignExtendWideningUpperEach128(value); + + /// + /// int64x4_t xvexth_d_w(int32x8_t a) + /// LASX: XVEXTH.D.W Xd.4D, Xj.8W + /// + public static Vector256 SignExtendWideningUpperEach128(Vector256 value) => SignExtendWideningUpperEach128(value); + + /// + /// int128x2_t xvexth_d_w(int64x4_t a) + /// LASX: XVEXTH.Q.D Xd.2Q, Xj.4D + /// + public static Vector256 SignExtendWideningUpperEach128(Vector256 value) => SignExtendWideningUpperEach128(value); + + /// + /// int16x16_t xvexth_HU_BU(int8x32_t a) + /// LASX: XVEXTH.HU.BU Xd.16H, Xj.32B + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) => ZeroExtendWideningUpperEach128(value); + + /// + /// uint16x16_t xvexth_HU_BU(uint8x32_t a) + /// LASX: XVEXTH.HU.BU Xd.16H, Xj.32B + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) => ZeroExtendWideningUpperEach128(value); + + /// + /// int32x8_t xvexth_WU_HU(int16x16_t a) + /// LASX: XVEXTH.WU.HU Xd.8W, Xj.16H + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) => ZeroExtendWideningUpperEach128(value); + + /// + /// uint32x8_t xvexth_WU_HU(uint16x16_t a) + /// LASX: XVEXTH.WU.HU Xd.8W, Xj.16H + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) => ZeroExtendWideningUpperEach128(value); + + /// + /// int64x4_t xvexth_DU_WU(uint32x8_t a) + /// LASX: XVEXTH.DU.WU Xd.4D, Xj.8W + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) => ZeroExtendWideningUpperEach128(value); + + /// + /// uint64x4_t xvexth_DU_WU(uint32x8_t a) + /// LASX: XVEXTH.DU.WU Xd.4D, Xj.8W + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) => ZeroExtendWideningUpperEach128(value); + + /// + /// int128x2_t xvexth_DU_WU(int64x4_t a) + /// LASX: XVEXTH.QU.DU Xd.2Q, Xj.4D + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) => ZeroExtendWideningUpperEach128(value); + + /// + /// uint128x2_t xvexth_DU_WU(uint64x4_t a) + /// LASX: XVEXTH.QU.DU Xd.2Q, Xj.4D + /// + public static Vector256 ZeroExtendWideningUpperEach128(Vector256 value) => ZeroExtendWideningUpperEach128(value); + + /// + /// int8x32_t xvand_v(int8x32_t a, int8x32_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) => And(left, right); + + /// + /// uint8x32_t xvand_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) => And(left, right); + + /// + /// int16x16_t xvand_v(int16x16_t a, int16x16_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) => And(left, right); + + /// + /// uint16x16_t xvand_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) => And(left, right); + + /// + /// int32x8_t xvand_v(int32x8_t a, int32x8_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) => And(left, right); + + /// + /// uint32x8_t xvand_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) => And(left, right); + + /// + /// int64x4_t xvand_v(int64x4_t a, int64x4_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) => And(left, right); + + /// + /// uint64x4_t xvand_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) => And(left, right); + + /// + /// float32x8_t xvand_v(float32x8_t a, float32x8_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) => And(left, right); + + /// + /// float64x4_t xvand_v(float64x4_t a, float64x4_t b) + /// LASX: XVAND.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 And(Vector256 left, Vector256 right) => And(left, right); + + /// + /// int8x32_t xvandn_v(int8x32_t a, int8x32_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) => AndNot(left, right); + + /// + /// uint8x32_t xvandn_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) => AndNot(left, right); + + /// + /// int16x16_t xvandn_v(int16x16_t a, int16x16_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) => AndNot(left, right); + + /// + /// uint16x16_t xvandn_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) => AndNot(left, right); + + /// + /// int32x8_t xvandn_v(int32x8_t a, int32x8_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) => AndNot(left, right); + + /// + /// uint32x8_t xvandn_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) => AndNot(left, right); + + /// + /// int64x4_t xvandn_v(int64x4_t a, int64x4_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) => AndNot(left, right); + + /// + /// uint64x4_t xvandn_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) => AndNot(left, right); + + /// + /// float32x8_t xvandn_v(float32x8_t a, float32x8_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) => AndNot(left, right); + + /// + /// float64x4_t xvandn_v(float64x4_t a, float64x4_t b) + /// LASX: XVANDN.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 AndNot(Vector256 left, Vector256 right) => AndNot(left, right); + + /// + /// int8x32_t xvor_v(int8x32_t a, int8x32_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) => Or(left, right); + + /// + /// uint8x32_t xvor_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) => Or(left, right); + + /// + /// int16x16_t xvor_v(int16x16_t a, int16x16_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) => Or(left, right); + + /// + /// uint16x16_t xvor_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) => Or(left, right); + + /// + /// int32x8_t xvor_v(int32x8_t a, int32x8_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) => Or(left, right); + + /// + /// uint32x8_t xvor_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) => Or(left, right); + + /// + /// int64x4_t xvor_v(int64x4_t a, int64x4_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) => Or(left, right); + + /// + /// uint64x4_t xvor_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) => Or(left, right); + + /// + /// float32x8_t xvor_v(float32x8_t a, float32x8_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) => Or(left, right); + + /// + /// float64x4_t xvor_v(float64x4_t a, float64x4_t b) + /// LASX: XVOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Or(Vector256 left, Vector256 right) => Or(left, right); + + /// + /// uint8x32_t xvnori_b(uint8x32_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) => Not(value); + + /// + /// float64x4_t xvnori_b(float64x4_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) => Not(value); + + /// + /// int16x16_t xvnori_b(int16x16_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) => Not(value); + + /// + /// int32x8_t xvnori_b(int32x8_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) => Not(value); + + /// + /// int64x4_t xvnori_b(int64x4_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) => Not(value); + + /// + /// int8x32_t xvnori_b(int8x32_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) => Not(value); + + /// + /// float32x8_t xvnori_b(float32x8_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) => Not(value); + + /// + /// uint16x16_t xvnori_b(uint16x16_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) => Not(value); + + /// + /// uint32x8_t xvnori_b(uint32x8_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// + public static Vector256 Not(Vector256 value) => Not(value); + + /// + /// uint64x4_t xvnori_b(uint64x4_t a) + /// LASX: XVNORI.B Vd.32B, Vj.32B, 0 + /// The above native signature does not exist. We provide this additional overload for consistency with the other scalar APIs. + /// + public static Vector256 Not(Vector256 value) => Not(value); + + /// + /// int8x32_t xvnor_v(int8x32_t a, int8x32_t b) + /// LASX: XVNOR.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) => NotOr(left, right); + + /// + /// uint8x32_t xvnor_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVNOR.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) => NotOr(left, right); + + /// + /// int16x16_t xvnor_v(int16x16_t a, int16x16_t b) + /// LASX: XVNOR.V Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) => NotOr(left, right); + + /// + /// uint16x16_t xvnor_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVNOR.V Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) => NotOr(left, right); + + /// + /// int32x8_t xvnor_v(int32x8_t a, int32x8_t b) + /// LASX: XVNOR.V Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) => NotOr(left, right); + + /// + /// uint32x8_t xvnor_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVNOR.V Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) => NotOr(left, right); + + /// + /// int64x4_t xvnor_v(int64x4_t a, int64x4_t b) + /// LASX: XVNOR.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) => NotOr(left, right); + + /// + /// uint64x4_t xvnor_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVNOR.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) => NotOr(left, right); + + /// + /// float32x8_t xvnor_v(float32x8_t a, float32x8_t b) + /// LASX: XVNOR.V Vd.8S, Vj.8S, Vk.8S + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) => NotOr(left, right); + + /// + /// float64x4_t xvnor_v(float64x4_t a, float64x4_t b) + /// LASX: XVNOR.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 NotOr(Vector256 left, Vector256 right) => NotOr(left, right); + + /// + /// uint8x8_t xvorn(uint8x8_t a, uint8x8_t b) + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// float64x1_t xvorn(float64x1_t a, float64x1_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// int16x4_t xvorn(int16x4_t a, int16x4_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// int32x2_t xvorn(int32x2_t a, int32x2_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// int64x1_t xvorn(int64x1_t a, int64x1_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// int8x8_t xvorn(int8x8_t a, int8x8_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// float32x2_t xvorn(float32x2_t a, float32x2_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// uint16x4_t xvorn(uint16x4_t a, uint16x4_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// uint32x2_t xvorn(uint32x2_t a, uint32x2_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// uint64x1_t xvorn(uint64x1_t a, uint64x1_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// int8x32_t xvorn_v(int8x32_t a, int8x32_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) => OrNot(left, right); + + /// + /// uint8x32_t xvorn_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVORN.V Vd.32B, Vj.32B, Vk.32B + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) => OrNot(left, right); + + /// + /// int16x16_t xvor_v(int16x16_t a, int16x16_t b) + /// LASX: XVORN.V Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) => OrNot(left, right); + + /// + /// uint16x16_t xvor_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVORN.V Vd.16H, Vj.16H, Vk.16H + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) => OrNot(left, right); + + /// + /// int32x8_t xvorn_v(int32x8_t a, int32x8_t b) + /// LASX: XVORN.V Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) => OrNot(left, right); + + /// + /// uint32x8_t xvorn_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVORN.V Vd.8W, Vj.8W, Vk.8W + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) => OrNot(left, right); + + /// + /// int64x4_t xvorn_v(int64x4_t a, int64x4_t b) + /// LASX: XVORN.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) => OrNot(left, right); + + /// + /// uint64x4_t xvorn_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVORN.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) => OrNot(left, right); + + /// + /// float32x8_t xvorn_v(float32x8_t a, float32x8_t b) + /// LASX: XVORN.V Vd.8S, Vj.8S, Vk.8S + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) => OrNot(left, right); + + /// + /// float64x4_t xvorn_v(float64x4_t a, float64x4_t b) + /// LASX: XVORN.V Vd.4D, Vj.4D, Vk.4D + /// + public static Vector256 OrNot(Vector256 left, Vector256 right) => OrNot(left, right); + + /// + /// int8x32_t xvxor_v(int8x32_t a, int8x32_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) => Xor(left, right); + + /// + /// uint8x32_t xvxor_v(uint8x32_t a, uint8x32_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) => Xor(left, right); + + /// + /// int16x16_t xvxor_v(int16x16_t a, int16x16_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) => Xor(left, right); + + /// + /// uint16x16_t xvxor_v(uint16x16_t a, uint16x16_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) => Xor(left, right); + + /// + /// int32x8_t xvxor_v(int32x8_t a, int32x8_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) => Xor(left, right); + + /// + /// uint32x8_t xvxor_v(uint32x8_t a, uint32x8_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) => Xor(left, right); + + /// + /// int64x4_t xvxor_v(int64x4_t a, int64x4_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) => Xor(left, right); + + /// + /// uint64x4_t xvxor_v(uint64x4_t a, uint64x4_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) => Xor(left, right); + + /// + /// float32x8_t xvxor_v(float32x8_t a, float32x8_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) => Xor(left, right); + + /// + /// float64x4_t xvxor_v(float64x4_t a, float64x4_t b) + /// LASX: XVXOR.V Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 Xor(Vector256 left, Vector256 right) => Xor(left, right); + + /// + /// int8x32_t xvslli_b(int8x32_t a, const int n) + /// LASX: XVSLLI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// uint8x32_t xvslli_b(uint8x32_t a, const int n) + /// LASX: XVSLLI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// int16x16_t xvslli_h(int16x16_t a, const int n) + /// LASX: XVSLLI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// uint16x16_t xvslli_h(uint16x16_t a, const int n) + /// LASX: XVSLLI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// uint32x8_t xvslli_w(uint32x8_t a, const int n) + /// LASX: XVSLLI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// uint32x8_t xvslli_w(uint32x8_t a, const int n) + /// LASX: XVSLLI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// int64x4_t xvslli_d(int64x4_t a, const int n) + /// LASX: XVSLLI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// uint64x4_t xvslli_d(uint64x4_t a, const int n) + /// LASX: XVSLLI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftLeftLogical(Vector256 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// int8x32_t xvbsll_v(int8x32_t a, const int shift) + /// LASX: XVBSLL.V Xd.32B, Xj.32B, ui4 + /// + public static Vector256 ShiftLeftLogicalByByteEach128(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftLeftLogicalByByteEach128(value, shift); + + /// + /// uint8x32_t xvbsll_v(uint8x32_t a, const int shift) + /// LASX: XVBSLL.V Xd.32B, Xj.32B, ui4 + /// + public static Vector256 ShiftLeftLogicalByByteEach128(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftLeftLogicalByByteEach128(value, shift); + + /// int8x32_t xvsll_b(int8x32_t a, int8x32_t b) + /// LASX: XVSLL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) => ShiftLeftLogical(value, shift); + + /// + /// uint8x32_t xvsll_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVSLL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) => ShiftLeftLogical(value, shift); + + /// + /// int16x16 xvsll_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSLL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) => ShiftLeftLogical(value, shift); + + /// + /// uint16x16 xvsll_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSLL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) => ShiftLeftLogical(value, shift); + + /// + /// int32x8 xvsll_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSLL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) => ShiftLeftLogical(value, shift); + + /// + /// uint32x8 xvsll_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSLL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) => ShiftLeftLogical(value, shift); + + /// + /// int64x4 xvsll_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSLL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) => ShiftLeftLogical(value, shift); + + /// + /// uint64x4 xvsll_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSLL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftLeftLogical(Vector256 value, Vector256 shift) => ShiftLeftLogical(value, shift); + + /// + /// uint8x32_t xvsrli_b(uint8x32_t a, const int n) + /// LASX: XVSRLI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint8x32_t xvsrli_b(uint8x32_t a, const int n) + /// LASX: XVSRLI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint16x16_t xvsrli_h(uint16x16_t a, const int n) + /// LASX: XVSRLI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint16x16_t xvsrli_h(uint16x16_t a, const int n) + /// LASX: XVSRLI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint32x8_t xvsrli_w(uint32x8_t a, const int n) + /// LASX: XVSRLI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint32x8_t xvsrli_w(uint32x8_t a, const int n) + /// LASX: XVSRLI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint64x4_t xvsrli_d(uint64x4_t a, const int n) + /// LASX: XVSRLI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint64x4_t xvsrli_d(uint64x4_t a, const int n) + /// LASX: XVSRLI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogical(Vector256 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// int8x32_t xvbsrl_v(int8x32_t a, const int shift) + /// LASX: XVBSRL.V Xd.32B, Xj.32B, ui4 + /// + public static Vector256 ShiftRightLogicalByByteEach128(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalByByteEach128(value, shift); + + /// + /// uint8x32_t xvbsrl_v(uint8x32_t a, const int shift) + /// LASX: XVBSRL.V Xd.32B, Xj.32B, ui4 + /// + public static Vector256 ShiftRightLogicalByByteEach128(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalByByteEach128(value, shift); + + /// int8x32_t xvsrl_b(int8x32_t a, int8x32_t b) + /// LASX: XVSRL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) => ShiftRightLogical(value, shift); + + /// + /// uint8x32_t xvsrl_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVSRL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) => ShiftRightLogical(value, shift); + + /// + /// int16x16 xvsrl_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) => ShiftRightLogical(value, shift); + + /// + /// uint16x16 xvsrl_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSRL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) => ShiftRightLogical(value, shift); + + /// + /// int32x8 xvsrl_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) => ShiftRightLogical(value, shift); + + /// + /// uint32x8 xvsrl_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSRL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) => ShiftRightLogical(value, shift); + + /// + /// int64x4 xvsrl_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) => ShiftRightLogical(value, shift); + + /// + /// uint64x4 xvsrl_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSRL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightLogical(Vector256 value, Vector256 shift) => ShiftRightLogical(value, shift); + + /// + /// uint8x32_t xvsrlri_b(uint8x32_t a, const int n) + /// LASX: XVSRLRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint8x32_t xvsrlri_b(uint8x32_t a, const int n) + /// LASX: XVSRLRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint16x16_t xvsrlri_h(uint16x16_t a, const int n) + /// LASX: XVSRLRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint16x16_t xvsrlri_h(uint16x16_t a, const int n) + /// LASX: XVSRLRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint32x8_t xvsrlri_w(uint32x8_t a, const int n) + /// LASX: XVSRLRI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint32x8_t xvsrlri_w(uint32x8_t a, const int n) + /// LASX: XVSRLRI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint64x4_t xvsrlri_d(uint64x4_t a, const int n) + /// LASX: XVSRLRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint64x4_t xvsrlri_d(uint64x4_t a, const int n) + /// LASX: XVSRLRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// int8x32_t xvsrlr_b(int8x32_t a, int8x32_t b) + /// LASX: XVSRLR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint8x32_t xvsrlr_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVSRLR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// int16x16 xvsrlr_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRLR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint16x16 xvsrlr_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSRLR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// int32x8 xvsrlr_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRLR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint32x8 xvsrlr_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSRLR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// int64x4 xvsrlr_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRLR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint64x4 xvsrlr_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSRLR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightLogicalRounded(Vector256 value, Vector256 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint8x32_t xvsrlrni_b_h(uint16x16_t left, uint16x16_t right, const int n) + /// LASX: XVSRLRNI.B.H Xd, Xj, ui4 ///NOTE: The Vd is both input and output, so the left shoule be ref type!!! + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(left, right, shift); + + /// + /// int8x32_t xvsrlrni_b_h(int16x16_t left, int16x16_t right, const int n) + /// LASX: XVSRLRNI.B.H Xd, Xj, ui4 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(left, right, shift); + + /// + /// int16x16_t xvsrlrni_h_w(int32x8_t left, int32x8_t right, const int n) + /// LASX: XVSRLRNI.H.W Xd, Xj, ui5 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(left, right, shift); + + /// + /// uint16x16_t xvsrlrni_h_w(uint32x8_t left, uint32x8_t right, const int n) + /// LASX: XVSRLRNI.H.W Xd, Xj, ui5 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(left, right, shift); + + /// + /// int32x8_t xvsrlrni_w_d(int64x4_t left, int64x4_t right, const int n) + /// LASX: XVSRLRNI.W.D Xd, Xj, ui6 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(left, right, shift); + + /// + /// uint32x8_t xvsrlrni_w_d(uint64x4_t left, uint64x4_t right, const int n) + /// LASX: XVSRLRNI.W.D Xd, Xj, ui6 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(left, right, shift); + + ///// + ///// int64x4_t xvsrlrni_d_q(int128x2_t left, int128x2_t right, const int n) + ///// LASX: XVSRLRNI.D.Q Xd, Xj, ui7 + ///// + //public static Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(left, right, shift); + + /// + /// int8x16_t xvsrlrn_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRLRN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(value, shift); + + /// + /// uint8x16_t xvsrlrn_b_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSRLRN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(value, shift); + + /// + /// int16x8_t xvsrlrn_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRLRN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(value, shift); + + /// + /// uint16x8_t xvsrlrn_h_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSRLRN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(value, shift); + + /// + /// int32x4_t xvsrlrn_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRLRN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(value, shift); + + /// + /// uint32x4_t xvsrlrn_w_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSRLRN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingLowerEach128(value, shift); + + /// + /// int8x16_t xvsrarni_b_h(int16x16_t left, int16x16_t right, const int n) + /// LASX: XVSRARNI.B.H Xd, Xj, ui4 ///NOTE: The Vd is both input and output, so the left shoule be ref type!!! + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightArithmeticRoundedNarrowingLowerEach128(left, right, shift); + + /// + /// int16x16_t xvsrarni_h_w(int32x8_t left, int32x8_t right, const int n) + /// LASX: XVSRARNI.H.W Xd, Xj, ui5 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightArithmeticRoundedNarrowingLowerEach128(left, right, shift); + + /// + /// int32x8_t xvsrarni_w_d(int64x4_t left, int64x4_t right, const int n) + /// LASX: XVSRARNI.W.D Xd, Xj, ui6 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightArithmeticRoundedNarrowingLowerEach128(left, right, shift); + + ///// + ///// int64x4_t xvsrarni_d_q(int128x2_t left, int128x2_t right, const int n) + ///// LASX: XVSRARNI.D.Q Xd, Xj, ui7 + ///// + //public static Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightArithmeticRoundedNarrowingLowerEach128(left, right, shift); + + /// + /// int8x16_t xvsrarn_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRARN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticRoundedNarrowingLowerEach128(value, shift); + + /// + /// int16x8_t xvsrarn_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRARN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticRoundedNarrowingLowerEach128(value, shift); + + /// + /// uint16x8_t xvsrarn_h_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSRARN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticRoundedNarrowingLowerEach128(value, shift); + + /// + /// int32x4_t xvsrarn_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRARN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticRoundedNarrowingLowerEach128(value, shift); + + /// + /// int8x32_t xvsrai_b(int8x32_t a, const int n) + /// LASX: XVSRAI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, const byte shift) => ShiftRightArithmetic(value, shift); + + /// + /// int16x16_t xvsrai_h(int16x16_t a, const int n) + /// LASX: XVSRAI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, const byte shift) => ShiftRightArithmetic(value, shift); + + /// + /// int32x8_t xvsrai_w(int32x8_t a, const int n) + /// LASX: XVSRAI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, const byte shift) => ShiftRightArithmetic(value, shift); + + /// + /// int64x4_t xvsrai_d(int64x4_t a, const int n) + /// LASX: XVSRAI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, const byte shift) => ShiftRightArithmetic(value, shift); + + /// + /// int8x32_txvsra_b(int8x32_t a, int8x32_t b) + /// LASX: XVSRA.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, Vector256 shift) => ShiftRightArithmetic(value, shift); + + /// + /// int16x16xvsra_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRA.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, Vector256 shift) => ShiftRightArithmetic(value, shift); + + /// + /// int32x8xvsra_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRA.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, Vector256 shift) => ShiftRightArithmetic(value, shift); + + /// + /// int64x4xvsra_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRA.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightArithmetic(Vector256 value, Vector256 shift) => ShiftRightArithmetic(value, shift); + + /// + /// int8x32_t xvsrari_b(int8x32_t a, const int n) + /// LASX: XVSRARI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, const byte shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int16x16_t xvsrari_h(int16x16_t a, const int n) + /// LASX: XVSRARI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, const byte shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int32x8_t xvsrari_w(int32x8_t a, const int n) + /// LASX: XVSRARI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, const byte shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int64x4_t xvsrari_d(int64x4_t a, const int n) + /// LASX: XVSRARI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, const byte shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int8x32_t xvsrar_b(int8x32_t a, int8x32_t b) + /// LASX: XVSRAR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, Vector256 shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int16x16 xvsrar_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSRAR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, Vector256 shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int32x8 xvsrar_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRAR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, Vector256 shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int64x4 xvsrar_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRAR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 ShiftRightArithmeticRounded(Vector256 value, Vector256 shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// uint8x32_t xvrotri_b(uint8x32_t a, const int n) + /// LASX: XVROTRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint8x32_t xvrotri_b(uint8x32_t a, const int n) + /// LASX: XVROTRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint16x16_t xvrotri_h(uint16x16_t a, const int n) + /// LASX: XVROTRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint16x16_t xvrotri_h(uint16x16_t a, const int n) + /// LASX: XVROTRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint32x8_t xvrotri_w(uint32x8_t a, const int n) + /// LASX: XVROTRI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint32x8_t xvrotri_w(uint32x8_t a, const int n) + /// LASX: XVROTRI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint64x4_t xvrotri_d(uint64x4_t a, const int n) + /// LASX: XVROTRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint64x4_t xvrotri_d(uint64x4_t a, const int n) + /// LASX: XVROTRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 RotateRight(Vector256 value, const byte shift) => RotateRight(value, shift); + + /// + /// int8x32_t xvrotr_b(int8x32_t a, int8x32_t b) + /// LASX: XVROTR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) => RotateRight(value, shift); + + /// + /// uint8x32_t xvrotr_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVROTR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) => RotateRight(value, shift); + + /// + /// int16x16 xvrotr_h(int16x16_t value, int16x16_t shift) + /// LASX: XVROTR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) => RotateRight(value, shift); + + /// + /// uint16x16 xvrotr_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVROTR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) => RotateRight(value, shift); + + /// + /// int32x8 xvrotr_w(int32x8_t value, int32x8_t shift) + /// LASX: XVROTR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) => RotateRight(value, shift); + + /// + /// uint32x8 xvrotr_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVROTR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) => RotateRight(value, shift); + + /// + /// int64x4 xvrotr_d(int64x4_t value, int64x4_t shift) + /// LASX: XVROTR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) => RotateRight(value, shift); + + /// + /// uint64x4 xvrotr_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVROTR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 RotateRight(Vector256 value, Vector256 shift) => RotateRight(value, shift); + + /// + /// int8x32_t xvsigncov_b(int8x32_t a) + /// LASX: XVSIGNCOV.B Xd.32B, Xj.32B, Xj.32B + /// + public static Vector256 Abs(Vector256 value) => Abs(value); + + /// + /// int16x16_t xvsigncov_h(int16x16_t a) + /// LASX: XVSIGNCOV.H Xd.16H, Xj.16H, Xj.16H + /// + public static Vector256 Abs(Vector256 value) => Abs(value); + + /// + /// int32x8_t xvsigncov_w(int32x8_t a) + /// LASX: XVSIGNCOV.W Xd.8W, Xj.8W, Xj.8W + /// + public static Vector256 Abs(Vector256 value) => Abs(value); + + /// + /// int64x4_t xvsigncov_d(int64xx_t a) + /// LASX: XVSIGNCOV.D Xd.4D, Xj.4D, Xj.4D + /// + public static Vector256 Abs(Vector256 value) => Abs(value); + + /// + /// float32x8_t xvbitclri_w(float32x8_t a) + /// LASX: XVBITCLRI.W Xd.8S, Xd.8S, 31 + /// + public static Vector256 Abs(Vector256 value) => Abs(value); + + /// + /// float64x4_t xvbitclri_d(float64x4_t a) + /// LASX: XVBITCLRI.D Xd.4D, Xj.4D, 63 + /// + public static Vector256 Abs(Vector256 value) => Abs(value); + + /// + /// float32x8_t xvfrintrm_s(float32x8_t a) + /// LASX: XVFRINTRM.S Xd.8S, Xj.8S + /// + public static Vector256 Floor(Vector256 value) => Floor(value); + + /// + /// float64x4_t xvfrintrm_d(float64x4_t a) + /// LASX: XVFRINTRM.D Xd.4D, Xj.4D + /// + public static Vector256 Floor(Vector256 value) => Floor(value); + + /// + /// float32x8_t xvfrintrp_s(float32x8_t a) + /// LASX: XVFRINTRP.S Xd.8S, Xj.8S + /// + public static Vector256 Ceiling(Vector256 value) => Ceiling(value); + + /// + /// float64x4_t xvfrintrp_d(float64x4_t a) + /// LASX: XVFRINTRP.D Xd.4D, Xj.4D + /// + public static Vector256 Ceiling(Vector256 value) => Ceiling(value); + + /// + /// float32x8_t xvfrintrz_s(float32x8_t a) + /// LASX: XVFRINTRZ.S Xd.8S, Xj.8S + /// + public static Vector256 RoundToZero(Vector256 value) => RoundToZero(value); + + /// + /// float64x4_t xvfrintrz_d(float64x4_t a) + /// LASX: XVFRINTRZ.D Xd.4D, Xj.4D + /// + public static Vector256 RoundToZero(Vector256 value) => RoundToZero(value); + + /// + /// float32x8_t xvfrintrm_s(float32x8_t a) + /// LASX: XVFRINTRM.S Xd.8S, Xj.8S + /// + public static Vector256 RoundToNegativeInfinity(Vector256 value) => RoundToNegativeInfinity(value); + + /// + /// float64x4_t xvfrintrm_d(float64x4_t a) + /// LASX: XVFRINTRM.D Xd.4D, Xj.4D + /// + public static Vector256 RoundToNegativeInfinity(Vector256 value) => RoundToNegativeInfinity(value); + + /// + /// float32x8_t xvfrintrp_s(float32x8_t a) + /// LASX: XVFRINTRP.S Xd.8S, Xj.8S + /// + public static Vector256 RoundToPositiveInfinity(Vector256 value) => RoundToPositiveInfinity(value); + + /// + /// float64x4_t xvfrintrp_d(float64x4_t a) + /// LASX: XVFRINTRP.D Xd.4D, Xj.4D + /// + public static Vector256 RoundToPositiveInfinity(Vector256 value) => RoundToPositiveInfinity(value); + + // /// + // /// int8x32_t TODO(int8x32_t v, int8_t data, const int index) NOTE: maybe implemented by two instructions. + // /// LASX: TODO Xd.B, Rj, imm + // /// + // public static Vector256 Insert(Vector256 vector, sbyte data, const byte index) => Insert(vector, data, index); + + // /// + // /// uint8x32_t TODO(uint8x32_t v, uint8_t data, const int index) NOTE: maybe implemented by two instructions. + // /// LASX: TODO Xd.B, Rj, imm + // /// + // public static Vector256 Insert(Vector256 vector, byte data, const byte index) => Insert(vector, data, index); + + // /// + // /// int16x16_t TODO(int16x16_t v, int16_t data, const int index) NOTE: maybe implemented by two instructions. + // /// LASX: TODO Xd.H, Rj, imm + // /// + // public static Vector256 Insert(Vector256 vector, short data, const byte index) => Insert(vector, data, index); + + // /// + // /// uint16x16_t TODO(uint16x16_t v, uint16_t data, const int index) NOTE: maybe implemented by two instructions. + // /// LASX: TODO Xd.H, Rj, imm + // /// + // public static Vector256 Insert(Vector256 vector, ushort data, const byte index) => Insert(vector, data, index); + + /// + /// int32x8_t xvinsgr2vr_w(int32x8_t v, int32_t data, const int index) + /// LASX: XVINSGR2VR.W Xd.S, Rj, ui3 + /// + public static Vector256 Insert(Vector256 vector, int data, const byte index) => Insert(vector, data, index); + + /// + /// uint32x8_t xvinsgr2vr_w(uint32x8_t v, uint32_t data, const int index) + /// LASX: XVINSGR2VR.W Xd.S, Rj, ui3 + /// + public static Vector256 Insert(Vector256 vector, uint data, const byte index) => Insert(vector, data, index); + + /// + /// int64x4_t xvinsgr2vr_d(int64x4_t v, int64_t data, const int index) + /// LASX: XVINSGR2VR.D Xd.D, Rj, ui2 + /// + public static Vector256 Insert(Vector256 vector, long data, const byte index) => Insert(vector, data, index); + + /// + /// uint64x4_t xvinsgr2vr_d(uint64x4_t v, uint64_t data, const int index) + /// LASX: XVINSGR2VR.D Xd.D, Rj, ui2 + /// + public static Vector256 Insert(Vector256 vector, ulong data, const byte index) => Insert(vector, data, index); + + /// + /// float32x8_t xvinsve0_w(float32x8_t v, float32_t data, const int index) + /// LASX: XVINSVE0.W Xd.S, Xj.S[0], ui3 + /// + public static Vector256 Insert(Vector256 vector, float data, const byte index) => Insert(vector, data, index); + + /// + /// float64x4_t xvinsve0_d(float64x4_t v, float64_t data, const int index) + /// LASX: XVINSVE0.D Xd.D, Xj.D[0], ui2 + /// + public static Vector256 Insert(Vector256 vector, double data, const byte index) => Insert(vector, data, index); + + /// + /// int8x32_t xvreplgr2vr_b(int8_t value) + /// LASX: XVREPLGR2VR.B Xd.32B, Rj + /// + public static Vector256 DuplicateToVector256(sbyte value) => DuplicateToVector256(value); + + /// + /// uint8x32_t xvreplgr2vr_b(uint8_t value) + /// LASX: XVREPLGR2VR.B Xd.32B, Rj + /// + public static Vector256 DuplicateToVector256(byte value) => DuplicateToVector256(value); + + /// + /// int16x16_t xvreplgr2vr_h(int16_t value) + /// LASX: XVREPLGR2VR.H Xd.16H, Rj + /// + public static Vector256 DuplicateToVector256(short value) => DuplicateToVector256(value); + + /// + /// uint16x16_t xvreplgr2vr_h(uint16_t value) + /// LASX: XVREPLGR2VR.H Xd.16H, Rj + /// + public static Vector256 DuplicateToVector256(ushort value) => DuplicateToVector256(value); + + /// + /// int32x8_t xvreplgr2vr_w(int32_t value) + /// LASX: XVREPLGR2VR.W Xd.8W, Rj + /// + public static Vector256 DuplicateToVector256(int value) => DuplicateToVector256(value); + + /// + /// uint32x8_t xvreplgr2vr_w(uint32_t value) + /// LASX: XVREPLGR2VR.W Xd.8W, Rj + /// + public static Vector256 DuplicateToVector256(uint value) => DuplicateToVector256(value); + + /// + /// int64x4_t xvreplgr2vr_d(int64_t value) + /// LASX: XVREPLGR2VR.D Xd.4D, Rj + /// + public static Vector256 DuplicateToVector256(long value) => DuplicateToVector256(value); + + /// + /// uint64x4_t xvreplgr2vr_d(uint64_t value) + /// LASX: XVREPLGR2VR.D Xd.4D, Rj + /// + public static Vector256 DuplicateToVector256(ulong value) => DuplicateToVector256(value); + + /// + /// float32x8_t xvreplve0_w(float32_t value) + /// LASX: XVREPLVE0.W Xd.8S, Xj.S[0] + /// + public static Vector256 DuplicateToVector256(float value) => DuplicateToVector256(value); + + /// + /// float64x4_t xvreplve0_d(float64_t value) + /// LASX: XVREPLVE0.D Xd.4D, Xj.D[0] + /// + public static Vector256 DuplicateToVector256(double value) => DuplicateToVector256(value); + + /// + /// float32x8_t xvffint_s_w(int32x8_t a) + /// LASX: XVFFINT.S.W Xd.8S, Xj.8W + /// + public static Vector256 ConvertToSingle(Vector256 value) => ConvertToSingle(value); + + /// + /// float32x8_t xvffint_s_wu(uint32x8_t a) + /// LASX: XVFFINT.S.WU Xd.8S, Xj.8W + /// + public static Vector256 ConvertToSingle(Vector256 value) => ConvertToSingle(value); + + /// + /// float64x4_t xvffint_d_l(int64x4_t a) + /// LASX: XVFFINT.D.L Xd.4D, Xj.4D + /// + public static Vector256 ConvertToDouble(Vector256 value) => ConvertToDouble(value); + + /// + /// float64x4_t xvffint_d_lu(uint64x4_t a) + /// LASX: XVFFINT.D.LU Xd.4D, Xj.4D + /// + public static Vector256 ConvertToDouble(Vector256 value) => ConvertToDouble(value); + + /// + /// bool xvsetnez_v(uint8x32_t value) + /// LASX: XVSETNEZ.V cd, Xj.32B + /// + public static bool HasElementsNotZero(Vector256 value) => HasElementsNotZero(value); + + /// + /// bool xvseteqz_v(uint8x32_t value) + /// LASX: XVSETEQZ.V cd, Xj.32B + /// + public static bool AllElementsIsZero(Vector256 value) => AllElementsIsZero(value); + + /// + /// bool xvsetallnez_b(int8x32_t value) + /// LASX: XVSETALLNEZ.B cd, Xj.32B + /// + public static bool AllElementsNotZero(Vector256 value) => AllElementsNotZero(value); + + /// + /// bool xvsetallnez_b(uint8x32_t value) + /// LASX: XVSETALLNEZ.B cd, Xj.32B + /// + public static bool AllElementsNotZero(Vector256 value) => AllElementsNotZero(value); + + /// + /// bool xvsetallnez_h(int16x16_t value) + /// LASX: XVSETALLNEZ.H cd, Xj.16H + /// + public static bool AllElementsNotZero(Vector256 value) => AllElementsNotZero(value); + + /// + /// bool xvsetallnez_h(uint16x16_t value) + /// LASX: XVSETALLNEZ.H cd, Xj.16H + /// + public static bool AllElementsNotZero(Vector256 value) => AllElementsNotZero(value); + + /// + /// bool xvsetallnez_w(int32x8_t value) + /// LASX: XVSETALLNEZ.W cd, Xj.8W + /// + public static bool AllElementsNotZero(Vector256 value) => AllElementsNotZero(value); + + /// + /// bool xvsetallnez_w(uint32x8_t value) + /// LASX: XVSETALLNEZ.W cd, Xj.8W + /// + public static bool AllElementsNotZero(Vector256 value) => AllElementsNotZero(value); + + /// + /// bool xvsetallnez_w(int64x8_t value) + /// LASX: XVSETALLNEZ.D cd, Xj.4D + /// + public static bool AllElementsNotZero(Vector256 value) => AllElementsNotZero(value); + + /// + /// bool xvsetallnez_w(uint64x8_t value) + /// LASX: XVSETALLNEZ.D cd, Xj.4D + /// + public static bool AllElementsNotZero(Vector256 value) => AllElementsNotZero(value); + + /// + /// bool xvsetanyeqz_b(int8x32_t value) + /// LASX: XVSETANYEQZ.B cd, Xj.32B + /// + public static bool HasElementsIsZero(Vector256 value) => HasElementsIsZero(value); + + /// + /// bool xvsetanyeqz_b(uint8x32_t value) + /// LASX: XVSETANYEQZ.B cd, Xj.32B + /// + public static bool HasElementsIsZero(Vector256 value) => HasElementsIsZero(value); + + /// + /// bool xvsetanyeqz_h(int16x16_t value) + /// LASX: XVSETANYEQZ.H cd, Xj.16H + /// + public static bool HasElementsIsZero(Vector256 value) => HasElementsIsZero(value); + + /// + /// bool xvsetanyeqz_h(uint16x16_t value) + /// LASX: XVSETANYEQZ.H cd, Xj.16H + /// + public static bool HasElementsIsZero(Vector256 value) => HasElementsIsZero(value); + + /// + /// bool xvsetanyeqz_w(int32x8_t value) + /// LASX: XVSETANYEQZ.W cd, Xj.8W + /// + public static bool HasElementsIsZero(Vector256 value) => HasElementsIsZero(value); + + /// + /// bool xvsetanyeqz_w(uint32x8_t value) + /// LASX: XVSETANYEQZ.W cd, Xj.8W + /// + public static bool HasElementsIsZero(Vector256 value) => HasElementsIsZero(value); + + /// + /// bool xvsetanyeqz_w(int64x8_t value) + /// LASX: XVSETANYEQZ.D cd, Xj.4D + /// + public static bool HasElementsIsZero(Vector256 value) => HasElementsIsZero(value); + + /// + /// bool xvsetanyeqz_w(uint64x8_t value) + /// LASX: XVSETANYEQZ.D cd, Xj.4D + /// + public static bool HasElementsIsZero(Vector256 value) => HasElementsIsZero(value); + + /// + /// int8x32 xvsrlni_b_h(int16x16_t left, int16x16_t right, shift) + /// LASX: XVSRLNI.B.H Xd, Xj, ui4 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) => ShiftRightLogicalNarrowingLowerEach128(left, right, shift); + + /// + /// uint8x32 xvsrlni_b_h(uint16x16_t left, uint16x16_t right, shift) + /// LASX: XVSRLNI.B.H Xd, Xj, ui4 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) => ShiftRightLogicalNarrowingLowerEach128(left, right, shift); + + /// + /// int16x16 xvsrlni_h_w(int32x8_t left, int32x8_t right, shift) + /// LASX: XVSRLNI.H.W Xd, Xj, ui5 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) => ShiftRightLogicalNarrowingLowerEach128(left, right, shift); + + /// + /// uint16x16 xvsrlni_h_w(uint32x8_t left, uint32x8_t right, shift) + /// LASX: XVSRLNI.H.W Xd, Xj, ui5 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) => ShiftRightLogicalNarrowingLowerEach128(left, right, shift); + + /// + /// int32x8 xvsrlni_w_d(int64x4_t left, int64x4_t right, shift) + /// LASX: XVSRLNI.W.D Xd, Xj, ui6 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) => ShiftRightLogicalNarrowingLowerEach128(left, right, shift); + + /// + /// uint32x8 xvsrlni_w_d(uint64x4_t left, uint64x4_t right, shift) + /// LASX: XVSRLNI.W.D Xd, Xj, ui6 + /// + public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) => ShiftRightLogicalNarrowingLowerEach128(left, right, shift); + + ///// + ///// uint64x4 xvsrlni_d_q(uint128x2_t left, uint128x2_t right, shift) + ///// LASX: XVSRLNI.D.Q Xd.2Q, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightLogicalNarrowingLowerEach128(Vector256 left, Vector256 right, byte shift) => ShiftRightLogicalNarrowingLowerEach128(left, right, shift); + + /// + /// uint8x16_t xvsrln_b_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSRLN.B.H Xd.8B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingLowerEach128(value, shift); + + /// + /// int16x8_t xvsrln_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSRLN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingLowerEach128(value, shift); + + /// + /// uint16x8_t xvsrln_h_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSRLN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingLowerEach128(value, shift); + + /// + /// int32x4_t xvsrln_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSRLN.W.D Xd.4W, Xj.4D, Xk.2D + /// + public static Vector128 ShiftRightLogicalNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingLowerEach128(value, shift); + + /// + /// uint32x4_t xvsrln_w_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSRLN.W.D Xd.4W, Xj.4D, Xk.2D + /// + public static Vector128 ShiftRightLogicalNarrowingLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingLowerEach128(value, shift); + + /// + /// int32x8_t xvssrlni_b_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRLNI.B.H Xd.32B, Xj.16H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// uint32x8_t xvssrlni_b_h(uint16x16_t left, uint16x16_t right, const byte n) + /// LASX: XVSSRLNI.B.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int16x16_t xvssrlni_h_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRLNI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// uint16x16_t xvssrlni_h_w(uint32x8_t left, uint32x8_t right, const byte n) + /// LASX: XVSSRLNI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int32x8_t xvssrlni_w_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRLNI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// uint32x8_t xvssrlni_w_d(uint64x4_t left, uint64x4_t right, const byte n) + /// LASX: XVSSRLNI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(left, right, shift); + + ///// + ///// int64x4_t xvssrlni_d_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRLNI.D.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int8x16_t xvssrln_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRLN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(value, shift); + + /// + /// uint8x16_t xvssrln_b_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSSRLN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(value, shift); + + /// + /// int16x4_t xvssrln_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRLN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(value, shift); + + /// + /// uint16x4_t xvssrln_h_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSSRLN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(value, shift); + + /// + /// int32x4_t xvssrln_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRLN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(value, shift); + + /// + /// uint32x4_t xvssrln_w_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSSRLN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingSaturateLowerEach128(value, shift); + + /// + /// uint16x16_t xvssrlni_bu_h(uint16x16_t left, uint16x16_t right, const byte n) + /// LASX: XVSSRLNI.BU.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint16x16_t xvssrlni_hu_w(uint32x8_t left, uint32x8_t right, const byte n) + /// LASX: XVSSRLNI.HU.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint32x8_t xvssrlni_wu_d(uint64x4_t left, uint64x4_t right, const byte n) + /// LASX: XVSSRLNI.WU.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + ///// + ///// uint64x4_t xvssrlni_du_q(uint128x2_t left, uint128x2_t right, const byte n) + ///// LASX: XVSSRLNI.DU.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint8x16_t xvssrln_bu_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSSRLN.BU.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// uint16x4_t xvssrln_hu_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSSRLN.HU.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// uint32x4_t xvssrln_wu_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSSRLN.WU.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// int16x16_t xvssran_b_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRANI.B.H Xd.32B, Xj.16H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightArithmeticNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int16x16_t xvssran_h_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRANI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightArithmeticNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int32x8_t xvssran_w_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRANI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightArithmeticNarrowingSaturateLowerEach128(left, right, shift); + + ///// + ///// int64x4_t xvssran_d_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRANI.D.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightArithmeticNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int8x16_t xvssran_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRAN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticNarrowingSaturateLowerEach128(value, shift); + + /// + /// int16x4_t xvssran_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRAN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticNarrowingSaturateLowerEach128(value, shift); + + /// + /// int32x4_t xvssran_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRAN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticNarrowingSaturateLowerEach128(value, shift); + + /// + /// uint16x16_t xvssrani_bu_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRANI.BU.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint16x16_t xvssrani_hu_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRANI.HU.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint32x8_t xvssrani_wu_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRANI.WU.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + ///// + ///// uint64x4_t xvssrani_du_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRANI.DU.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint8x16_t xvssran_bu_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRAN.BU.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// uint16x4_t xvssran_hu_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRAN.HU.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// uint32x4_t xvssran_wu_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRAN.WU.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// int16x16_t xvssrlrni_b_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRLRNI.B.H Xd.32B, Xj.16H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// uint16x16_t xvssrlrni_b_h(uint16x16_t left, uint16x16_t right, const byte n) + /// LASX: XVSSRLRNI.B.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int16x16_t xvssrlrni_h_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRLRNI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// uint16x16_t xvssrlrni_h_w(uint32x8_t left, uint32x8_t right, const byte n) + /// LASX: XVSSRLRNI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int32x8_t xvssrlrni_w_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRLRNI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// uint32x8_t xvssrlrni_w_d(uint64x4_t left, uint64x4_t right, const byte n) + /// LASX: XVSSRLRNI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(left, right, shift); + + ///// + ///// int64x4_t xvssrlrni_d_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRLRNI.D.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int8x16_t xvssrlrn_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRLRN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(value, shift); + + /// + /// uint8x16_t xvssrlrn_b_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSSRLRN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(value, shift); + + /// + /// int16x4_t xvssrlrn_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRLRN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(value, shift); + + /// + /// uint16x4_t xvssrlrn_h_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSSRLRN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(value, shift); + + /// + /// int32x4_t xvssrlrn_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRLRN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(value, shift); + + /// + /// uint32x4_t xvssrlrn_w_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSSRLRN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(value, shift); + + /// + /// uint16x16_t xvssrlrni_bu_h(uint16x16_t left, uint16x16_t right, const byte n) + /// LASX: XVSSRLRNI.BU.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint16x16_t xvssrlrni_hu_w(uint32x8_t left, uint32x8_t right, const byte n) + /// LASX: XVSSRLRNI.HU.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint32x8_t xvssrlrni_wu_d(uint64x4_t left, uint64x4_t right, const byte n) + /// LASX: XVSSRLRNI.WU.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + ///// + ///// uint64x4_t xvssrlrni_du_q(uint128x2_t left, uint128x2_t right, const byte n) + ///// LASX: XVSSRLRNI.DU.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint8x16_t xvssrlrn_bu_h(uint16x16_t value, uint16x16_t shift) + /// LASX: XVSSRLRN.BU.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// uint16x4_t xvssrlrn_hu_w(uint32x8_t value, uint32x8_t shift) + /// LASX: XVSSRLRN.HU.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// uint32x4_t xvssrlrn_wu_d(uint64x4_t value, uint64x4_t shift) + /// LASX: XVSSRLRN.WU.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// int16x16_t xvssrarn_b_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRARNI.B.H Xd.32B, Xj.16H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int16x16_t xvssrarn_h_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRARNI.H.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int32x8_t xvssrarn_w_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRARNI.W.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(left, right, shift); + + ///// + ///// int64x4_t xvssrarn_d_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRARNI.D.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(left, right, shift); + + /// + /// int8x16_t xvssrarn_b_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRARN.B.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(value, shift); + + /// + /// int16x4_t xvssrarn_h_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRARN.H.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(value, shift); + + /// + /// int32x4_t xvssrarn_w_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRARN.W.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(value, shift); + + /// + /// uint16x16_t xvssrarni_bu_h(int16x16_t left, int16x16_t right, const byte n) + /// LASX: XVSSRARNI.BU.H Xd.32B, Xj.16H, ui4 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint16x16_t xvssrarni_hu_w(int32x8_t left, int32x8_t right, const byte n) + /// LASX: XVSSRARNI.HU.W Xd.16H, Xj.8W, ui5 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint32x8_t xvssrarni_wu_d(int64x4_t left, int64x4_t right, const byte n) + /// LASX: XVSSRARNI.WU.D Xd.8W, Xj.4D, ui6 + /// + public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + ///// + ///// uint64x4_t xvssrarni_du_q(int128x2_t left, int128x2_t right, const byte n) + ///// LASX: XVSSRARNI.DU.Q Xd.4D, Xj.2Q, ui7 + ///// + //public static Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 left, Vector256 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(left, right, shift); + + /// + /// uint8x16_t xvssrarn_bu_h(int16x16_t value, int16x16_t shift) + /// LASX: XVSSRARN.BU.H Xd.16B, Xj.16H, Xk.16H + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// uint16x8_t xvssrarn_hu_w(int32x8_t value, int32x8_t shift) + /// LASX: XVSSRARN.HU.W Xd.8H, Xj.8W, Xk.8W + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// uint32x4_t xvssrarn_wu_d(int64x4_t value, int64x4_t shift) + /// LASX: XVSSRARN.WU.D Xd.4W, Xj.4D, Xk.4D + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(Vector256 value, Vector256 shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(value, shift); + + /// + /// int8x32_t xvclo_b(int8x32_t a) + /// LASX: XVCLO.B Xd.32B, Xj.32B + /// + public static Vector256 LeadingSignCount(Vector256 value) => LeadingSignCount(value); + + /// + /// int16x16_t xvclo_h(int16x16_t a) + /// LASX: XVCLO.H Xd.16H, Xj.16H + /// + public static Vector256 LeadingSignCount(Vector256 value) => LeadingSignCount(value); + + /// + /// int32x8_t xvclo_w(int32x8_t a) + /// LASX: XVCLO.W Xd.8W, Xj.8W + /// + public static Vector256 LeadingSignCount(Vector256 value) => LeadingSignCount(value); + + /// + /// int64x4_t xvclo_d(int64x4_t a) + /// LASX: XVCLO.D Xd.4D, Xj.4D + /// + public static Vector256 LeadingSignCount(Vector256 value) => LeadingSignCount(value); + + /// + /// int8x32_t xvclz_b(int8x32_t a) + /// LASX: XVCLZ.B Xd.32B, Xj.32B + /// + public static Vector256 LeadingZeroCount(Vector256 value) => LeadingZeroCount(value); + + /// + /// uint8x32_t xvclz_b(uint8x32_t a) + /// LASX: XVCLZ.B Xd.32B, Xj.32B + /// + public static Vector256 LeadingZeroCount(Vector256 value) => LeadingZeroCount(value); + + /// + /// int16x16_t xvclz_h(int16x16_t a) + /// LASX: XVCLZ.H Xd.16H, Xj.16H + /// + public static Vector256 LeadingZeroCount(Vector256 value) => LeadingZeroCount(value); + + /// + /// uint16x16_t xvclz_h(uint16x16_t a) + /// LASX: XVCLZ.H Xd.16H, Xj.16H + /// + public static Vector256 LeadingZeroCount(Vector256 value) => LeadingZeroCount(value); + + /// + /// int32x8_t xvclz_w(int32x8_t a) + /// LASX: XVCLZ.W Xd.8W, Xj.8W + /// + public static Vector256 LeadingZeroCount(Vector256 value) => LeadingZeroCount(value); + + /// + /// uint32x8_t xvclz_w(uint32x8_t a) + /// LASX: XVCLZ.W Xd.8W, Xj.8W + /// + public static Vector256 LeadingZeroCount(Vector256 value) => LeadingZeroCount(value); + + /// + /// int64x4_t xvclz_d(int64x4_t a) + /// LASX: XVCLZ.D Xd.4D, Xj.4D + /// + public static Vector256 LeadingZeroCount(Vector256 value) => LeadingZeroCount(value); + + /// + /// uint64x4_t xvclz_d(uint64x4_t a) + /// LASX: XVCLZ.D Xd.4D, Xj.4D + /// + public static Vector256 LeadingZeroCount(Vector256 value) => LeadingZeroCount(value); + + /// + /// int8x32_t xvpcnt_b(int8x32_t a) + /// LASX: XVPCNT_B Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) => PopCount(value); + + /// + /// uint8x32_t xvpcnt_b(uint8x32_t a) + /// LASX: XVPCNT_B Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) => PopCount(value); + + /// + /// int16x16_t xvpcnt_h(int16x16_t a) + /// LASX: XVPCNT_H Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) => PopCount(value); + + /// + /// uint16x16_t xvpcnt_h(uint16x16_t a) + /// LASX: XVPCNT_H Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) => PopCount(value); + + /// + /// int32x8_t xvpcnt_w(int32x8_t a) + /// LASX: XVPCNT_W Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) => PopCount(value); + + /// + /// uint32x8_t xvpcnt_w(uint32x8_t a) + /// LASX: XVPCNT_W Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) => PopCount(value); + + /// + /// int64x4_t xvpcnt_d(int64x4_t a) + /// LASX: XVPCNT_D Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) => PopCount(value); + + /// + /// uint64x4_t xvpcnt_d(uint64x4_t a) + /// LASX: XVPCNT_D Xd, Xj + /// + public static Vector256 PopCount(Vector256 value) => PopCount(value); + + /// + /// int32x8_t xvperm_w(int32x8_t vec, int32x8_t idx) + /// LASX: XVPERM.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorShuffle(Vector256 vector, Vector256 indexs) => VectorShuffle(vector, indexs); + + /// + /// uint32x8_t xvperm_w(uint32x8_t vec, uint32x8_t idx) + /// LASX: XVPERM.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorShuffle(Vector256 vector, Vector256 indexs) => VectorShuffleEach128(vector, indexs); + + /// + /// int64x4_t xvpermi_w(int64x4_t vec, uint8_t idx) + /// LASX: XVPERMI.D Xd.4D, Xj.4D, ui8 + /// + public static Vector256 VectorShuffle(Vector256 vector, const byte indexs) => VectorShuffle(vector, indexs); + + /// + /// uint64x4_t xvpermi_w(uint64x4_t vec, uint8_t idx) + /// LASX: XVPERMI.D Xd.4D, Xj.4D, ui8 + /// + public static Vector256 VectorShuffle(Vector256 vector, const byte indexs) => VectorShuffleEach128(vector, indexs); + + /// + /// int128x2_t xvpermi_w(int128x2_t vec0, int128x2_t vec1, uint8_t idx) + /// LASX: XVPERMI.D Xd.2Q, Xj.2Q, ui8 ///NOTE: The Xd is both input and output. + /// + public static Vector256 VectorShuffle(Vector256 vector0, Vector256 vector1, const byte indexs) => VectorShuffle(vector0, vector1, indexs); + + ///// + ///// uint8x32_t xvshuf_b(uint8x32_t vec, uint8x32_t idx) + ///// LASX: XVSHUF.B Xd.32B, Xj.32B, Xk.32B, Xa.32B + ///// + //public static Vector256 VectorShuffleEach128(Vector256 vector, Vector256 indexs) => VectorShuffleEach128(vector, indexs); + + ///// + ///// int8x32_t xvshuf_b(int8x32_t vec, int8x32_t idx) + ///// LASX: XVSHUF.B Xd.32B, Xj.32B, Xk.32B, Xa.32B + ///// + //public static Vector256 VectorShuffleEach128(Vector256 vector, Vector256 indexs) => VectorShuffleEach128(vector, indexs); + + /// + /// uint8x32_t xvshuf_b(uint8x32_t vec0, uint8x32_t vec1, uint8x32_t idx) + /// LASX: XVSHUF.B Xd.32B, Xj.32B, Xk.32B, Xa.32B + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) => VectorShuffleEach128(vector0, vector1, indexs); + + /// + /// int8x32_t xvshuf_b(int8x32_t vec0, int8x32_t vec1, int8x32_t idx) + /// LASX: XVSHUF.B Xd.32B, Xj.32B, Xk.32B, Xa.32B + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) => VectorShuffleEach128(vector0, vector1, indexs); + + ///// + ///// int16x16_t xvshuf_h(int16x16_t vec, int16x16_t idx) + ///// LASX: XVSHUF.H Xd.16H, Xj.16H, Xk.16H //NOTE: Xd is both input and output while input as index. + ///// + //public static Vector256 VectorShuffleEach128(Vector256 vector, Vector256 indexs) => VectorShuffleEach128(vector, indexs); + + ///// + ///// uint16x16_t xvshuf_h(uint16x16_t vec, uint16x16_t idx) + ///// LASX: XVSHUF.H Xd.16H, Xj.16H, Xk.16H //NOTE: Xd is both input and output while input as index. + ///// + //public static Vector256 VectorShuffleEach128(Vector256 vector, Vector256 indexs) => VectorShuffleEach128(vector, indexs); + + /// + /// int16x16_t xvshuf_h(int16x16_t vec0, int16x16_t vec1, int16x16_t idx) + /// LASX: XVSHUF.H Xd.16H, Xj.16H, Xk.16H //NOTE: Xd is both input and output while input as index. + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) => VectorShuffleEach128(vector0, vector1, indexs); + + /// + /// uint16x16_t xvshuf_h(uint16x16_t vecj, uint16x16_t veck, uint16x16_t idx) + /// LASX: XVSHUF.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) => VectorShuffleEach128(vector0, vector1, indexs); + + /// + /// int32x8_t xvpermi_w(int32x8_t vec, uint8_t idx) + /// LASX: XVPERMI.W Xd.8W, Xj.8W, ui8 + /// + public static Vector256 VectorShuffleEach128(Vector256 vector, const byte indexs) => VectorShuffleEach128(vector, indexs); + + /// + /// uint32x8_t xvpermi_w(uint32x8_t vec, uint8_t idx) + /// LASX: XVPERMI.W Xd.8W, Xj.8W, ui8 + /// + public static Vector256 VectorShuffleEach128(Vector256 vector, const byte indexs) => VectorShuffleEach128Each128(vector, indexs); + + /// + /// int32x8_t xvshuf_w(int32x8_t vec0, int32x8_t vec1, int32x8_t idx) + /// LASX: XVSHUF.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) => VectorShuffleEach128(vector0, vector1, indexs); + + /// + /// uint32x8_t xvshuf_w(uint32x8_t vecj, uint32x8_t veck, uint32x8_t idx) + /// LASX: XVSHUF.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) => VectorShuffleEach128(vector0, vector1, indexs); + + /// + /// int64x4_t xvshuf_d(int64x4_t vec0, int64x4_t vec1, int64x4_t idx) + /// LASX: XVSHUF.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) => VectorShuffleEach128(vector0, vector1, indexs); + + /// + /// uint64x4_t xvshuf_d(uint64x4_t vecj, uint64x4_t veck, uint64x4_t idx) + /// LASX: XVSHUF.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorShuffleEach128(Vector256 vector0, Vector256 vector1, Vector256 indexs) => VectorShuffleEach128(vector0, vector1, indexs); + + /// + /// int8x32_t xvshuf4i_b(int8x32_t vec, uint8_t idx) + /// LASX: XVSHUF4I.B Xd.32B, Xj.32B, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// uint8x32_t xvshuf4i_b(uint8x32_t vec, uint8_t idx) + /// LASX: XVSHUF4I.B Xd.32B, Xj.32B, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// int16x16_t xvshuf4i_h(int16x16_t vec, uint8_t idx) + /// LASX: XVSHUF4I.H Xd.16H, Xj.16H, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// uint16x16_t xvshuf4i_h(uint16x16_t vec, uint8_t idx) + /// LASX: XVSHUF4I.H Xd.16H, Xj.16H, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// int32x8_t xvshuf4i_w(int32x8_t vec, uint8_t idx) + /// LASX: XVSHUF4I.W Xd.8W, Xj.8W, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// uint32x8_t xvshuf4i_w(uint32x8_t vec, uint8_t idx) + /// LASX: XVSHUF4I.W Xd.8W, Xj.8W, ui8 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// int64x4_t xvshuf4i_d(int64x4_t vec0, uint64x4_t vec1, uint8_t idx) + /// LASX: XVSHUF4I.D Xd.4D, Xj.4D, ui4 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector0, Vector256 vector1, byte indexs) => VectorShuffleBy4Elements(vector0, vector1, indexs); + + /// + /// uint64x4_t xvshuf4i_d(uint64x4_t vec0, uint64x4_t vec1, uint8_t idx) + /// LASX: XVSHUF4I.D Xd.4D, Xj.4D, ui4 + /// + public static Vector256 VectorShuffleBy4Elements(Vector256 vector0, Vector256 vector1, byte indexs) => VectorShuffleBy4Elements(vector0, vector1, indexs); + + /// + /// int8x32_t xvilvl_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVILVL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) => VectorElementsFusionLowerEach128(left, right); + + /// + /// uint8x32_t xvilvl_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVILVL.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) => VectorElementsFusionLowerEach128(left, right); + + /// + /// int16x16_t xvilvl_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVILVL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) => VectorElementsFusionLowerEach128(left, right); + + /// + /// uint16x16_t xvilvl_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVILVL.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) => VectorElementsFusionLowerEach128(left, right); + + /// + /// int32x8_t xvilvl_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVILVL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) => VectorElementsFusionLowerEach128(left, right); + + /// + /// uint32x8_t xvilvl_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVILVL.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) => VectorElementsFusionLowerEach128(left, right); + + /// + /// int64x4_t xvilvl_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVILVL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) => VectorElementsFusionLowerEach128(left, right); + + /// + /// uint64x4_t xvilvl_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVILVL.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionLowerEach128(Vector256 left, Vector256 right) => VectorElementsFusionLowerEach128(left, right); + + /// + /// int8x32_t xvilvh_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVILVH.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) => VectorElementsFusionHightEach128(left, right); + + /// + /// uint8x32_t xvilvh_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVILVH.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) => VectorElementsFusionHightEach128(left, right); + + /// + /// int16x16_t xvilvh_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVILVH.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) => VectorElementsFusionHightEach128(left, right); + + /// + /// uint16x16_t xvilvh_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVILVH.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) => VectorElementsFusionHightEach128(left, right); + + /// + /// int32x8_t xvilvh_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVILVH.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) => VectorElementsFusionHightEach128(left, right); + + /// + /// uint32x8_t xvilvh_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVILVH.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) => VectorElementsFusionHightEach128(left, right); + + /// + /// int64x4_t xvilvh_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVILVH.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) => VectorElementsFusionHightEach128(left, right); + + /// + /// uint64x4_t xvilvh_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVILVH.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionHightEach128(Vector256 left, Vector256 right) => VectorElementsFusionHightEach128(left, right); + + /// + /// int8x32_t xvpackev_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVPACKEV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) => VectorElementsFusionEven(left, right); + + /// + /// uint8x32_t xvpackev_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVPACKEV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) => VectorElementsFusionEven(left, right); + + /// + /// int16x16_t xvpackev_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVPACKEV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) => VectorElementsFusionEven(left, right); + + /// + /// uint16x16_t xvpackev_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVPACKEV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) => VectorElementsFusionEven(left, right); + + /// + /// int32x8_t xvpackev_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVPACKEV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) => VectorElementsFusionEven(left, right); + + /// + /// uint32x8_t xvpackev_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVPACKEV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) => VectorElementsFusionEven(left, right); + + /// + /// int64x4_t xvpackev_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVPACKEV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) => VectorElementsFusionEven(left, right); + + /// + /// uint64x4_t xvpackev_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVPACKEV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionEven(Vector256 left, Vector256 right) => VectorElementsFusionEven(left, right); + + /// + /// int8x32_t xvpackod_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVPACKOD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) => VectorElementsFusionOdd(left, right); + + /// + /// uint8x32_t xvpackod_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVPACKOD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) => VectorElementsFusionOdd(left, right); + + /// + /// int16x16_t xvpackod_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVPACKOD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) => VectorElementsFusionOdd(left, right); + + /// + /// uint16x16_t xvpackod_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVPACKOD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) => VectorElementsFusionOdd(left, right); + + /// + /// int32x8_t xvpackod_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVPACKOD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) => VectorElementsFusionOdd(left, right); + + /// + /// uint32x8_t xvpackod_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVPACKOD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) => VectorElementsFusionOdd(left, right); + + /// + /// int64x4_t xvpackod_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVPACKOD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) => VectorElementsFusionOdd(left, right); + + /// + /// uint64x4_t xvpackod_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVPACKOD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementsFusionOdd(Vector256 left, Vector256 right) => VectorElementsFusionOdd(left, right); + + /// + /// int8x32_t xvpickev_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVPICKEV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) => VectorEvenElementsJoinEach128(left, right); + + /// + /// uint8x32_t xvpickev_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVPICKEV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) => VectorEvenElementsJoinEach128(left, right); + + /// + /// int16x16_t xvpickev_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVPICKEV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) => VectorEvenElementsJoinEach128(left, right); + + /// + /// uint16x16_t xvpickev_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVPICKEV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) => VectorEvenElementsJoinEach128(left, right); + + /// + /// int32x8_t xvpickev_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVPICKEV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) => VectorEvenElementsJoinEach128(left, right); + + /// + /// uint32x8_t xvpickev_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVPICKEV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) => VectorEvenElementsJoinEach128(left, right); + + /// + /// int64x4_t xvpickev_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVPICKEV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) => VectorEvenElementsJoinEach128(left, right); + + /// + /// uint64x4_t xvpickev_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVPICKEV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorEvenElementsJoinEach128(Vector256 left, Vector256 right) => VectorEvenElementsJoinEach128(left, right); + + /// + /// int8x32_t xvpickod_b(int8x32_t vec0, int8x32_t vec1) + /// LASX: XVPICKOD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) => VectorOddElementsJoinEach128(left, right); + + /// + /// uint8x32_t xvpickod_b(uint8x32_t vec0, uint8x32_t vec1) + /// LASX: XVPICKOD.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) => VectorOddElementsJoinEach128(left, right); + + /// + /// int16x16_t xvpickod_h(int16x16_t vec0, int16x16_t vec1) + /// LASX: XVPICKOD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) => VectorOddElementsJoinEach128(left, right); + + /// + /// uint16x16_t xvpickod_h(uint16x16_t vec0, uint16x16_t vec1) + /// LASX: XVPICKOD.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) => VectorOddElementsJoinEach128(left, right); + + /// + /// int32x8_t xvpickod_w(int32x8_t vec0, int32x8_t vec1) + /// LASX: XVPICKOD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) => VectorOddElementsJoinEach128(left, right); + + /// + /// uint32x8_t xvpickod_w(uint32x8_t vec0, uint32x8_t vec1) + /// LASX: XVPICKOD.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) => VectorOddElementsJoinEach128(left, right); + + /// + /// int64x4_t xvpickod_d(int64x4_t vec0, int64x4_t vec1) + /// LASX: XVPICKOD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) => VectorOddElementsJoinEach128(left, right); + + /// + /// uint64x4_t xvpickod_d(uint64x4_t vec0, uint64x4_t vec1) + /// LASX: XVPICKOD.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorOddElementsJoinEach128(Vector256 left, Vector256 right) => VectorOddElementsJoinEach128(left, right); + + /// + /// uint8x32_t xvrepl128vei(uint8x32_t vector, uint8_t idx) + /// LASX: XVREPL128VEI_B Xd.32B, Xj.32B, ui4 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) => VectorElementReplicateEach128(vector, elementIndexe); + + /// + /// int8x32_t xvrepl128vei(int8x32_t vector, uint8_t idx) + /// LASX: XVREPL128VEI_B Xd.32B, Xj.32B, ui4 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) => VectorElementReplicateEach128(vector, elementIndexe); + + /// + /// int16x16_t xvrepl128vei(int16x16_t vector, uint8_t idx) + /// LASX: XVREPL128VEI_H Xd.16H, Xj.16H, ui3 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) => VectorElementReplicateEach128(vector, elementIndexe); + + /// + /// uint16x16_t xvrepl128vei(uint16x16_t vector, uint8_t idx) + /// LASX: XVREPL128VEI_H Xd.16H, Xj.16H, ui3 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) => VectorElementReplicateEach128(vector, elementIndexe); + + /// + /// int32x8_t xvrepl128vei(int32x8_t vector, uint8_t idx) + /// LASX: XVREPL128VEII_W Xd.8W, Xj.8W, ui2 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) => VectorElementReplicateEach128(vector, elementIndexe); + + /// + /// uint32x8_t xvrepl128vei(uint32x8_t vector, uint8_t idx) + /// LASX: XVREPL128VEII_W Xd.8W, Xj.8W, ui2 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) => VectorElementReplicateEach128(vector, elementIndexe); + + /// + /// int64x4_t xvrepl128vei(int64x4_t vector, uint8_t idx) + /// LASX: XVREPL128VEII_D Xd.4D, Xj.4D, ui1 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) => VectorElementReplicateEach128(vector, elementIndexe); + + /// + /// uint64x4_t xvrepl128vei(uint64x4_t vector, uint8_t idx) + /// LASX: XVREPL128VEII_D Xd.4D, Xj.4D, ui1 + /// + public static Vector256 VectorElementReplicateEach128(Vector256 vector, const byte elementIndexe) => VectorElementReplicateEach128(vector, elementIndexe); + + /// + /// int8x32_t xvextrins_b(int8x32_t vec, uint8_t idx) + /// LASX: XVEXTRINS.B Xd.32B, Xj.32B, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) => UpdateOneVectorElementEach128(vector, indexs); + + /// + /// uint8x32_t xvextrins_b(uint8x32_t vec, uint8_t idx) + /// LASX: XVEXTRINS.B Xd.32B, Xj.32B, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) => UpdateOneVectorElementEach128(vector, indexs); + + /// + /// int16x16_t xvextrins_h(int16x16_t vec, uint8_t idx) + /// LASX: XVEXTRINS.H Xd.16H, Xj.16H, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) => UpdateOneVectorElementEach128(vector, indexs); + + /// + /// uint16x16_t xvextrins_h(uint16x16_t vec, uint8_t idx) + /// LASX: XVEXTRINS.H Xd.16H, Xj.16H, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) => UpdateOneVectorElementEach128(vector, indexs); + + /// + /// int32x8_t xvextrins_w(int32x8_t vec, uint8_t idx) + /// LASX: XVEXTRINS.W Xd.8W, Xj.8W, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) => UpdateOneVectorElementEach128(vector, indexs); + + /// + /// uint32x8_t xvextrins_w(uint32x8_t vec, uint8_t idx) + /// LASX: XVEXTRINS.W Xd.8W, Xj.8W, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) => UpdateOneVectorElementEach128(vector, indexs); + + /// + /// int64x4_t xvextrins_d(int64x4_t vec, uint8_t idx) + /// LASX: XVEXTRINS.D Xd.4D, Xj.4D, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) => UpdateOneVectorElementEach128(vector, indexs); + + /// + /// uint64x4_t xvextrins_d(uint64x4_t vec, uint8_t idx) + /// LASX: XVEXTRINS.D Xd.4D, Xj.4D, ui8 + /// + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) => UpdateOneVectorElementEach128(vector, indexs); + + /// + /// int8x32_t xvsigncov_b(int8x32_t sign, int8x32_t data) + /// LASX: XVSIGNCOV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) => VectorElementNegatedBySign(sign, data); + + /// + /// int16x16_t xvsigncov_h(int16x16_t sign, int16x16_t data) + /// LASX: XVSIGNCOV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) => VectorElementNegatedBySign(sign, data); + + /// + /// int32x8_t xvsigncov_w(int32x8_t sign, int32x8_t data) + /// LASX: XVSIGNCOV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) => VectorElementNegatedBySign(sign, data); + + /// + /// int64x4_t xvsigncov_d(int64x4_t sign, int64x4_t data) + /// LASX: XVSIGNCOV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) => VectorElementNegatedBySign(sign, data); + + /// + /// int8x32_t xvbitclri_b(int8x32_t a, const int n) + /// LASX: XVBITCLRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// uint8x32_t xvbitclri_b(uint8x32_t a, const int n) + /// LASX: XVBITCLRI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// int16x16_t xvbitclri_h(int16x16_t a, const int n) + /// LASX: XVBITCLRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// uint16x16_t xvbitclri_h(uint16x16_t a, const int n) + /// LASX: XVBITCLRI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// uint32x8_t xvbitclri_w(uint32x8_t a, const int n) + /// LASX: XVBITCLRI.W Xd.4W, Xj.4W, ui5 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// uint32x8_t xvbitclri_w(uint32x8_t a, const int n) + /// LASX: XVBITCLRI.W Xd.4W, Xj.4W, ui5 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// int64x4_t xvbitclri_d(int64x4_t a, const int n) + /// LASX: XVBITCLRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// uint64x4_t xvbitclri_d(uint64x4_t a, const int n) + /// LASX: XVBITCLRI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitClear(Vector256 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// int8x32_t xvbitclr_b(int8x32_t a, int8x32_t b) + /// LASX: XVBITCLR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) => VectorElementBitClear(value, index); + + /// + /// uint8x32_t xvbitclr_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVBITCLR.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) => VectorElementBitClear(value, index); + + /// + /// int16x16_t xvbitclr_h(int16x16_t value, int16x16_t index) + /// LASX: XVBITCLR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) => VectorElementBitClear(value, index); + + /// + /// uint16x16_t xvbitclr_h(uint16x16_t value, uint16x16_t index) + /// LASX: XVBITCLR.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) => VectorElementBitClear(value, index); + + /// + /// int32x8_t xvbitclr_w(int32x8_t value, int32x8_t index) + /// LASX: XVBITCLR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) => VectorElementBitClear(value, index); + + /// + /// uint32x8_t xvbitclr_w(uint32x8_t value, uint32x8_t index) + /// LASX: XVBITCLR.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) => VectorElementBitClear(value, index); + + /// + /// int64x4_t xvbitclr_d(int64x4_t value, int64x4_t index) + /// LASX: XVBITCLR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) => VectorElementBitClear(value, index); + + /// + /// uint64x4_t xvbitclr_d(uint64x4_t value, uint64x4_t index) + /// LASX: XVBITCLR.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitClear(Vector256 value, Vector256 index) => VectorElementBitClear(value, index); + + /// + /// int8x32_t xvbitseti_b(int8x32_t a, const int n) + /// LASX: XVBITSETI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// uint8x32_t xvbitseti_b(uint8x32_t a, const int n) + /// LASX: XVBITSETI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// int16x16_t xvbitseti_h(int16x16_t a, const int n) + /// LASX: XVBITSETI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// uint16x16_t xvbitseti_h(uint16x16_t a, const int n) + /// LASX: XVBITSETI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// uint32x8_t xvbitseti_w(uint32x8_t a, const int n) + /// LASX: XVBITSETI.W Xd.4W, Xj.4W, ui5 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// uint32x8_t xvbitseti_w(uint32x8_t a, const int n) + /// LASX: XVBITSETI.W Xd.4W, Xj.4W, ui5 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// int64x4_t xvbitseti_d(int64x4_t a, const int n) + /// LASX: XVBITSETI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// uint64x4_t xvbitseti_d(uint64x4_t a, const int n) + /// LASX: XVBITSETI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitSet(Vector256 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// int8x32_t xvbitset_b(int8x32_t a, int8x32_t b) + /// LASX: XVBITSET.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) => VectorElementBitSet(value, index); + + /// + /// uint8x32_t xvbitset_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVBITSET.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) => VectorElementBitSet(value, index); + + /// + /// int16x16_t xvbitset_h(int16x16_t value, int16x16_t index) + /// LASX: XVBITSET.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) => VectorElementBitSet(value, index); + + /// + /// uint16x16_t xvbitset_h(uint16x16_t value, uint16x16_t index) + /// LASX: XVBITSET.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) => VectorElementBitSet(value, index); + + /// + /// int32x8_t xvbitset_w(int32x8_t value, int32x8_t index) + /// LASX: XVBITSET.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) => VectorElementBitSet(value, index); + + /// + /// uint32x8_t xvbitset_w(uint32x8_t value, uint32x8_t index) + /// LASX: XVBITSET.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) => VectorElementBitSet(value, index); + + /// + /// int64x4_t xvbitset_d(int64x4_t value, int64x4_t index) + /// LASX: XVBITSET.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) => VectorElementBitSet(value, index); + + /// + /// uint64x4_t xvbitset_d(uint64x4_t value, uint64x4_t index) + /// LASX: XVBITSET.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitSet(Vector256 value, Vector256 index) => VectorElementBitSet(value, index); + + /// + /// int8x32_t xvbitrevi_b(int8x32_t a, const int n) + /// LASX: XVBITREVI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// uint8x32_t xvbitrevi_b(uint8x32_t a, const int n) + /// LASX: XVBITREVI.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// int16x16_t xvbitrevi_h(int16x16_t a, const int n) + /// LASX: XVBITREVI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// uint16x16_t xvbitrevi_h(uint16x16_t a, const int n) + /// LASX: XVBITREVI.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// uint32x8_t xvbitrevi_w(uint32x8_t a, const int n) + /// LASX: XVBITREVI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// uint32x8_t xvbitrevi_w(uint32x8_t a, const int n) + /// LASX: XVBITREVI.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// int64x4_t xvbitrevi_d(int64x4_t a, const int n) + /// LASX: XVBITREVI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// uint64x4_t xvbitrevi_d(uint64x4_t a, const int n) + /// LASX: XVBITREVI.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorElementBitRevert(Vector256 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// int8x32_t xvbitrev_b(int8x32_t a, int8x32_t b) + /// LASX: XVBITREV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) => VectorElementBitRevert(value, index); + + /// + /// uint8x32_t xvbitrev_b(uint8x32_t a, uint8x32_t b) + /// LASX: XVBITREV.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) => VectorElementBitRevert(value, index); + + /// + /// int16x16_t xvbitrev_h(int16x16_t value, int16x16_t index) + /// LASX: XVBITREV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) => VectorElementBitRevert(value, index); + + /// + /// uint16x16_t xvbitrev_h(uint16x16_t value, uint16x16_t index) + /// LASX: XVBITREV.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) => VectorElementBitRevert(value, index); + + /// + /// int32x8_t xvbitrev_w(int32x8_t value, int32x8_t index) + /// LASX: XVBITREV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) => VectorElementBitRevert(value, index); + + /// + /// uint32x8_t xvbitrev_w(uint32x8_t value, uint32x8_t index) + /// LASX: XVBITREV.W Xd.8W, Xj.8W, Xk.8W + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) => VectorElementBitRevert(value, index); + + /// + /// int64x4_t xvbitrev_d(int64x4_t value, int64x4_t index) + /// LASX: XVBITREV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) => VectorElementBitRevert(value, index); + + /// + /// uint64x4_t xvbitrev_d(uint64x4_t value, uint64x4_t index) + /// LASX: XVBITREV.D Xd.4D, Xj.4D, Xk.4D + /// + public static Vector256 VectorElementBitRevert(Vector256 value, Vector256 index) => VectorElementBitRevert(value, index); + + /// + /// int8x32_t xvfrstp_b(int8x32_t value, int8x32_t save) + /// LASX: XVFRSTP.B Xd.32B, Xj.32B, Xk.32B + /// + public static Vector256 IndexOfFirstNegativeElementEach128(Vector256 value, Vector256 save) => IndexOfFirstNegativeElementEach128(value, save); + + /// + /// int16x16_t xvfrstp_h(int16x16_t value, int16x16_t save) + /// LASX: XVFRSTP.H Xd.16H, Xj.16H, Xk.16H + /// + public static Vector256 IndexOfFirstNegativeElementEach128(Vector256 value, Vector256 save) => IndexOfFirstNegativeElementEach128(value, save); + + /// + /// int8x32_t xvfrstpi_b(int8x32_t value, uint8_t save) + /// LASX: XVFRSTPI.B Xd.32B, Xj.32B, ui4 + /// + public static Vector256 IndexOfFirstNegativeElementEach128(Vector256 value, const byte save) => IndexOfFirstNegativeElementEach128(value, save); + + /// + /// int16x16_t xvfrstpi_h(int16x16_t value, uint8_t save) + /// LASX: XVFRSTPI.H Xd.16H, Xj.16H, ui3 + /// + public static Vector256 IndexOfFirstNegativeElementEach128(Vector256 value, const byte save) => IndexOfFirstNegativeElementEach128(value, save); + + /// + /// int8x32_t xvsat_b(int8x32_t value, uint8_t ui3) + /// LASX: XVSAT.B Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorSaturate(Vector256 value, [ConstantExpected(Max = (byte)(7))] byte bits) => VectorSaturate(value, bits); + + /// + /// int16x16_t xvsat_h(int16x16_t value, uint8_t ui4) + /// LASX: XVSAT.H Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorSaturate(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte bits) => VectorSaturate(value, bits); + + /// + /// int32x8_t xvsat_w(int32x8_t value, uint8_t ui5) + /// LASX: XVSAT.W Xd.8W, Xj.8W, ui5 + /// + public static Vector256 VectorSaturate(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte bits) => VectorSaturate(value, bits); + + /// + /// int64x4_t xvsat_d(int64x4_t value, uint8_t ui6) + /// LASX: XVSAT.D Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorSaturate(Vector256 value, [ConstantExpected(Max = (byte)(63))] byte bits) => VectorSaturate(value, bits); + + /// + /// uint8x32_t xvsat_bu(uint8x32_t value, uint8_t ui3) + /// LASX: XVSAT.BU Xd.32B, Xj.32B, ui3 + /// + public static Vector256 VectorSaturateUnsigned(Vector256 value, [ConstantExpected(Max = (byte)(7))] byte bits) => VectorSaturateUnsigned(value, bits); + + /// + /// uint16x16_t xvsat_hu(uint16x16_t value, uint8_t ui4) + /// LASX: XVSAT.HU Xd.16H, Xj.16H, ui4 + /// + public static Vector256 VectorSaturateUnsigned(Vector256 value, [ConstantExpected(Max = (byte)(15))] byte bits) => VectorSaturateUnsigned(value, bits); + + /// + /// uint32x8_t xvsat_wu(uint32x8_t value, uint8_t ui5) + /// LASX: XVSAT.WU Xd.8W, Xj.8W, ui5 + /// + public static Vector256 VectorSaturateUnsigned(Vector256 value, [ConstantExpected(Max = (byte)(31))] byte bits) => VectorSaturateUnsigned(value, bits); + + /// + /// uint64x4_t xvsat_du(uint64x4_t value, uint8_t ui6) + /// LASX: XVSAT.DU Xd.4D, Xj.4D, ui6 + /// + public static Vector256 VectorSaturateUnsigned(Vector256 value, [ConstantExpected(Max = (byte)(63))] byte bits) => VectorSaturateUnsigned(value, bits); + + /// + /// int32x8_t vfclass_s(float32x8_t a) + /// LASX: XVFCLASS.S Vd.8S, Vj.8S + /// + public static Vector256 FloatClass(Vector256 value) => FloatClass(value); + + /// + /// int64x4_t vfclass_d(float64x4_t a) + /// LASX: XVFCLASS.D Vd.4D, Vj.4D + /// + public static Vector256 FloatClass(Vector256 value) => FloatClass(value); + } +} diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/LoongArchBase.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/LoongArchBase.PlatformNotSupported.cs new file mode 100644 index 00000000000000..4e3609ac5f3194 --- /dev/null +++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/LoongArchBase.PlatformNotSupported.cs @@ -0,0 +1,302 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +#pragma warning disable IDE0060 // unused parameters +using System.Runtime.CompilerServices; + +namespace System.Runtime.Intrinsics.LoongArch +{ + /// + /// This class provides access to the LA64 base hardware instructions via intrinsics + /// + [CLSCompliant(false)] +#if SYSTEM_PRIVATE_CORELIB + public +#else + internal +#endif + abstract class LoongArchBase + { + internal LoongArchBase() { } + + public static bool IsSupported { [Intrinsic] get => false; } + + [Intrinsic] + public abstract class LoongArch64 + { + internal LoongArch64() { } + + public static bool IsSupported { [Intrinsic] get => false; } + + /// + /// LA64: CLO.W rd, rj + /// + public static int LeadingSignCount(int value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CLO.W rd, rj + /// + public static int LeadingSignCount(uint value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CLO.D rd, rj + /// + public static int LeadingSignCount(long value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CLO.D rd, rj + /// + public static int LeadingSignCount(ulong value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CLZ.W rd, rj + /// + public static int LeadingZeroCount(int value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CLZ.W rd, rj + /// + public static int LeadingZeroCount(uint value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CLZ.D rd, rj + /// + public static int LeadingZeroCount(long value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CLZ.D rd, rj + /// + public static int LeadingZeroCount(ulong value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CTO.W rd, rj + /// + public static int TrailingOneCount(int value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CTO.W rd, rj + /// + public static int TrailingOneCount(uint value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CTO.D rd, rj + /// + public static int TrailingOneCount(long value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CTO.D rd, rj + /// + public static int TrailingOneCount(ulong value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CTZ.W rd, rj + /// + public static int TrailingZeroCount(int value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CTZ.W rd, rj + /// + public static int TrailingZeroCount(uint value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CTZ.D rd, rj + /// + public static int TrailingZeroCount(long value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CTZ.D rd, rj + /// + public static int TrailingZeroCount(ulong value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: MULH.D rd, rj, rk + /// + public static long MultiplyHigh(long left, long right) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: MULH.DU rd, rj, rk + /// + public static ulong MultiplyHigh(ulong left, ulong right) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: BITREV.D rd, rj + /// + public static long ReverseElementBits(long value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: BITREV.D rd, rj + /// + public static ulong ReverseElementBits(ulong value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: BITREV.W rd, rj + /// + public static long ReverseElementBits(int value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: BITREV.W rd, rj + /// + public static ulong ReverseElementBits(uint value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: REVB.2W rd, rj + /// + public static int ReverseElementBits(int value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: REVB.2W rd, rj + /// + public static uint ReverseElementBits(uint value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: REVB.D rd, rj + /// + public static long ReverseElementBits(long value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: REVB.D rd, rj + /// + public static ulong ReverseElementBits(ulong value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: FRECIPE.S fd, fj + /// + public static float ReciprocalEstimate(float value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: FRECIPE.D fd, fj + /// + public static double ReciprocalEstimate(double value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: FRSQRTE.S fd, fj + /// + public static float ReciprocalSqrtEstimate(float value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: FRSQRTE.D fd, fj + /// + public static double ReciprocalSqrtEstimate(double value) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CRC.W.B.W rd, rj, rk + /// + public static long CyclicRedundancyCheckIEEE8023(int crc, byte checks) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CRC.W.H.W rd, rj, rk + /// + public static long CyclicRedundancyCheckIEEE8023(int crc, ushort checks) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CRC.W.W.W rd, rj, rk + /// + public static long CyclicRedundancyCheckIEEE8023(int crc, uint checks) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CRC.W.D.W rd, rj, rk + /// + public static long CyclicRedundancyCheckIEEE8023(int crc, ulong checks) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CRCC.W.B.W rd, rj, rk + /// + public static long CyclicRedundancyCheckCastagnoli(int crc, byte checks) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CRCC.W.H.W rd, rj, rk + /// + public static long CyclicRedundancyCheckCastagnoli(int crc, ushort checks) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CRCC.W.W.W rd, rj, rk + /// + public static long CyclicRedundancyCheckCastagnoli(int crc, uint checks) { throw new PlatformNotSupportedException(); } + + /// + /// LA64: CRCC.W.D.W rd, rj, rk + /// + public static long CyclicRedundancyCheckCastagnoli(int crc, ulong checks) { throw new PlatformNotSupportedException(); } + } + + /// + /// LA32/LA64: MULH.W rd, rj, rk + /// + public static long MultiplyHigh(int left, int right) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: MULH.WU rd, rj, rk + /// + public static ulong MultiplyHigh(uint left, uint right) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FSQRT.S fd, fj + /// + public static float SquareRoot(float value) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FSQRT.D fd, fj + /// + public static double SquareRoot(double value) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FRECIP.S fd, fj + /// + public static float Reciprocal(float value) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FRECIP.D fd, fj + /// + public static double Reciprocal(double value) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FRSQRT.S fd, fj + /// + public static float ReciprocalSqrt(float value) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FRSQRT.D fd, fj + /// + public static double ReciprocalSqrt(double value) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FLOGB.S fd, fj + /// + public static float FloatLogarithm2(float value) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FLOGB.D fd, fj + /// + public static double FloatLogarithm2(double value) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FSCALEB.S fd, fj, fk + /// + public static float FloatScaleBinary(float value, int index) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FSCALEB.D fd, fj, fk + /// + public static double FloatScaleBinary(double value, long index) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FCOPYSIGN.S fd, fj, fk + /// + public static float FloatCopySign(float value, float sign) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FCOPYSIGN.D fd, fj, fk + /// + public static double FloatCopySign(double value, double sign) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FCLASS.S fd, fj + /// + public static float FloatClass(float value) { throw new PlatformNotSupportedException(); } + + /// + /// LA32/LA64: FCLASS.S fd, fj + /// + public static double FloatClass(double value) { throw new PlatformNotSupportedException(); } + } +} diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/LoongArchBase.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/LoongArchBase.cs new file mode 100644 index 00000000000000..4e24b6f743623b --- /dev/null +++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/LoongArchBase.cs @@ -0,0 +1,297 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Runtime.CompilerServices; + +namespace System.Runtime.Intrinsics.LoongArch +{ + /// + /// This class provides access to the LoongArch base hardware instructions via intrinsics + /// + [Intrinsic] + [CLSCompliant(false)] + public abstract class LoongArchBase + { + internal LoongArchBase() { } + + public static bool IsSupported { get => IsSupported; } + + [Intrinsic] + public abstract class LoongArch64 + { + internal LoongArch64() { } + + public static bool IsSupported { get => IsSupported; } + + /// + /// LA64: CLO.W rd, rj + /// + public static int LeadingSignCount(int value) => LeadingSignCount(value); + + /// + /// LA64: CLO.W rd, rj + /// + public static int LeadingSignCount(uint value) => LeadingSignCount(value); + + /// + /// LA64: CLO.D rd, rj + /// + public static int LeadingSignCount(long value) => LeadingSignCount(value); + + /// + /// LA64: CLO.D rd, rj + /// + public static int LeadingSignCount(ulong value) => LeadingSignCount(value); + + /// + /// LA64: CLZ.W rd, rj + /// + public static int LeadingZeroCount(int value) => LeadingZeroCount(value); + + /// + /// LA64: CLZ.W rd, rj + /// + public static int LeadingZeroCount(uint value) => LeadingZeroCount(value); + + /// + /// LA64: CLZ.D rd, rj + /// + public static int LeadingZeroCount(long value) => LeadingZeroCount(value); + + /// + /// LA64: CLZ.D rd, rj + /// + public static int LeadingZeroCount(ulong value) => LeadingZeroCount(value); + + /// + /// LA64: CTO.W rd, rj + /// + public static int TrailingOneCount(int value) => TrailingOneCount(value); + + /// + /// LA64: CTO.W rd, rj + /// + public static int TrailingOneCount(uint value) => TrailingOneCount(value); + + /// + /// LA64: CTO.D rd, rj + /// + public static int TrailingOneCount(long value) => TrailingOneCount(value); + + /// + /// LA64: CTO.D rd, rj + /// + public static int TrailingOneCount(ulong value) => TrailingOneCount(value); + + /// + /// LA64: CTZ.W rd, rj + /// + public static int TrailingZeroCount(int value) => TrailingZeroCount(value); + + /// + /// LA64: CTZ.W rd, rj + /// + public static int TrailingZeroCount(uint value) => TrailingZeroCount(value); + + /// + /// LA64: CTZ.D rd, rj + /// + public static int TrailingZeroCount(long value) => TrailingZeroCount(value); + + /// + /// LA64: CTZ.D rd, rj + /// + public static int TrailingZeroCount(ulong value) => TrailingZeroCount(value); + + /// + /// LA64: MULH.D rd, rj, rk + /// + public static long MultiplyHigh(long left, long right) => MultiplyHigh(left, right); + + /// + /// LA64: MULH.DU rd, rj, rk + /// + public static ulong MultiplyHigh(ulong left, ulong right) => MultiplyHigh(left, right); + + /// + /// LA64: BITREV.D rd, rj + /// + public static long ReverseElementBits(long value) => ReverseElementBits(value); + + /// + /// LA64: BITREV.D rd, rj + /// + public static ulong ReverseElementBits(ulong value) => ReverseElementBits(value); + + /// + /// LA64: BITREV.W rd, rj + /// + public static long ReverseElementBits(int value) => ReverseElementBits(value); + + /// + /// LA64: BITREV.W rd, rj + /// + public static ulong ReverseElementBits(uint value) => ReverseElementBits(value); + + /// + /// LA64: REVB.2W rd, rj + /// + public static int ReverseElementBits(int value) => ReverseElementBits(value); + + /// + /// LA64: REVB.2W rd, rj + /// + public static uint ReverseElementBits(uint value) => ReverseElementBits(value); + + /// + /// LA64: REVB.D rd, rj + /// + public static long ReverseElementBits(long value) => ReverseElementBits(value); + + /// + /// LA64: REVB.D rd, rj + /// + public static ulong ReverseElementBits(ulong value) => ReverseElementBits(value); + + /// + /// LA64: FRECIPE.S fd, fj + /// + public static float ReciprocalEstimate(float value) => ReciprocalEstimate(value); + + /// + /// LA64: FRECIPE.D fd, fj + /// + public static double ReciprocalEstimate(double value) => ReciprocalEstimate(value); + + /// + /// LA64: FRSQRTE.S fd, fj + /// + public static float ReciprocalSqrtEstimate(float value) => ReciprocalSqrtEstimate(value); + + /// + /// LA64: FRSQRTE.D fd, fj + /// + public static double ReciprocalSqrtEstimate(double value) => ReciprocalSqrtEstimate(value); + + /// + /// LA64: CRC.W.B.W rd, rj, rk + /// + public static long CyclicRedundancyCheckIEEE8023(int crc, byte checks) => CyclicRedundancyCheckIEEE8023(crc, checks); + + /// + /// LA64: CRC.W.H.W rd, rj, rk + /// + public static long CyclicRedundancyCheckIEEE8023(int crc, ushort checks) => CyclicRedundancyCheckIEEE8023(crc, checks); + + /// + /// LA64: CRC.W.W.W rd, rj, rk + /// + public static long CyclicRedundancyCheckIEEE8023(int crc, uint checks) => CyclicRedundancyCheckIEEE8023(crc, checks); + + /// + /// LA64: CRC.W.D.W rd, rj, rk + /// + public static long CyclicRedundancyCheckIEEE8023(int crc, ulong checks) => CyclicRedundancyCheckIEEE8023(crc, checks); + + /// + /// LA64: CRCC.W.B.W rd, rj, rk + /// + public static long CyclicRedundancyCheckCastagnoli(int crc, byte checks) => CyclicRedundancyCheckCastagnoli(crc, checks); + + /// + /// LA64: CRCC.W.H.W rd, rj, rk + /// + public static long CyclicRedundancyCheckCastagnoli(int crc, ushort checks) => CyclicRedundancyCheckCastagnoli(crc, checks); + + /// + /// LA64: CRCC.W.W.W rd, rj, rk + /// + public static long CyclicRedundancyCheckCastagnoli(int crc, uint checks) => CyclicRedundancyCheckCastagnoli(crc, checks); + + /// + /// LA64: CRCC.W.D.W rd, rj, rk + /// + public static long CyclicRedundancyCheckCastagnoli(int crc, ulong checks) => CyclicRedundancyCheckCastagnoli(crc, checks); + } + + /// + /// LA32/LA64: MULH.W rd, rj, rk + /// + public static long MultiplyHigh(int left, int right) => MultiplyHigh(left, right); + + /// + /// LA32/LA64: MULH.WU rd, rj, rk + /// + public static ulong MultiplyHigh(uint left, uint right) => MultiplyHigh(left, right); + + /// + /// LA32/LA64: FSQRT.S fd, fj + /// + public static float SquareRoot(float value) => SquareRoot(value); + + /// + /// LA32/LA64: FSQRT.D fd, fj + /// + public static double SquareRoot(double value) => SquareRoot(value); + + /// + /// LA32/LA64: FRECIP.S fd, fj + /// + public static float Reciprocal(float value) => Reciprocal(value); + + /// + /// LA32/LA64: FRECIP.D fd, fj + /// + public static double Reciprocal(double value) => Reciprocal(value); + + /// + /// LA32/LA64: FRSQRT.S fd, fj + /// + public static float ReciprocalSqrt(float value) => ReciprocalSqrt(value); + + /// + /// LA32/LA64: FRSQRT.D fd, fj + /// + public static double ReciprocalSqrt(double value) => ReciprocalSqrt(value); + + /// + /// LA32/LA64: FLOGB.S fd, fj + /// + public static float FloatLogarithm2(float value) => FloatLogarithm2(value); + + /// + /// LA32/LA64: FLOGB.D fd, fj + /// + public static double FloatLogarithm2(double value) => FloatLogarithm2(value); + + /// + /// LA32/LA64: FSCALEB.S fd, fj, fk + /// + public static float FloatScaleBinary(float value, int index) => FloatScaleBinary(value, index); + + /// + /// LA32/LA64: FSCALEB.D fd, fj, fk + /// + public static double FloatScaleBinary(double value, long index) => FloatScaleBinary(value, index); + + /// + /// LA32/LA64: FCOPYSIGN.S fd, fj, fk + /// + public static float FloatCopySign(float value, float sign) => FloatCopySign(value, sign); + + /// + /// LA32/LA64: FCOPYSIGN.D fd, fj, fk + /// + public static double FloatCopySign(double value, double sign) => FloatCopySign(value, sign); + + /// + /// LA32/LA64: FCLASS.S fd, fj + /// + public static float FloatClass(float value) => FloatClass(value); + + /// + /// LA32/LA64: FCLASS.S fd, fj + /// + public static double FloatClass(double value) => FloatClass(value); + } +} diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lsx.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lsx.PlatformNotSupported.cs new file mode 100644 index 00000000000000..d970df04c3c7cf --- /dev/null +++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lsx.PlatformNotSupported.cs @@ -0,0 +1,5943 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Runtime.CompilerServices; + +namespace System.Runtime.Intrinsics.LoongArch +{ + /// + /// This class provides access to the LSX-128bits hardware instructions via intrinsics + /// + [CLSCompliant(false)] +#if SYSTEM_PRIVATE_CORELIB + public +#else + internal +#endif + abstract class Lsx : LoongArchBase + { + internal Lsx() { } + + public static new bool IsSupported { [Intrinsic] get { return false; } } + + /// + /// int8x8_t vadd_b(int8x8_t a, int8x8_t b) + /// LSX: VADD.B Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Add(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vadd_b(uint8x8_t a, uint8x8_t b) + /// LSX: VADD.B Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Add(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vadd_h(int16x4_t a, int16x4_t b) + /// LSX: VADD.H Vd.4H, Vj.4H, Vk.4H + /// + public static Vector64 Add(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vadd_h(uint16x4_t a, uint16x4_t b) + /// LSX: VADD.H Vd.4H, Vj.4H, Vk.4H + /// + public static Vector64 Add(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vadd_w(int32x2_t a, int32x2_t b) + /// LSX: VADD.W Vd.2W, Vj.2W, Vk.2W + /// + public static Vector64 Add(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vadd_w(uint32x2_t a, uint32x2_t b) + /// LSX: VADD.W Vd.2W, Vj.2W, Vk.2W + /// + public static Vector64 Add(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x1_t vadd_d(int64x1_t a, int64x1_t b) + /// LSX: VADD.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Add(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x1_t vadd_d(uint64x1_t a, uint64x1_t b) + /// LSX: VADD.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Add(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x2_t vfadd_s(float32x2_t a, float32x2_t b) + /// LSX: VFADD.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector64 Add(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x1_t vfadd_d(float64x1_t a, float64x1_t b) + /// LSX: VFADD.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Add(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vadd_b(int8x16_t a, int8x16_t b) + /// LSX: VADD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Add(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vadd_b(uint8x16_t a, uint8x16_t b) + /// LSX: VADD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Add(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vadd_h(int16x8_t a, int16x8_t b) + /// LSX: VADD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Add(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vadd_h(uint16x8_t a, uint16x8_t b) + /// LSX: VADD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Add(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vadd_w(int32x4_t a, int32x4_t b) + /// LSX: VADD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Add(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vadd_w(uint32x4_t a, uint32x4_t b) + /// LSX: VADD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Add(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vadd_d(int64x2_t a, int64x2_t b) + /// LSX: VADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Add(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vadd_d(uint64x2_t a, uint64x2_t b) + /// LSX: VADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Add(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfadd_s(float32x4_t a, float32x4_t b) + /// LSX: VFADD.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Add(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfadd_d(float64x2_t a, float64x2_t b) + /// LSX: VFADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Add(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vsadd_b(int8x8_t a, uint8x8_t b) + /// LSX: VSADD.B Vd.8B, Vj.8B + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vsadd_bu(uint8x8_t a, int8x8_t b) + /// LSX: VSADD.BU Vd.8B, Vj.8B + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vsadd_h(int16x4_t a, uint16x4_t b) + /// LSX: VSADD.H Vd.4H, Vj.4H + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vsadd_hu(uint16x4_t a, int16x4_t b) + /// LSX: VSADD.HU Vd.4H, Vj.4H + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vsadd_w(int32x2_t a, uint32x2_t b) + /// LSX: VSADD.W Vd.2W, Vj.2W + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vsadd_wu(uint32x2_t a, int32x2_t b) + /// LSX: VSADD.WU Vd.2W, Vj.2W + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x1_t vsadd_d(int64x1_t a, uint64x1_t b) + /// LSX: VSADD.D Vd.D, Vj.D + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x1_t vsadd_du(uint64x1_t a, int64x1_t b) + /// LSX: VSADD.DU Vd.D, Vj.D + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsadd_b(int8x16_t a, int8x16_t b) + /// LSX: VSADD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsadd_h(int16x8_t a, int16x8_t b) + /// LSX: VSADD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsadd_w(int32x4_t a, int32x4_t b) + /// LSX: VSADD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsadd_d(int64x2_t a, int64x2_t b) + /// LSX: VSADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsadd_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSADD.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsadd_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSADD.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsadd_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSADD.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsadd_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSADD.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vhaddw_h_b(int8x16_t a, int8x16_t b) + /// LSX: VHADDW.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vhaddw_hu_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VHADDW.HU.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vhaddw_w_h(int16x8_t a, int16x8_t b) + /// LSX: VHADDW.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vhaddw_wu_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VHADDW.WU.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vhaddw_d_w(int32x4_t a, int32x4_t b) + /// LSX: VHADDW.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vhaddw_du_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VHADDW.DU.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x1_t vhaddw_q_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VHADDW.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x1_t vhaddw_qu_du(uint64x2_t a, uint64x2_t b) + /// LSX: VHADDW.QU.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vaddwev_h_b(int8x16_t a, int8x16_t b) + /// LSX: VADDWEV.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vaddwev_h_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VADDWEV.H.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vaddwev_w_h(int16x8_t a, int16x8_t b) + /// LSX: VADDWEV.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vaddwev_w_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VADDWEV.W.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vaddwev_d_w(int32x4_t a, int32x4_t b) + /// LSX: VADDWEV.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vaddwev_d_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VADDWEV.D.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x1_t vaddwev_q_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VADDWEV.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x1_t vaddwev_q_du(uint64x2_t a, uint64x2_t b) + /// LSX: VADDWEV.Q.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vaddwod_h_b(int8x16_t a, int8x16_t b) + /// LSX: VADDWOD.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vaddwod_h_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VADDWOD.H.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vaddwod_w_h(int16x8_t a, int16x8_t b) + /// LSX: VADDWOD.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vaddwod_w_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VADDWOD.W.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vaddwod_d_w(int32x4_t a, int32x4_t b) + /// LSX: VADDWOD.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vaddwod_d_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VADDWOD.D.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x1_t vaddwod_q_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VADDWOD.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x1_t vaddwod_q_du(uint64x2_t a, uint64x2_t b) + /// LSX: VADDWOD.Q.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vaddwev_h_bu_b(int8x16_t a, int8x16_t b) + /// LSX: VADDWEV.H.BU.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vaddwev_w_hu_h(int16x8_t a, int16x8_t b) + /// LSX: VADDWEV.W.HU.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vaddwev_d_wu_w(int32x4_t a, int32x4_t b) + /// LSX: VADDWEV.D.WU.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x1_t vaddwev_q_du_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VADDWEV.Q.DU.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vaddwod_h_bu_b(int8x16_t a, int8x16_t b) + /// LSX: VADDWOD.H.BU.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vaddwod_w_hu_h(int16x8_t a, int16x8_t b) + /// LSX: VADDWOD.W.HU.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vaddwod_d_wu_w(int32x4_t a, int32x4_t b) + /// LSX: VADDWOD.D.WU.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x1_t vaddwod_q_du_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VADDWOD.Q.DU.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + //// TODO: LA-SIMD: add HorizontalSubtract for LA64. + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddHorizontalElements(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.HU.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddHorizontalElements(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddHorizontalElements(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.WU.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddHorizontalElements(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddHorizontalElements(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.DU.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddHorizontalElements(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddHorizontalElements(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.QU.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddHorizontalElements(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: sum_all_float_elements witin vector. + /// + public static Vector64 AddHorizontalElements(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: sum_all_double_elements witin vector. + /// + public static Vector64 AddHorizontalElements(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vsub_b(int8x8_t a, int8x8_t b) + /// LSX: VSUB.B Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vsub_b(uint8x8_t a, uint8x8_t b) + /// LSX: VSUB.B Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vsub_h(int16x4_t a, int16x4_t b) + /// LSX: VSUB.H Vd.4H, Vj.4H, Vk.4H + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vsub_h(uint16x4_t a, uint16x4_t b) + /// LSX: VSUB.H Vd.4H, Vj.4H, Vk.4H + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vsub_w(int32x2_t a, int32x2_t b) + /// LSX: VSUB.W Vd.2W, Vj.2W, Vk.2W + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vsub_w(uint32x2_t a, uint32x2_t b) + /// LSX: VSUB.W Vd.2W, Vj.2W, Vk.2W + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x1_t vsub_d(int64x1_t a, int64x1_t b) + /// LSX: VSUB.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x1_t vsub_d(uint64x1_t a, uint64x1_t b) + /// LSX: VSUB.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x2_t vfsub_s(float32x2_t a, float32x2_t b) + /// LSX: VFSUB.S Vd.2S, Vj.2S, Vk.2S + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x1_t vfsub_d(float64x1_t a, float64x1_t b) + /// LSX: VFSUB.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsub_b(int8x16_t a, int8x16_t b) + /// LSX: VSUB.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsub_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSUB.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsub_h(int16x8_t a, int16x8_t b) + /// LSX: VSUB.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsub_h(uint16x8_t a, uint16x8_t b) + /// LSX: VSUB.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsub_w(int32x4_t a, int32x4_t b) + /// LSX: VSUB.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsub_w(uint32x4_t a, uint32x4_t b) + /// LSX: VSUB.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsub_d(int64x2_t a, int64x2_t b) + /// LSX: VSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsub_d(uint64x2_t a, uint64x2_t b) + /// LSX: VSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfsub_s(float32x4_t a, float32x4_t b) + /// LSX: VFSUB.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfsub_d(float64x2_t a, float64x2_t b) + /// LSX: VFSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vhsubw_h_b(int8x16_t a, int8x16_t b) + /// LSX: VHSUBW.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vhsubw_hu_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VHSUBW.HU.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vhsubw_w_h(int16x8_t a, int16x8_t b) + /// LSX: VHSUBW.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vhsubw_wu_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VHSUBW.WU.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vhsubw_d_w(int32x4_t a, int32x4_t b) + /// LSX: VHSUBW.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vhsubw_du_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VHSUBW.DU.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x1_t vhsubw_q_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VHSUBW.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x1_t vhsubw_qu_du(uint64x2_t a, uint64x2_t b) + /// LSX: VHSUBW.QU.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vssub_b(int8x16_t a, int8x16_t b) + /// LSX: VSSUB.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vssub_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSSUB.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vssub_h(int16x8_t a, int16x8_t b) + /// LSX: VSSUB.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssub_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSSUB.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vssub_w(int32x4_t a, int32x4_t b) + /// LSX: VSSUB.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vssub_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSSUB.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vssub_d(int64x2_t a, int64x2_t b) + /// LSX: VSSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vssub_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSSUB.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmul_b(int8x16_t a, int8x16_t b) + /// LSX: VMUL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vmul_b(uint8x16_t a, uint8x16_t b) + /// LSX: VMUL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmul_h(int16x8_t a, int16x8_t b) + /// LSX: VMUL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmul_h(uint16x8_t a, uint16x8_t b) + /// LSX: VMUL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmul_w(int32x4_t a, int32x4_t b) + /// LSX: VMUL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmul(uint32x4_t a, uint32x4_t b) + /// LSX: VMUL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmul_d(int64x2_t a, int64x2_t b) + /// LSX: VMUL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmul(uint64x2_t a, uint64x2_t b) + /// LSX: VMUL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfmul_s(float32x4_t a, float32x4_t b) + /// LSX: VFMUL.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfmul_d(float64x2_t a, float64x2_t b) + /// LSX: VFMUL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmuh_b(int8x16_t a, int8x16_t b) + /// LSX: VMUH.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vmuh_b(uint8x16_t a, uint8x16_t b) + /// LSX: VMUH.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmuh_h(int16x8_t a, int16x8_t b) + /// LSX: VMUH.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmuh_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VMUH.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmuh_w(int32x4_t a, int32x4_t b) + /// LSX: VMUL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmuh_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VMUH.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmuh_d(int64x2_t a, int64x2_t b) + /// LSX: VMUH.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmuh_du(uint64x2_t a, uint64x2_t b) + /// LSX: VMUH.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vdiv_b(int8x16_t a, int8x16_t b) + /// LSX: VDIV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Divide(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vdiv_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VDIV.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Divide(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vdiv_h(int16x8_t a, int16x8_t b) + /// LSX: VDIV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Divide(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vdiv_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VDIV.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Divide(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vdiv_w(int32x4_t a, int32x4_t b) + /// LSX: VDIV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Divide(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vdiv_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VDIV.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Divide(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vdiv_d(int64x2_t a, int64x2_t b) + /// LSX: VDIV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Divide(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vdiv_du(uint64x2_t a, uint64x2_t b) + /// LSX: VDIV.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Divide(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfdiv_s(float32x4_t a, float32x4_t b) + /// LSX: VFDIV.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Divide(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfdiv_d(float64x2_t a, float64x2_t b) + /// LSX: VFDIV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Divide(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmod_b(int8x16_t a, int8x16_t b) + /// LSX: VMOD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vmod_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VMOD.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmod_h(int16x8_t a, int16x8_t b) + /// LSX: VMOD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmod_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VMOD.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmod_w(int32x4_t a, int32x4_t b) + /// LSX: VMOD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmod_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VMOD.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmod_d(int64x2_t a, int64x2_t b) + /// LSX: VMOD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmod_du(uint64x2_t a, uint64x2_t b) + /// LSX: VMOD.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfmadd_s(float32x4_t a, float32x4_t b, float32x4_t c) + /// LSX: VFMADD.S Vd.4S, Vj.4S, Vk.4S, Va.4S + /// + public static Vector128 FusedMultiplyAdd(Vector128 left, Vector128 right, Vector128 addend) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfmadd_d(float64x2_t a, float64x2_t b, float64x2_t c) + /// LSX: VFMADD.D Vd.2D, Vj.2D, Vk.2D, Va.2D + /// + public static Vector128 FusedMultiplyAdd(Vector128 left, Vector128 right, Vector128 addend) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfnmadd_s(float32x4_t a, float32x4_t b, float32x4_t c) + /// LSX: VFNMADD.S Vd.4S, Vj.4S, Vk.4S, Va.4S + /// + public static Vector128 FusedMultiplyAddNegated(Vector128 left, Vector128 right, Vector128 addend) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfnmadd_d(float64x2_t a, float64x2_t b, float64x2_t c) + /// LSX: VFNMADD.D Vd.2D, Vj.2D, Vk.2D, Va.2D + /// + public static Vector128 FusedMultiplyAddNegated(Vector128 left, Vector128 right, Vector128 addend) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmadd_b(int8x16_t a, int8x16_t b, int8x16_t c) + /// LSX: VMADD.B Vd.16B, Vj.16B, Vk.16B //NOTE: The Vd is both input and output while input as addend. + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vmadd_b(uint8x16_t a, uint8x16_t b, uint8x16_t c) + /// LSX: VMADD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmadd_h(int16x8_t a, int16x8_t b, int16x8_t c) + /// LSX: VMADD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmadd_h(uint16x8_t a, uint16x8_t b, uint16x8_t c) + /// LSX: VMADD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmadd_w(int32x4_t a, int32x4_t b, int32x4_t c) + /// LSX: VMADD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmadd_w(uint32x4_t a, uint32x4_t b, uint32x4_t c) + /// LSX: VMADD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmadd_d(int64x2_t a, int64x2_t b, int64x2_t c) + /// LSX: VMADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyAdd(Vector128 minuend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmadd_d(uint64x2_t a, uint64x2_t b, uint64x2_t c) + /// LSX: VMADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyAdd(Vector128 minuend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfmsub_s(float32x4_t a, float32x4_t b, float32x4_t c) + /// LSX: VFMSUB.S Vd.4S, Vj.4S, Vk.4S, Va,4S + /// + public static Vector128 FusedMultiplySubtract(Vector128 left, Vector128 right, Vector128 minuend) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfmsub_d(float64x2_t a, float64x2_t b, float64x2_t c) + /// LSX: VFMSUB.D Vd.2D, Vj.2D, Vk.2D, Va.2D + /// + public static Vector128 FusedMultiplySubtract(Vector128 left, Vector128 right, Vector128 minuend) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfnmsub_s(float32x4_t a, float32x4_t b, float32x4_t c) + /// LSX: VFNMSUB.S Vd.4S, Vj.4S, Vk.4S, Va,4S + /// + public static Vector128 FusedMultiplySubtractNegated(Vector128 left, Vector128 right, Vector128 minuend) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfnmsub_d(float64x2_t a, float64x2_t b, float64x2_t c) + /// LSX: VFNMSUB.D Vd.2D, Vj.2D, Vk.2D, Va.2D + /// + public static Vector128 FusedMultiplySubtractNegated(Vector128 left, Vector128 right, Vector128 minuend) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmsub_b(int8x16_t a, int8x16_t b, int8x16_t c) + /// LSX: VMSUB.B Vd.16B, Vj.16B, Vk.16B //NOTE: The Vd is both input and output while input as minuend. + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vmsub_b(uint8x16_t a, uint8x16_t b, uint8x16_t c) + /// LSX: VMSUB.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmsub_h(int16x8_t a, int16x8_t b, int16x8_t c) + /// LSX: VMSUB.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmsub_h(uint16x8_t a, uint16x8_t b, uint16x8_t c) + /// LSX: VMSUB.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmsub_w(int32x4_t a, int32x4_t b, int32x4_t c) + /// LSX: VMSUB.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmsub_w(uint32x4_t a, uint32x4_t b, uint32x4_t c) + /// LSX: VMSUB.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmsub_d(int64x2_t a, int64x2_t b, int64x2_t c) + /// LSX: VMSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmsub_d(uint64x2_t a, uint64x2_t b, uint64x2_t c) + /// LSX: VMSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmaddwev_h_b(int16x8_t a, int8x8_t b, int8x8_t c) + /// LSX: VMADDWEV.H.B Vd.8H, Vj.8B, Vk.8B + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmaddwev_h_bu(uint16x8_t a, uint8x8_t b, uint8x8_t c) + /// LSX: VMADDWEV.H.BU Vd.8H, Vj.8B, Vk.8B + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmaddwev_w_h(int32x4_t a, int16x4_t b, int16x4_t c) + /// LSX: VMADDWEV.W.H Vd.4W, Vj.4H, Vk.4H + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmaddwev_w_hu(uint32x4_t a, uint16x4_t b, uint16x4_t c) + /// LSX: VMADDWEV.W.HU Vd.4W, Vj.4H, Vk.4H + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmaddwev_d_w(int64x2_t a, int32x2_t b, int32x2_t c) + /// LSX: VMADDWEV.D.W Vd.2D, Vj.2S, Vk.2S + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmaddwev_d_wu(uint64x2_t a, uint32x2_t b, uint32x2_t c) + /// LSX: VMADDWEV.D.WU Vd.2D, Vj.2S, Vk.2S + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmaddwod_h_b(int16x8_t a, int8x16_t b, int8x16_t c) + /// LSX: VMADDWOD.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmaddwod_h_bu(uint16x8_t a, uint8x16_t b, uint8x16_t c) + /// LSX: VMADDWOD.H.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmaddwod_w_h(int32x4_t a, int16x8_t b, int16x8_t c) + /// LSX: VMADDWOD.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmaddwod_w_hu(uint32x4_t a, uint16x8_t b, uint16x8_t c) + /// LSX: VMADDWOD.W.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmaddwod_d_w(int64x2_t a, int32x4_t b, int32x4_t c) + /// LSX: VMADDWOD.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmaddwod_d_wu(uint64x2_t a, uint32x4_t b, uint32x4_t c) + /// LSX: VMADDWOD.D.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmsknz_b(int8x16_t value) + /// LSX: VMSKNZ.B Vd.16B, Vj.16B + /// + public static Vector128 CompareNotEqualZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vmsknz_b(uint8x16_t value) + /// LSX: VMSKNZ.B Vd.16B, Vj.16B + /// + public static Vector128 CompareNotEqualZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vseqi_b(int8x16_t a, int8_t si5) + /// LSX: VSEQI.B Vd.16B, Vj.16B, si5 + /// + public static Vector128 CompareEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vseqi_h(int16x8_t a, int8_t si5) + /// LSX: VSEQI.H Vd.8H, Vj.8H, si5 + /// + public static Vector128 CompareEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vseqi_w(int32x4_t a, int8_t si5) + /// LSX: VSEQI.W Vd.4W, Vj.4W, si5 + /// + public static Vector128 CompareEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vseqi_d(int64x2_t a, int8_t si5) + /// LSX: VSEQI.D Vd.2D, Vj.2D, si5 + /// + public static Vector128 CompareEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vseq_b(int8x16_t a, int8x16_t b) + /// LSX: VSEQ.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vseq_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSEQ.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vseq_h(int16x8_t a, int16x8_t b) + /// LSX: VSEQ.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vseq_h(uint16x8_t a, uint16x8_t b) + /// LSX: VSEQ.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vseq_w(int32x4_t a, int32x4_t b) + /// LSX: VSEQ.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vseq_w(uint32x4_t a, uint32x4_t b) + /// LSX: VSEQ.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vseq_d(int64x2_t a, int64x2_t b) + /// LSX: VSEQ.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vseq_d(uint64x2_t a, uint64x2_t b) + /// LSX: VSEQ.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vfcmp_ceq_s(float32x4_t a, float32x4_t b) + /// LSX: VFCMP.CEQ.S Vd.4W, Vj.4S, Vk.4S + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vfcmp_ceq_d(float64x2_t a, float64x2_t b) + /// LSX: VFCMP.CEQ.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmskltz_b(int8x16_t value) + /// LSX: VMSKLTZ.B Vd.16B, Vj.16B + /// + public static Vector128 CompareLessThanZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmskltz_h(int16x8_t value) + /// LSX: VMSKLTZ.H Vd.8H, Vj.8H + /// + public static Vector128 CompareLessThanZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmskltz_w(int32x4_t value) + /// LSX: VMSKLTZ.W Vd.4W, Vj.4W + /// + public static Vector128 CompareLessThanZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmskltz_d(int64x2_t value) + /// LSX: VMSKLTZ.D Vd.2D, Vj.2D + /// + public static Vector128 CompareLessThanZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vslti_b(int8x16_t a, int8_t si5) + /// LSX: VSLTI.B Vd.16B, Vj.16B, si5 + /// + public static Vector128 CompareLessThan(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vslti_h(int16x8_t a, int8_t si5) + /// LSX: VSLTI.H Vd.8H, Vj.8H, si5 + /// + public static Vector128 CompareLessThan(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vslti_w(int32x4_t a, int8_t si5) + /// LSX: VSLTI.W Vd.4W, Vj.4W, si5 + /// + public static Vector128 CompareLessThan(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vslti_d(int64x2_t a, int8_t si5) + /// LSX: VSLTI.D Vd.2D, Vj.2D, si5 + /// + public static Vector128 CompareLessThan(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vslt_b(int8x16_t a, int8x16_t b) + /// LSX: VSLT.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vslt_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSLT.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vslt_h(int16x8_t a, int16x8_t b) + /// LSX: VSLT.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vslt_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSLT.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vslt_w(int32x4_t a, int32x4_t b) + /// LSX: VSLT.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vslt_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSLT.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vslt_d(int64x2_t a, int64x2_t b) + /// LSX: VSLT.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vslt_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSLT.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vfcmp_clt_s(float32x4_t a, float32x4_t b) + /// LSX: VFCMP.CLT.S Vd.4W, Vj.4S, Vk.4S + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vfcmp_clt_d(float64x2_t a, float64x2_t b) + /// LSX: VFCMP.CLT.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vslei_b(int8x16_t a, int8_t si5) + /// LSX: VSLEI.B Vd.16B, Vj.16B, si5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vslei_h(int16x8_t a, int8_t si5) + /// LSX: VSLEI.H Vd.8H, Vj.8H, si5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vslei_w(int32x4_t a, int8_t si5) + /// LSX: VSLEI.W Vd.4W, Vj.4W, si5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vslei_d(int64x2_t a, int8_t si5) + /// LSX: VSLEI.D Vd.2D, Vj.2D, si5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsle_b(int8x16_t a, int8x16_t b) + /// LSX: VSLE.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsle_h(int16x8_t a, int16x8_t b) + /// LSX: VSLE.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsle_w(int32x4_t a, int32x4_t b) + /// LSX: VSLE.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsle_d(int64x2_t a, int64x2_t b) + /// LSX: VSLE.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vslei_bu(uint8x16_t a, uint8_t ui5) + /// LSX: VSLEI.BU Vd.16B, Vj.16B, ui5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vslei_hu(uint16x8_t a, uint8_t ui5) + /// LSX: VSLEI.HU Vd.8H, Vj.8H, ui5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vslei_wu(uint32x4_t a, uint8_t ui5) + /// LSX: VSLEI.WU Vd.4W, Vj.4W, ui5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vslei_du(uint64x2_t a, uint8_t ui5) + /// LSX: VSLEI.DU Vd.2D, Vj.2D, ui5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsle_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSLE.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsle_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSLE.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsle_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSLE.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsle_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSLE.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vfcmp_cle_s(float32x4_t a, float32x4_t b) + /// LSX: VFCMP.CLE.S Vd.4W, Vj.4S, Vk.4S + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vfcmp_cle_d(float64x2_t a, float64x2_t b) + /// LSX: VFCMP.CLE.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsle_b(int8x16_t a, int8x16_t b) + /// LSX: VSLE.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsle_h(int16x8_t a, int16x8_t b) + /// LSX: VSLE.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsle_w(int32x4_t a, int32x4_t b) + /// LSX: VSLE.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsle_d(int64x2_t a, int64x2_t b) + /// LSX: VSLE.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsle_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSLE.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsle_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSLE.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsle_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSLE.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsle_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSLE.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vfcmp_cle_s(float32x4_t a, float32x4_t b) + /// LSX: VFCMP.CLE.S Vd.4W, Vj.4S, Vk.4S + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vfcmp_cle_d(float64x2_t a, float64x2_t b) + /// LSX: VFCMP.CLE.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmskgez_b(int8x16_t value) + /// LSX: VMSKGEZ.B Vd.16B, Vj.16B + /// + public static Vector128 CompareGreaterThanOrEqualZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vslt_b(int8x16_t a, int8x16_t b) + /// LSX: VSLT.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vslt_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSLT.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vslt_h(int16x8_t a, int16x8_t b) + /// LSX: VSLT.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vslt_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSLT.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vslt_w(int32x4_t a, int32x4_t b) + /// LSX: VSLT.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vslt_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSLT.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vslt_d(int64x2_t a, int64x2_t b) + /// LSX: VSLT.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vslt_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSLT.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vfcmp_clt_s(float32x4_t a, float32x4_t b) + /// LSX: VFCMP.CLT.S Vd.4W, Vj.4S, Vk.4S + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vfcmp_clt_d(float64x2_t a, float64x2_t b) + /// LSX: VFCMP.CLT.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmaxi_b(int8x16_t a, int8_t si5) + /// LSX: VMAXI.B Vd.16B, Vj.16B, si5 + /// + public static Vector128 Max(Vector128 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vmaxi_bu(uint8x16_t a, int8_t si5) + /// LSX: VMAXI.BU Vd.16B, Vj.16B, ui5 + /// + public static Vector128 Max(Vector128 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmaxi_h(int16x8_t a, int8_t si5) + /// LSX: VMAXI.H Vd.8H, Vj.8H, si5 + /// + public static Vector128 Max(Vector128 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmaxi_hu(uint16x8_t a, int8_t si5) + /// LSX: VMAXI.HU Vd.8H, Vj.8H, ui5 + /// + public static Vector128 Max(Vector128 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmaxi_w(int32x4_t a, int8_t si5) + /// LSX: VMAXI.W Vd.4W, Vj.4W, si5 + /// + public static Vector128 Max(Vector128 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmaxi_wu(uint32x4_t a, int8_t si5) + /// LSX: VMAXI.WU Vd.4W, Vj.4W, ui5 + /// + public static Vector128 Max(Vector128 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmaxi_d(int64x2_t a, int8_t si5) + /// LSX: VMAXI.D Vd.2D, Vj.2D, si5 + /// + public static Vector128 Max(Vector128 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmaxi_du(uint64x2_t a, int8_t si5) + /// LSX: VMAXI.DU Vd.2D, Vj.2D, ui5 + /// + public static Vector128 Max(Vector128 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmax_b(int8x16_t a, int8x16_t b) + /// LSX: VMAX.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Max(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vmax_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VMAX.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Max(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmax_h(int16x8_t a, int16x8_t b) + /// LSX: VMAX.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Max(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmax_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VMAX.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Max(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmax_w(int32x4_t a, int32x4_t b) + /// LSX: VMAX.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Max(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmax_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VMAX.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Max(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmax_d(int64x2_t a, int64x2_t b) + /// LSX: VMAX.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Max(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmax_du(uint64x2_t a, uint64x2_t b) + /// LSX: VMAX.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Max(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfmax_s(float32x4_t a, float32x4_t b) + /// LSX: VFMAX.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Max(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfmax_d(float64x2_t a, float64x2_t b) + /// LSX: VFMAX.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Max(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfmaxa_s(float32x4_t a, float32x4_t b) + /// LSX: VFMAXA.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 MaxFloatAbsolute(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfmaxa_d(float64x2_t a, float64x2_t b) + /// LSX: VFMAXA.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MaxFloatAbsolute(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmini_b(int8x16_t a, int8_t si5) + /// LSX: VMINI.B Vd.16B, Vj.16B, si5 + /// + public static Vector128 Min(Vector128 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vmini_bu(uint8x16_t a, int8_t si5) + /// LSX: VMINI.BU Vd.16B, Vj.16B, ui5 + /// + public static Vector128 Min(Vector128 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmini_h(int16x8_t a, int8_t si5) + /// LSX: VMINI.H Vd.8H, Vj.8H, si5 + /// + public static Vector128 Min(Vector128 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmini_hu(uint16x8_t a, int8_t si5) + /// LSX: VMINI.HU Vd.8H, Vj.8H, ui5 + /// + public static Vector128 Min(Vector128 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmini_w(int32x4_t a, int8_t si5) + /// LSX: VMINI.W Vd.4W, Vj.4W, si5 + /// + public static Vector128 Min(Vector128 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmini_wu(uint32x4_t a, int8_t si5) + /// LSX: VMINI.WU Vd.4W, Vj.4W, ui5 + /// + public static Vector128 Min(Vector128 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmini_d(int64x2_t a, int8_t si5) + /// LSX: VMINI.D Vd.2D, Vj.2D, si5 + /// + public static Vector128 Min(Vector128 value, const sbyte si5) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmini_du(uint64x2_t a, int8_t si5) + /// LSX: VMINI.DU Vd.2D, Vj.2D, ui5 + /// + public static Vector128 Min(Vector128 value, const byte ui5) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vmin_b(int8x16_t a, int8x16_t b) + /// LSX: VMIN.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Min(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vmin_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VMIN.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Min(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmin_h(int16x8_t a, int16x8_t b) + /// LSX: VMIN.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Min(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmin_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VMIN.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Min(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmin_w(int32x4_t a, int32x4_t b) + /// LSX: VMIN.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Min(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmin_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VMIN.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Min(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmin_d(int64x2_t a, int64x2_t b) + /// LSX: VMIN.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Min(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmin_du(uint64x2_t a, uint64x2_t b) + /// LSX: VMIN.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Min(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfmin_s(float32x4_t a, float32x4_t b) + /// LSX: VFMIN.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Min(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfmin_d(float64x2_t a, float64x2_t b) + /// LSX: VFMIN.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Min(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfmina_s(float32x4_t a, float32x4_t b) + /// LSX: VFMINA.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 MinFloatAbsolute(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfmina_d(float64x2_t a, float64x2_t b) + /// LSX: VFMINA.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MinFloatAbsolute(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vbitsel_v(uint8x16_t a, int8x16_t b, int8x16_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vbitsel_v(uint8x16_t a, uint8x16_t b, uint8x16_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vbitsel_v(uint16x8_t a, int16x8_t b, int16x8_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vbitsel_v(uint16x8_t a, uint16x8_t b, uint16x8_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vbitsel_v(uint32x4_t a, int32x4_t b, int32x4_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vbitsel_v(uint32x4_t a, uint32x4_t b, uint32x4_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vbitsel_v(uint64x2_t a, int64x2_t b, int64x2_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vbitsel_v(uint64x2_t a, uint64x2_t b, uint64x2_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vbitsel_v(uint32x4_t a, float32x4_t b, float32x4_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vbitsel_v(uint64x2_t a, float64x2_t b, float64x2_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vabsd_b(int8x16_t a, int8x16_t b) + /// LSX: VABSD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vabsd_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VABSD.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vabsd_h(int16x8_t a, int16x8_t b) + /// LSX: VABSD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vabsd_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VABSD.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vabsd_w(int32x4_t a, int32x4_t b) + /// LSX: VABSD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vabsd_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VABSD.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vabsd_d(uint64x2_t a, int64x2_t b, int64x2_t c) + /// LSX: VABSD.D Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vabsd_du(uint64x2_t a, uint64x2_t b, uint64x2_t c) + /// LSX: VABSD.DU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + ///// + ///// float32x4_t TODO(float32x4_t a, float32x4_t b) multi-instructions. + ///// LSX: TODO Vd.4S, Vj.4S, Vk.4S + ///// + //public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + ///// + ///// float64x2_t TODO(float64x2_t a, float64x2_t b) + ///// LSX: TODO Vd.2D, Vj.2D, Vk.2D + ///// + //public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vld(int8_t const * ptr, const short si12) + /// LSX: VLD Vd.16B, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(sbyte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vld(uint8_t const * ptr, const short si12) + /// LSX: VLD Vd.16B, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(byte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vld(int16_t const * ptr, const short si12) + /// LSX: VLD Vd.8H, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(short* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vld(uint16_t const * ptr, const short si12) + /// LSX: VLD Vd.8H, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(ushort* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vld(int32_t const * ptr, const short si12) + /// LSX: VLD Vd.4W, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(int* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vld(uint32_t const * ptr, const short si12) + /// LSX: VLD Vd.4W, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(uint* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vld(int64_t const * ptr, const short si12) + /// LSX: VLD Vd.2D, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(long* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vld(uint64_t const * ptr, const short si12) + /// LSX: VLD Vd.2D, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(ulong* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vld(float32_t const * ptr, const short si12) + /// LSX: VLD Vd.4S, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(float* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vld(float64_t const * ptr, const short si12) + /// LSX: VLD Vd.2D, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(double* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vldx(int8_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.16B, Rj, rk + /// + public static unsafe Vector128 LoadVector128(sbyte* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vldx(uint8_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.16B, Rj, rk + /// + public static unsafe Vector128 LoadVector128(byte* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vldx(int16_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.8H, Rj, rk + /// + public static unsafe Vector128 LoadVector128(short* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vldx(uint16_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.8H, Rj, rk + /// + public static unsafe Vector128 LoadVector128(ushort* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vldx(int32_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.4W, Rj, rk + /// + public static unsafe Vector128 LoadVector128(int* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vldx(uint32_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.4W, Rj, rk + /// + public static unsafe Vector128 LoadVector128(uint* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vldx(int64_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.2D, Rj, rk + /// + public static unsafe Vector128 LoadVector128(long* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vldx(uint64_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.2D, Rj, rk + /// + public static unsafe Vector128 LoadVector128(ulong* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vldx(float32_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.4S, Rj, rk + /// + public static unsafe Vector128 LoadVector128(float* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vldx(float64_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.2D, Rj, rk + /// + public static unsafe Vector128 LoadVector128(double* address, long offsetValue) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vldrepl_b(int8_t const * ptr, const short si12) + /// LSX: VLDREPL.B Vd.16B, Rj, si12 + /// + public static unsafe Vector128 LoadElementReplicateVector(sbyte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vldrepl_b(uint8_t const * ptr, const short si12) + /// LSX: VLDREPL.B Vd.16B, Rj, si12 + /// + public static unsafe Vector128 LoadElementReplicateVector(byte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vldrepl_h(int16_t const * ptr, const short si12) + /// LSX: VLDREPL.H Vd.8H, Rj, si11 + /// + public static unsafe Vector128 LoadElementReplicateVector(short* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vldrepl_h(uint16_t const * ptr, const short si12) + /// LSX: VLDREPL.H Vd.8H, Rj, si11 + /// + public static unsafe Vector128 LoadElementReplicateVector(ushort* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vldrepl_w(int32_t const * ptr, const short si12) + /// LSX: VLDREPL.W Vd.4W, Rj, si10 + /// + public static unsafe Vector128 LoadElementReplicateVector(int* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vldrepl_w(uint32_t const * ptr, const short si12) + /// LSX: VLDREPL.W Vd.4W, Rj, si10 + /// + public static unsafe Vector128 LoadElementReplicateVector(uint* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vldrepl_d(int64_t const * ptr, const short si12) + /// LSX: VLDREPL.D Vd.2D, Rj, si9 + /// + public static unsafe Vector128 LoadElementReplicateVector(long* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vldrepl_d(uint64_t const * ptr, const short si12) + /// LSX: VLDREPL.D Vd.2D, Rj, si9 + /// + public static unsafe Vector128 LoadElementReplicateVector(ulong* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vld(float32_t const * ptr, const short si12) + /// LSX: VLDREPL.W Vd.4S, Rj, si10 + /// + public static unsafe Vector128 LoadElementReplicateVector(float* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vldrepl_d(float64_t const * ptr, const short si12) + /// LSX: VLDREPL.D Vd.2D, Rj, si9 + /// + public static unsafe Vector128 LoadElementReplicateVector(double* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfrecip_s(float32x4_t a) + /// LSX: VFRECIP.S Vd.4S Vj.4S + /// + public static Vector128 Reciprocal(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfrecip_d(float64x2_t a) + /// LSX: VFRECIP.D Vd.2D Vj.2D + /// + public static Vector128 Reciprocal(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfrsqrt_s(float32x4_t a) + /// LSX: VFRSQRT.S Vd.4S Vj.4S + /// + public static Vector128 ReciprocalSqrt(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfrsqrt_d(float64x2_t a) + /// LSX: VFRSQRT.D Vd.2D Vj.2D + /// + public static Vector128 ReciprocalSqrt(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfsqrt_s(float32x4_t a) + /// LSX: VFSQRT.S Vd.4S, Vj.4S + /// + public static Vector128 Sqrt(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfsqrt_d(float64x2_t a) + /// LSX: VFSQRT.D Vd.2D, Vj.2D + /// + public static Vector128 Sqrt(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vflogb_s(float32x4_t a) + /// LSX: VFLOGB.S Vd.4S, Vj.4S + /// + public static Vector128 FloatLogarithm2(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vflogb_d(float64x2_t a) + /// LSX: VFLOGB.D Vd.2D, Vj.2D + /// + public static Vector128 FloatLogarithm2(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// void vst(int8x16_t val, int8_t* addr, const short si12) + /// LSX: VST Vd.16B, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, sbyte* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void vst(uint8x16_t val, uint8_t* addr, const short si12) + /// LSX: VST Vd.16B, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, byte* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void vst(int16x8_t val, int16_t* addr, const short si12) + /// LSX: VST Vd.8H, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, short* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void vst(uint16x8_t val, uint16_t* addr, const short si12) + /// LSX: VST Vd.8H, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, ushort* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void vst(int32x4_t val, int32_t* addr, const short si12) + /// LSX: VST Vd.4W, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, int* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void vst(uint32x4_t val, uint32_t* addr, const short si12) + /// LSX: VST Vd.4W, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, uint* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void vst(int64x2_t val, int64_t* addr, const short si12) + /// LSX: VST Vd.2D, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, long* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void vst(uint64x2_t val, uint64_t* addr, const short si12) + /// LSX: VST Vd.2D, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, ulong* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void vst(float32x4_t val, float32_t* addr, const short si12) + /// LSX: VST Vd.4S, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, float* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void vst(float64x2_t val, float64_t* addr, const short si12) + /// LSX: VST Vd.2D, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, double* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) { throw new PlatformNotSupportedException(); } + + /// + /// void vstelm_b(int8x16_t val, int8_t* ptr, const short si8, const byte index) + /// LSX: VSTELM.B Vd.16B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, sbyte* addr, [ConstantExpected(Min = -128, Max = 127)] short si8, [ConstantExpected(Max = (byte)(15))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void vstelm_b(uint8x16_t val, uint8_t* ptr, const short si8, const byte index) + /// LSX: VSTELM.B Vd.16B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, byte* addr, [ConstantExpected(Min = -128, Max = 127)] short si8, [ConstantExpected(Max = (byte)(15))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void vstelm_h(int16x8_t val, int16_t* ptr, const short si9, const byte index) // si9 is 2byte aligned. + /// LSX: VSTELM.H Vd.8H, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, short* addr, [ConstantExpected(Min = -256, Max = 254)] short si9, [ConstantExpected(Max = (byte)(7))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void vstelm_h(uint16x8_t val, uint16_t* ptr, const short si9, const byte index) + /// LSX: VSTELM.H Vd.8H, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, ushort* addr, [ConstantExpected(Min = -256, Max = 254)] short si9, [ConstantExpected(Max = (byte)(7))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void vstelm_w(int32x4_t val, int* ptr, const short si10, const byte index) // si10 is 4byte aligned. + /// LSX: VSTELM.W Vd.4W, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, int* addr, [ConstantExpected(Min = -512, Max = 508)] short si10, [ConstantExpected(Max = (byte)(3))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void vstelm_w(uint32x4_t val, uint* ptr, const short si10, const byte index) + /// LSX: VSTELM.W Vd.4W, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, uint* addr, [ConstantExpected(Min = -512, Max = 508)] short si10, [ConstantExpected(Max = (byte)(3))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void vstelm_d(int64x2_t val, int64_t* ptr, const short si11, const byte index) // si11 is 8byte aligned. + /// LSX: VSTELM.D Vd.2D, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, long* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(1))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void vstelm_d(uint64x2_t val, uint64_t* ptr, const short si11, const byte index) + /// LSX: VSTELM.D Vd.2D, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, ulong* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(1))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void vstelm_w(float32x4_t val, float32_t* ptr, const short si10, const byte index) + /// LSX: VSTELM.W Vd.16B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, float* addr, [ConstantExpected(Min = -512, Max = 511)] short si10, [ConstantExpected(Max = (byte)(3))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// void vstelm_d(float64x2_t val, float64_t* ptr, const short si11, const byte index) + /// LSX: VSTELM.D Vd.16B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, double* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(1))] byte idx) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vneg_b(int8x16_t a) + /// LSX: VNEG.B Vd.16B, Vj.16B + /// + public static Vector128 Negate(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vneg_h(int16x8_t a) + /// LSX: VNEG.H Vd.8H, Vj.8H + /// + public static Vector128 Negate(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vneg_w(int32x4_t a) + /// LSX: VNEG.W Vd.4W, Vj.4W + /// + public static Vector128 Negate(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vneg_d(int64x2_t a) + /// LSX: VNEG.D Vd.2D, Vj.2D + /// + public static Vector128 Negate(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vbitrevi_w(float32x4_t a) + /// LSX: VBITREVI.W Vd.4W, Vj.4W, 31 + /// + public static Vector128 Negate(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vbitrevi_d(float64x2_t a) + /// LSX: VBITREVI.D Vd.2D, Vj.2D, 63 + /// + public static Vector128 Negate(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x1_t fneg_d(float64x1_t a) + /// LSX: FNEG.D Fd, Fj + /// + public static Vector64 NegateScalar(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32_t fneg_s(float32_t a) + /// LSX: FNEG.S Fd, Fj + /// + public static Vector64 NegateScalar(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmulwod_h_b(int8x16_t a, int8x16_t b) + /// LSX: VMULWOD.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmulwod_w_h(int16x8_t a, int16x8_t b) + /// LSX: VMULWOD.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmulwod_d_w(int32x4_t a, int32x4_t b) + /// LSX: VMULWOD.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x1_t vmulwod_q_d(int64x2_t a, int64x2_t b) + /// LSX: VMULWOD.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vmulwev_h_b(int8x16_t a, int8x16_t b) + /// LSX: VMULWEV.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vmulwev_w_h(int16x8_t a, int16x8_t b) + /// LSX: VMULWEV.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vmulwev_d_w(int32x4_t a, int32x4_t b) + /// LSX: VMULWEV.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int128x1_t vmulwev_q_d(int64x2_t a, int64x2_t b) + /// LSX: VMULWEV.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vmulwod_hu_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VMULWOD.H.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vmulwod_wu_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VMULWOD.W.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vmulwod_du_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VMULWOD.D.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x1_t vmulwod_qu_du(uint64x2_t a, uint64x2_t b) + /// LSX: VMULWOD.Q.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// uint16x8_t vmulwev_hu_bu(uint8x16_t a, uint8x16_t b) + // /// LSX: VMULWEV.H.BU Vd.8H, Vj.16B, Vk.16B + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// uint32x4_t vmulwev_wu_hu(uint16x8_t a, uint16x8_t b) + // /// LSX: VMULWEV.W.HU Vd.4W, Vj.8H, Vk.8H + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// uint64x2_t vmulwev_du_wu(uint32x4_t a, uint32x4_t b) + // /// LSX: VMULWEV.D.WU Vd.2D, Vj.4W, Vk.4W + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// uint128x1_t vmulwev_qu_du(uint64x2_t a, uint64x2_t b) + // /// LSX: VMULWEV.Q.DU Vd.Q, Vj.2D, Vk.2D + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int16x8_t vmulwod_h_bu(uint8x16_t a, int8x16_t b) + // /// LSX: VMULWOD.H.BU.B Vd.8H, Vj.16B, Vk.16B + // /// + // public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int32x4_t vmulwod_w_hu(uint16x8_t a, int16x8_t b) + // /// LSX: VMULWOD.W.HU.H Vd.4W, Vj.8H, Vk.8H + // /// + // public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int64x2_t vmulwod_d_wu(uint32x4_t a, int32x4_t b) + // /// LSX: VMULWOD.D.WU.W Vd.2D, Vj.4W, Vk.4W + // /// + // public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int128x1_t vmulwod_q_du(uint64x2_t a, int64x2_t b) + // /// LSX: VMULWOD.Q.DU.D Vd.Q, Vj.2D, Vk.2D + // /// + // public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int16x8_t vmulwev_h_bu(uint8x16_t a, int8x16_t b) + // /// LSX: VMULWEV.H.BU.B Vd.8H, Vj.16B, Vk.16B + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int32x4_t vmulwev_w_hu(uint16x8_t a, int16x8_t b) + // /// LSX: VMULWEV.W.HU.H Vd.4W, Vj.8H, Vk.8H + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int64x2_t vmulwev_d_wu(uint32x4_t a, int32x4_t b) + // /// LSX: VMULWEV.D.WU.W Vd.2D, Vj.4W, Vk.4W + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + // /// + // /// int128x1_t vmulwev_q_du(uint64x2_t a, int64x2_t b) + // /// LSX: VMULWEV.Q.DU.D Vd.Q, Vj.2D, Vk.2D + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vavg_b(int8x16_t a, int8x16_t b) + /// LSX: VAVG.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Average(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vavg_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VAVG.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Average(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vavg_h(int16x8_t a, int16x8_t b) + /// LSX: VAVG.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Average(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vavg_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VAVG.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Average(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vavg_w(int32x4_t a, int32x4_t b) + /// LSX: VAVG.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Average(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vavg_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VAVG.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Average(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vavg_d(int64x2_t a, int64x2_t b) + /// LSX: VAVG.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Average(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vavg_du(uint64x2_t a, uint64x2_t b) + /// LSX: VAVG.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Average(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vavgr_b(int8x16_t a, int8x16_t b) + /// LSX: VAVGR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vavgr_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VAVGR.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vavgr_h(int16x8_t a, int16x8_t b) + /// LSX: VAVGR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vavgr_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VAVGR.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vavgr_w(int32x4_t a, int32x4_t b) + /// LSX: VAVGR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vavgr_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VAVGR.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vavgr_d(int64x2_t a, int64x2_t b) + /// LSX: VAVGR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vavgr_du(uint64x2_t a, uint64x2_t b) + /// LSX: VAVGR.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsllwil_h_b(int8x16_t a, uint8_t ui3) + /// LSX: VSLLWIL.H.B Vd.8H, Vj.16B, ui3 + /// + public static Vector128 SignExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsllwil_w_h(int16x4_t a, uint8_t ui4) + /// LSX: VSLLWIL.W.H Vd.4W, Vj.4H, ui4 + /// + public static Vector128 SignExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsllwil_d_w(int32x2_t a, uint8_t ui5) + /// LSX: VSLLWIL.D.W Vd.2D, Vj.2W, ui5 + /// + public static Vector128 SignExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsllwil_hu_bu(uint8x16_t a, uint8_t ui3) + /// LSX: VSLLWIL.HU.BU Vd.8H, Vj.16B, ui3 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsllwil_hu_bu(int8x16_t a, uint8_t ui3) + /// LSX: VSLLWIL.HU.BU Vd.8H, Vj.16B, ui3 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsllwil_wu_hu(uint16x8_t a, uint8_t ui4) + /// LSX: VSLLWIL.WU.HU Vd.4W, Vj.8H, ui4 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsllwil_wu_hu(int16x8_t a, uint8_t ui4) + /// LSX: VSLLWIL.WU.HU Vd.4W, Vj.8H, ui4 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsllwil_du_wu(uint32x4_t a, uint8_t ui5) + /// LSX: VSLLWIL.DU.WU Vd.2D, Vj.4W, ui5 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsllwil_du_wu(int32x4_t a, uint8_t ui5) + /// LSX: VSLLWIL.DU.WU Vd.2D, Vj.4W, ui5 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x1_t vextl_qu_du(int64_t a) + /// LSX: VEXTL.QU.DU Vd.Q, Vj.D + /// + public static Vector128 ZeroExtendWideningLower(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x1_t vextl_qu_du(uint64_t a) + /// LSX: VEXTL.QU.DU Vd.Q, Vj.D + /// + public static Vector128 ZeroExtendWideningLower(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vexth_h_b(int8x16_t a) + /// LSX: VEXTH.H.B Vd.8H, Vj.16B + /// + public static Vector128 SignExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vexth_w_h(int16x8_t a) + /// LSX: VEXTH.W.H Vd.4W, Vj.8H + /// + public static Vector128 SignExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vexth_d_w(int32x4_t a) + /// LSX: VEXTH.D.W Vd.2D, Vj.4W + /// + public static Vector128 SignExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int128x1_t vexth_d_w(int64x2_t a) + /// LSX: VEXTH.Q.D Vd.Q, Vj.2D + /// + public static Vector128 SignExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vexth_HU_BU(int8x16_t a) + /// LSX: VEXTH.HU.BU Vd.8H, Vj.16B + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vexth_HU_BU(uint8x16_t a) + /// LSX: VEXTH.HU.BU Vd.8H, Vj.16B + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vexth_WU_HU(int16x8_t a) + /// LSX: VEXTH.WU.HU Vd.4W, Vj.8H + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vexth_WU_HU(uint16x8_t a) + /// LSX: VEXTH.WU.HU Vd.4W, Vj.8H + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vexth_DU_WU(uint32x4_t a) + /// LSX: VEXTH.DU.WU Vd.2D, Vj.4W + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vexth_DU_WU(uint32x4_t a) + /// LSX: VEXTH.DU.WU Vd.2D, Vj.4W + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int128x1_t vexth_DU_WU(int64x2_t a) + /// LSX: VEXTH.QU.DU Vd.Q, Vj.2D + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint128x1_t vexth_DU_WU(uint64x2_t a) + /// LSX: VEXTH.QU.DU Vd.Q, Vj.2D + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vand_v(int8x16_t a, int8x16_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vand_v(uint8x16_t a, uint8x16_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vand_v(int16x8_t a, int16x8_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vand_v(uint16x8_t a, uint16x8_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vand_v(int32x4_t a, int32x4_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vand_v(uint32x4_t a, uint32x4_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vand_v(int64x2_t a, int64x2_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vand_v(uint64x2_t a, uint64x2_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vand_v(float32x4_t a, float32x4_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vand_v(float64x2_t a, float64x2_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vandn_v(int8x16_t a, int8x16_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vandn_v(uint8x16_t a, uint8x16_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vandn_v(int16x8_t a, int16x8_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vandn_v(uint16x8_t a, uint16x8_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vandn_v(int32x4_t a, int32x4_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vandn_v(uint32x4_t a, uint32x4_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vandn_v(int64x2_t a, int64x2_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vandn_v(uint64x2_t a, uint64x2_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vandn_v(float32x4_t a, float32x4_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vandn_v(float64x2_t a, float64x2_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vor(uint8x8_t a, uint8x8_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x1_t vor(float64x1_t a, float64x1_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vor(int16x4_t a, int16x4_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vor(int32x2_t a, int32x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x1_t vor(int64x1_t a, int64x1_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vor(int8x8_t a, int8x8_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x2_t vor(float32x2_t a, float32x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vor(uint16x4_t a, uint16x4_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vor(uint32x2_t a, uint32x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x1_t vor(uint64x1_t a, uint64x1_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vor_v(int8x16_t a, int8x16_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vor_v(uint8x16_t a, uint8x16_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vor_v(int16x8_t a, int16x8_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vor_v(uint16x8_t a, uint16x8_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vor_v(int32x4_t a, int32x4_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vor_v(uint32x4_t a, uint32x4_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vor_v(int64x2_t a, int64x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vor_v(uint64x2_t a, uint64x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vor_v(float32x4_t a, float32x4_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vor_v(float64x2_t a, float64x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vnori_b(uint8x8_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x1_t vnori_b(float64x1_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vnori_b(int16x4_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vnori_b(int32x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x1_t vnori_b(int64x1_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vnori_b(int8x8_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x2_t vnori_b(float32x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vnori_b(uint16x4_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vnori_b(uint32x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x1_t vnori_b(uint64x1_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vnori_b(uint8x16_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vnori_b(float64x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vnori_b(int16x8_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vnori_b(int32x4_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vnori_b(int64x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vnori_b(int8x16_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vnori_b(float32x4_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vnori_b(uint16x8_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vnori_b(uint32x4_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vnori_b(uint64x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// The above native signature does not exist. We provide this additional overload for consistency with the other scalar APIs. + /// + public static Vector128 Not(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vnor_v(int8x16_t a, int8x16_t b) + /// LSX: VNOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vnor_v(uint8x16_t a, uint8x16_t b) + /// LSX: VNOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vnor_v(int16x8_t a, int16x8_t b) + /// LSX: VNOR.V Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vnor_v(uint16x8_t a, uint16x8_t b) + /// LSX: VNOR.V Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vnor_v(int32x4_t a, int32x4_t b) + /// LSX: VNOR.V Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vnor_v(uint32x4_t a, uint32x4_t b) + /// LSX: VNOR.V Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vnor_v(int64x2_t a, int64x2_t b) + /// LSX: VNOR.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vnor_v(uint64x2_t a, uint64x2_t b) + /// LSX: VNOR.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vnor_v(float32x4_t a, float32x4_t b) + /// LSX: VNOR.V Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vnor_v(float64x2_t a, float64x2_t b) + /// LSX: VNOR.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vorn(uint8x8_t a, uint8x8_t b) + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x1_t vorn(float64x1_t a, float64x1_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vorn(int16x4_t a, int16x4_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vorn(int32x2_t a, int32x2_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x1_t vorn(int64x1_t a, int64x1_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vorn(int8x8_t a, int8x8_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x2_t vorn(float32x2_t a, float32x2_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vorn(uint16x4_t a, uint16x4_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vorn(uint32x2_t a, uint32x2_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x1_t vorn(uint64x1_t a, uint64x1_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vorn_v(int8x16_t a, int8x16_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vorn_v(uint8x16_t a, uint8x16_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vor_v(int16x8_t a, int16x8_t b) + /// LSX: VORN.V Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vor_v(uint16x8_t a, uint16x8_t b) + /// LSX: VORN.V Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vorn_v(int32x4_t a, int32x4_t b) + /// LSX: VORN.V Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vorn_v(uint32x4_t a, uint32x4_t b) + /// LSX: VORN.V Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vorn_v(int64x2_t a, int64x2_t b) + /// LSX: VORN.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vorn_v(uint64x2_t a, uint64x2_t b) + /// LSX: VORN.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vorn_v(float32x4_t a, float32x4_t b) + /// LSX: VORN.V Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vorn_v(float64x2_t a, float64x2_t b) + /// LSX: VORN.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vxor(uint8x8_t a, uint8x8_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x1_t vxor(float64x1_t a, float64x1_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vxor(int16x4_t a, int16x4_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vxor(int32x2_t a, int32x2_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x1_t vxor(int64x1_t a, int64x1_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vxor(int8x8_t a, int8x8_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x2_t vxor(float32x2_t a, float32x2_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vxor(uint16x4_t a, uint16x4_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vxor(uint32x2_t a, uint32x2_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x1_t vxor(uint64x1_t a, uint64x1_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vxor_v(int8x16_t a, int8x16_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vxor_v(uint8x16_t a, uint8x16_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vxor_v(int16x8_t a, int16x8_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vxor_v(uint16x8_t a, uint16x8_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vxor_v(int32x4_t a, int32x4_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vxor_v(uint32x4_t a, uint32x4_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vxor_v(int64x2_t a, int64x2_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vxor_v(uint64x2_t a, uint64x2_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vxor_v(float32x4_t a, float32x4_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vxor_v(float64x2_t a, float64x2_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vslli_b(int8x16_t a, const int n) + /// LSX: VSLLI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vslli_b(uint8x16_t a, const int n) + /// LSX: VSLLI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vslli_h(int16x8_t a, const int n) + /// LSX: VSLLI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vslli_h(uint16x8_t a, const int n) + /// LSX: VSLLI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vslli_w(uint32x4_t a, const int n) + /// LSX: VSLLI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vslli_w(uint32x4_t a, const int n) + /// LSX: VSLLI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vslli_d(int64x2_t a, const int n) + /// LSX: VSLLI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vslli_d(uint64x2_t a, const int n) + /// LSX: VSLLI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vbsll_v(int8x16_t a, const int shift) + /// LSX: VBSLL.V Vd.16B, Vj.16B, ui4 + /// + public static Vector128 ShiftLeftLogicalByByte(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vbsll_v(uint8x16_t a, const int shift) + /// LSX: VBSLL.V Vd.16B, Vj.16B, ui4 + /// + public static Vector128 ShiftLeftLogicalByByte(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsll_b(int8x16_t a, int8x16_t b) + /// LSX: VSLL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsll_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSLL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsll_h(int16x8_t value, int16x8_t shift) + /// LSX: VSLL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsll_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSLL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsll_w(int32x4_t value, int32x4_t shift) + /// LSX: VSLL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsll_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSLL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsll_d(int64x2_t value, int64x2_t shift) + /// LSX: VSLL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsll_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSLL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsrli_b(uint8x16_t a, const int n) + /// LSX: VSRLI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsrli_b(uint8x16_t a, const int n) + /// LSX: VSRLI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsrli_h(uint16x8_t a, const int n) + /// LSX: VSRLI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsrli_h(uint16x8_t a, const int n) + /// LSX: VSRLI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsrli_w(uint32x4_t a, const int n) + /// LSX: VSRLI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsrli_w(uint32x4_t a, const int n) + /// LSX: VSRLI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsrli_d(uint64x2_t a, const int n) + /// LSX: VSRLI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsrli_d(uint64x2_t a, const int n) + /// LSX: VSRLI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vbsrl_v(int8x16_t a, const int shift) + /// LSX: VBSRL.V Vd.16B, Vj.16B, ui4 + /// + public static Vector128 ShiftRightLogicalByByte(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vbsrl_v(uint8x16_t a, const int shift) + /// LSX: VBSRL.V Vd.16B, Vj.16B, ui4 + /// + public static Vector128 ShiftRightLogicalByByte(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsrl_b(int8x16_t a, int8x16_t b) + /// LSX: VSRL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsrl_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSRL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsrl_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsrl_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSRL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsrl_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsrl_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSRL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsrl_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsrl_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSRL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsrlri_b(uint8x16_t a, const int n) + /// LSX: VSRLRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsrlri_b(uint8x16_t a, const int n) + /// LSX: VSRLRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsrlri_h(uint16x8_t a, const int n) + /// LSX: VSRLRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsrlri_h(uint16x8_t a, const int n) + /// LSX: VSRLRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsrlri_w(uint32x4_t a, const int n) + /// LSX: VSRLRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsrlri_w(uint32x4_t a, const int n) + /// LSX: VSRLRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsrlri_d(uint64x2_t a, const int n) + /// LSX: VSRLRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsrlri_d(uint64x2_t a, const int n) + /// LSX: VSRLRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsrlr_b(int8x16_t a, int8x16_t b) + /// LSX: VSRLR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsrlr_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSRLR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsrlr_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRLR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsrlr_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSRLR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsrlr_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRLR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsrlr_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSRLR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsrlr_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRLR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsrlr_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSRLR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsrlrni_b_h(uint16x8_t left, uint16x8_t right, const int n) + /// LSX: VSRLRNI.B.H Vd, Vj, ui4 ///NOTE: The Vd is both input and output, so the left shoule be ref type!!! + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsrlrni_b_h(int16x8_t left, int16x8_t right, const int n) + /// LSX: VSRLRNI.B.H Vd, Vj, ui4 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsrlrni_h_w(int32x4_t left, int32x4_t right, const int n) + /// LSX: VSRLRNI.H.W Vd, Vj, ui5 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsrlrni_h_w(uint32x4_t left, uint32x4_t right, const int n) + /// LSX: VSRLRNI.H.W Vd, Vj, ui5 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsrlrni_w_d(int64x2_t left, int64x2_t right, const int n) + /// LSX: VSRLRNI.W.D Vd, Vj, ui6 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsrlrni_w_d(uint64x2_t left, uint64x2_t right, const int n) + /// LSX: VSRLRNI.W.D Vd, Vj, ui6 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x2_t vsrlrni_d_q(int128x1_t left, int128x1_t right, const int n) + ///// LSX: VSRLRNI.D.Q Vd, Vj, ui7 + ///// + //public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vsrlrn_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRLRN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vsrlrn_b_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSRLRN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vsrlrn_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRLRN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vsrlrn_h_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSRLRN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vsrlrn_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRLRN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vsrlrn_w_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSRLRN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsrai_b(int8x16_t a, const int n) + /// LSX: VSRAI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsrai_h(int16x8_t a, const int n) + /// LSX: VSRAI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsrai_w(int32x4_t a, const int n) + /// LSX: VSRAI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsrai_d(int64x2_t a, const int n) + /// LSX: VSRAI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsra_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSRA.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsra_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRA.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsra_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRA.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsra_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRA.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsrari_b(int8x16_t a, const int n) + /// LSX: VSRARI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsrari_h(int16x8_t a, const int n) + /// LSX: VSRARI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsrari_w(int32x4_t a, const int n) + /// LSX: VSRARI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsrari_d(int64x2_t a, const int n) + /// LSX: VSRARI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsrar_b(int8x16_t a, int8x16_t b) + /// LSX: VSRAR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsrar_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRAR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsrar_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRAR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsrar_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRAR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsrarni_b_h(int16x8_t left, int16x8_t right, const int n) + /// LSX: VSRARNI.B.H Vd, Vj, ui4 ///NOTE: The Vd is both input and output, so the left shoule be ref type!!! + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsrarni_h_w(int32x4_t left, int32x4_t right, const int n) + /// LSX: VSRARNI.H.W Vd, Vj, ui5 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsrarni_w_d(int64x2_t left, int64x2_t right, const int n) + /// LSX: VSRARNI.W.D Vd, Vj, ui6 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x2_t vsrarni_d_q(int128x1_t left, int128x1_t right, const int n) + ///// LSX: VSRARNI.D.Q Vd, Vj, ui7 + ///// + //public static Vector128 ShiftRightArithmeticRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vsrarn_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRARN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vsrarn_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRARN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vsrarn_h_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSRARN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vsrarn_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRARN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vrotri_b(uint8x16_t a, const int n) + /// LSX: VROTRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vrotri_b(uint8x16_t a, const int n) + /// LSX: VROTRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vrotri_h(uint16x8_t a, const int n) + /// LSX: VROTRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vrotri_h(uint16x8_t a, const int n) + /// LSX: VROTRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vrotri_w(uint32x4_t a, const int n) + /// LSX: VROTRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vrotri_w(uint32x4_t a, const int n) + /// LSX: VROTRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vrotri_d(uint64x2_t a, const int n) + /// LSX: VROTRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vrotri_d(uint64x2_t a, const int n) + /// LSX: VROTRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vrotr_b(int8x16_t a, int8x16_t b) + /// LSX: VROTR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vrotr_b(uint8x16_t a, uint8x16_t b) + /// LSX: VROTR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vrotr_h(int16x8_t value, int16x8_t shift) + /// LSX: VROTR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vrotr_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VROTR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vrotr_w(int32x4_t value, int32x4_t shift) + /// LSX: VROTR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vrotr_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VROTR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vrotr_d(int64x2_t value, int64x2_t shift) + /// LSX: VROTR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vrotr_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VROTR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsigncov_b(int8x16_t a) + /// LSX: VSIGNCOV.B Vd.16B, Vj.16B, Vj.16B + /// + public static Vector128 Abs(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsigncov_h(int16x8_t a) + /// LSX: VSIGNCOV.H Vd.8H, Vj.8H, Vj.8H + /// + public static Vector128 Abs(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsigncov_w(int32x4_t a) + /// LSX: VSIGNCOV.W Vd.4W, Vj.4W, Vj.4W + /// + public static Vector128 Abs(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsigncov_d(int64x2_t a) + /// LSX: VSIGNCOV.D Vd.2D, Vj.2D, Vj.2D + /// + public static Vector128 Abs(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vbitclri_w(float32x4_t a) + /// LSX: VBITCLRI.W Vd.4S, Vj.4S, 31 + /// + public static Vector128 Abs(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vbitclri_d(float64x2_t a) + /// LSX: VBITCLRI.D Vd.2D, Vj.2D, 63 + /// + public static Vector128 Abs(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfrintrm_s(float32x4_t a) + /// LSX: VFRINTRM.S Vd.4S, Vj.4S + /// + public static Vector128 Floor(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfrintrm_d(float64x2_t a) + /// LSX: VFRINTRM.D Vd.2D, Vj.2D + /// + public static Vector128 Floor(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfrintrp_s(float32x4_t a) + /// LSX: VFRINTRP.S Vd.4S, Vj.4S + /// + public static Vector128 Ceiling(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfrintrp_d(float64x2_t a) + /// LSX: VFRINTRP.D Vd.2D, Vj.2D + /// + public static Vector128 Ceiling(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfrintrz_s(float32x4_t a) + /// LSX: VFRINTRZ.S Vd.4S, Vj.4S + /// + public static Vector128 RoundToZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfrintrz_d(float64x2_t a) + /// LSX: VFRINTRZ.D Vd.2D, Vj.2D + /// + public static Vector128 RoundToZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfrintrm_s(float32x4_t a) + /// LSX: VFRINTRM.S Vd.4S, Vj.4S + /// + public static Vector128 RoundToNegativeInfinity(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfrintrm_d(float64x2_t a) + /// LSX: VFRINTRM.D Vd.2D, Vj.2D + /// + public static Vector128 RoundToNegativeInfinity(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vfrintrp_s(float32x4_t a) + /// LSX: VFRINTRP.S Vd.4S, Vj.4S + /// + public static Vector128 RoundToPositiveInfinity(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vfrintrp_d(float64x2_t a) + /// LSX: VFRINTRP.D Vd.2D, Vj.2D + /// + public static Vector128 RoundToPositiveInfinity(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vinsgr2vr_b(int8x16_t v, int8_t data, const int index) + /// LSX: VINSGR2VR.B Vd.B, Rj, ui4 + /// + public static Vector128 Insert(Vector128 vector, sbyte data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vinsgr2vr_b(uint8x16_t v, uint8_t data, const int index) + /// LSX: VINSGR2VR.B Vd.B, Rj, ui4 + /// + public static Vector128 Insert(Vector128 vector, byte data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vinsgr2vr_h(int16x8_t v, int16_t data, const int index) + /// LSX: VINSGR2VR.H Vd.H, Rj, ui3 + /// + public static Vector128 Insert(Vector128 vector, short data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vinsgr2vr_h(uint16x8_t v, uint16_t data, const int index) + /// LSX: VINSGR2VR.H Vd.H, Rj, ui3 + /// + public static Vector128 Insert(Vector128 vector, ushort data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vinsgr2vr_w(int32x4_t v, int32_t data, const int index) + /// LSX: VINSGR2VR.W Vd.S, Rj, ui2 + /// + public static Vector128 Insert(Vector128 vector, int data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vinsgr2vr_w(uint32x4_t v, uint32_t data, const int index) + /// LSX: VINSGR2VR.W Vd.S, Rj, ui2 + /// + public static Vector128 Insert(Vector128 vector, uint data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vinsgr2vr_d(int64x2_t v, int64_t data, const int index) + /// LSX: VINSGR2VR.D Vd.D, Rj, ui1 + /// + public static Vector128 Insert(Vector128 vector, long data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vinsgr2vr_d(uint64x2_t v, uint64_t data, const int index) + /// LSX: VINSGR2VR.D Vd.D, Rj, ui1 + /// + public static Vector128 Insert(Vector128 vector, ulong data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t xvinsve0_w(float32x4_t v, float32_t data, const int index) + /// LSX: VEXTRINS.W Vd.S, Vj.S, ui8 + /// + public static Vector128 Insert(Vector128 vector, float data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t xvinsve0_d(float64x2_t v, float64_t data, const int index) + /// LSX: VEXTRINS.D Vd.D, Vj.D, ui8 + /// + public static Vector128 Insert(Vector128 vector, double data, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vreplgr2vr_b(int8_t value) + /// LSX: VREPLGR2VR.B Vd.16B, Rj + /// + public static Vector128 DuplicateToVector128(sbyte value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vreplgr2vr_b(uint8_t value) + /// LSX: VREPLGR2VR.B Vd.16B, Rj + /// + public static Vector128 DuplicateToVector128(byte value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vreplgr2vr_h(int16_t value) + /// LSX: VREPLGR2VR.H Vd.8H, Rj + /// + public static Vector128 DuplicateToVector128(short value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vreplgr2vr_h(uint16_t value) + /// LSX: VREPLGR2VR.H Vd.8H, Rj + /// + public static Vector128 DuplicateToVector128(ushort value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vreplgr2vr_w(int32_t value) + /// LSX: VREPLGR2VR.W Vd.4W, Rj + /// + public static Vector128 DuplicateToVector128(int value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vreplgr2vr_w(uint32_t value) + /// LSX: VREPLGR2VR.W Vd.4W, Rj + /// + public static Vector128 DuplicateToVector128(uint value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vreplgr2vr_d(int64_t value) + /// LSX: VREPLGR2VR.D Vd.2D, Rj + /// + public static Vector128 DuplicateToVector128(long value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vreplgr2vr_d(uint64_t value) + /// LSX: VREPLGR2VR.D Vd.2D, Rj + /// + public static Vector128 DuplicateToVector128(ulong value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t xvreplve0_w(float32_t value) + /// LSX: XVREPLVE0.W Vd.4S, Vj.S[0] + /// + public static Vector128 DuplicateToVector128(float value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t xvreplve0_d(float64_t value) + /// LSX: XVREPLVE0.D Vd.2D, Vj.D[0] + /// + public static Vector128 DuplicateToVector128(double value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vffint_s_w(int32x4_t a) + /// LSX: VFFINT.S.W Vd.4S, Vj.4W + /// + public static Vector128 ConvertToSingle(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float32x4_t vffint_s_wu(uint32x4_t a) + /// LSX: VFFINT.S.WU Vd.4S, Vj.4W + /// + public static Vector128 ConvertToSingle(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vffint_d_l(int64x2_t a) + /// LSX: VFFINT.D.L Vd.2D, Vj.2D + /// + public static Vector128 ConvertToDouble(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// float64x2_t vffint_d_lu(uint64x2_t a) + /// LSX: VFFINT.D.LU Vd.2D, Vj.2D + /// + public static Vector128 ConvertToDouble(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8_t vfsrtpi_b(uint8x16_t value) + /// LSX: VFSRTPI.B Vd.16B, Vj.16B, 0 + /// + public static byte FirstNegativeInteger(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16_t vfsrtpi_h(uint16x8_t value) + /// LSX: VFSRTPI.H Vd.8H, Vj.8H, 0 + /// + public static ushort FirstNegativeInteger(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetnez_v(uint8x16_t value) + /// LSX: VSETNEZ.V cd, Vj.16B + /// + public static bool HasElementsNotZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vseteqz_v(uint8x16_t value) + /// LSX: VSETEQZ.V cd, Vj.16B + /// + public static bool AllElementsIsZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetallnez_b(int8x16_t value) + /// LSX: VSETALLNEZ.B cd, Vj.16B + /// + public static bool AllElementsNotZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetallnez_b(uint8x16_t value) + /// LSX: VSETALLNEZ.B cd, Vj.16B + /// + public static bool AllElementsNotZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetallnez_h(int16x8_t value) + /// LSX: VSETALLNEZ.H cd, Vj.8H + /// + public static bool AllElementsNotZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetallnez_h(uint16x8_t value) + /// LSX: VSETALLNEZ.H cd, Vj.8H + /// + public static bool AllElementsNotZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetallnez_w(int32x4_t value) + /// LSX: VSETALLNEZ.W cd, Vj.4W + /// + public static bool AllElementsNotZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetallnez_w(uint32x4_t value) + /// LSX: VSETALLNEZ.W cd, Vj.4W + /// + public static bool AllElementsNotZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetallnez_w(int64x2_t value) + /// LSX: VSETALLNEZ.D cd, Vj.2D + /// + public static bool AllElementsNotZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetallnez_w(uint64x2_t value) + /// LSX: VSETALLNEZ.D cd, Vj.2D + /// + public static bool AllElementsNotZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetanyeqz_b(int8x16_t value) + /// LSX: VSETANYEQZ.B cd, Vj.16B + /// + public static bool HasElementsIsZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetanyeqz_b(uint8x16_t value) + /// LSX: VSETANYEQZ.B cd, Vj.16B + /// + public static bool HasElementsIsZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetanyeqz_h(int16x8_t value) + /// LSX: VSETANYEQZ.H cd, Vj.8H + /// + public static bool HasElementsIsZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetanyeqz_h(uint16x8_t value) + /// LSX: VSETANYEQZ.H cd, Vj.8H + /// + public static bool HasElementsIsZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetanyeqz_w(int32x4_t value) + /// LSX: VSETANYEQZ.W cd, Vj.4W + /// + public static bool HasElementsIsZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetanyeqz_w(uint32x4_t value) + /// LSX: VSETANYEQZ.W cd, Vj.4W + /// + public static bool HasElementsIsZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetanyeqz_w(int64x2_t value) + /// LSX: VSETANYEQZ.D cd, Vj.2D + /// + public static bool HasElementsIsZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// bool vsetanyeqz_w(uint64x2_t value) + /// LSX: VSETANYEQZ.D cd, Vj.2D + /// + public static bool HasElementsIsZero(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsrlni_b_h(uint16x8_t left, uint16x8_t right, shift) + /// LSX: VSRLNI.B.H Vd, Vj, ui4 + /// + public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsrlni_h_w(int32x4_t left, int32x4_t right, shift) + /// LSX: VSRLNI.H.W Vd, Vj, ui5 + /// + public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsrlni_h_w(uint32x4_t left, uint32x4_t right, shift) + /// LSX: VSRLNI.H.W Vd, Vj, ui5 + /// + public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsrlni_w_d(int64x2_t left, int64x2_t right, shift) + /// LSX: VSRLNI.W.D Vd, Vj, ui6 + /// + public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsrlni_w_d(uint64x2_t left, uint64x2_t right, shift) + /// LSX: VSRLNI.W.D Vd, Vj, ui6 + /// + public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint64x2_t vsrlni_d_q(uint128x1_t left, uint128x1_t right, shift) + ///// LSX: VSRLNI.D.Q Vd.Q, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vsrln_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRLN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vsrln_b_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSRLN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vsrln_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRLN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vsrln_h_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSRLN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vsrln_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRLN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vsrln_w_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSRLN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vssrlni_b_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRLNI.B.H Vd.16B, Vj.8H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrlni_b_h(uint16x8_t left, uint16x8_t right, const byte n) + /// LSX: VSSRLNI.B.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vssrlni_h_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRLNI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrlni_h_w(uint32x4_t left, uint32x4_t right, const byte n) + /// LSX: VSSRLNI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vssrlni_w_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRLNI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vssrlni_w_d(uint64x2_t left, uint64x2_t right, const byte n) + /// LSX: VSSRLNI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x2_t vssrlni_d_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRLNI.D.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vssrln_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRLN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vssrln_b_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSSRLN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vssrln_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRLN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vssrln_h_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSSRLN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vssrln_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRLN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vssrln_w_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSSRLN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrlni_bu_h(uint16x8_t left, uint16x8_t right, const byte n) + /// LSX: VSSRLNI.BU.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrlni_hu_w(uint32x4_t left, uint32x4_t right, const byte n) + /// LSX: VSSRLNI.HU.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vssrlni_wu_d(uint64x2_t left, uint64x2_t right, const byte n) + /// LSX: VSSRLNI.WU.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint64x2_t vssrlni_du_q(uint128x1_t left, uint128x1_t right, const byte n) + ///// LSX: VSSRLNI.DU.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vssrln_bu_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSSRLN.BU.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vssrln_hu_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSSRLN.HU.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vssrln_wu_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSSRLN.WU.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vssran_b_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRANI.B.H Vd.16B, Vj.8H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vssran_h_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRANI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vssran_w_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRANI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x2_t vssran_d_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRANI.D.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightArithmeticNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vssran_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRAN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vssran_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRAN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vssran_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRAN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrani_bu_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRANI.BU.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrani_hu_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRANI.HU.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vssrani_wu_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRANI.WU.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint64x2_t vssrani_du_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRANI.DU.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vssran_bu_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRAN.BU.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vssran_hu_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRAN.HU.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vssran_wu_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRAN.WU.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vssrlrni_b_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRLRNI.B.H Vd.16B, Vj.8H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrlrni_b_h(uint16x8_t left, uint16x8_t right, const byte n) + /// LSX: VSSRLRNI.B.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vssrlrni_h_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRLRNI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrlrni_h_w(uint32x4_t left, uint32x4_t right, const byte n) + /// LSX: VSSRLRNI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vssrlrni_w_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRLRNI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vssrlrni_w_d(uint64x2_t left, uint64x2_t right, const byte n) + /// LSX: VSSRLRNI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x2_t vssrlrni_d_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRLRNI.D.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vssrlrn_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRLRN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vssrlrn_b_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSSRLRN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vssrlrn_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRLRN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vssrlrn_h_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSSRLRN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vssrlrn_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRLRN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vssrlrn_w_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSSRLRN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrlrni_bu_h(uint16x8_t left, uint16x8_t right, const byte n) + /// LSX: VSSRLRNI.BU.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrlrni_hu_w(uint32x4_t left, uint32x4_t right, const byte n) + /// LSX: VSSRLRNI.HU.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vssrlrni_wu_d(uint64x2_t left, uint64x2_t right, const byte n) + /// LSX: VSSRLRNI.WU.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint64x2_t vssrlrni_du_q(uint128x1_t left, uint128x1_t right, const byte n) + ///// LSX: VSSRLRNI.DU.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vssrlrn_bu_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSSRLRN.BU.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vssrlrn_hu_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSSRLRN.HU.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vssrlrn_wu_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSSRLRN.WU.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vssrarn_b_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRARNI.B.H Vd.16B, Vj.8H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vssrarn_h_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRARNI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vssrarn_w_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRARNI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// int64x2_t vssrarn_d_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRARNI.D.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vssrarn_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRARN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vssrarn_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRARN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vssrarn_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRARN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrarni_bu_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRARNI.BU.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vssrarni_hu_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRARNI.HU.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vssrarni_wu_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRARNI.WU.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) { throw new PlatformNotSupportedException(); } + + ///// + ///// uint64x2_t vssrarni_du_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRARNI.DU.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vssrarn_bu_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRARN.BU.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vssrarn_hu_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRARN.HU.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vssrarn_wu_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRARN.WU.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vclo_b(int8x8_t a) + /// LSX: VCLO.B Vd.8B, Vj.8B + /// + public static Vector64 LeadingSignCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vclo_h(int16x4_t a) + /// LSX: VCLO.H Vd.4H, Vj.4H + /// + public static Vector64 LeadingSignCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vclo_w(int32x2_t a) + /// LSX: VCLO.W Vd.2W, Vj.2W + /// + public static Vector64 LeadingSignCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x1_t vclo_d(int64x1_t a) + /// LSX: VCLO.D Vd.D, Vj.D + /// + public static Vector64 LeadingSignCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vclo_b(int8x16_t a) + /// LSX: VCLO.B Vd.16B, Vj.16B + /// + public static Vector128 LeadingSignCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vclo_h(int16x8_t a) + /// LSX: VCLO.H Vd.8H, Vj.8H + /// + public static Vector128 LeadingSignCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vclo_w(int32x4_t a) + /// LSX: VCLO.W Vd.4W, Vj.4W + /// + public static Vector128 LeadingSignCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vclo_d(int64x2_t a) + /// LSX: VCLO.D Vd.2D, Vj.2D + /// + public static Vector128 LeadingSignCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x8_t vclz_b(uint8x8_t a) + /// LSX: VCLZ.B Vd.8B, Vj.8B + /// + public static Vector64 LeadingZeroCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x8_t vclz_b(int8x8_t a) + /// LSX: VCLZ.B Vd.8B, Vj.8B + /// + public static Vector64 LeadingZeroCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x4_t vclz_h(int16x4_t a) + /// LSX: VCLZ.H Vd.4H, Vj.4H + /// + public static Vector64 LeadingZeroCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x4_t vclz_h(uint16x4_t a) + /// LSX: VCLZ.H Vd.4H, Vj.4H + /// + public static Vector64 LeadingZeroCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x2_t vclz_w(int32x2_t a) + /// LSX: VCLZ.W Vd.2W, Vj.2W + /// + public static Vector64 LeadingZeroCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x2_t vclz_w(uint32x2_t a) + /// LSX: VCLZ.W Vd.2W, Vj.2W + /// + public static Vector64 LeadingZeroCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x1_t vclz_d(int64x1_t a) + /// LSX: VCLZ.D Vd.D, Vj.D + /// + public static Vector64 LeadingZeroCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x1_t vclz_d(uint64x1_t a) + /// LSX: VCLZ.D Vd.D, Vj.D + /// + public static Vector64 LeadingZeroCount(Vector64 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vclz_b(int8x16_t a) + /// LSX: VCLZ.B Vd.16B, Vj.16B + /// + public static Vector128 LeadingZeroCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vclz_b(uint8x16_t a) + /// LSX: VCLZ.B Vd.16B, Vj.16B + /// + public static Vector128 LeadingZeroCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vclz_h(int16x8_t a) + /// LSX: VCLZ.H Vd.8H, Vj.8H + /// + public static Vector128 LeadingZeroCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vclz_h(uint16x8_t a) + /// LSX: VCLZ.H Vd.8H, Vj.8H + /// + public static Vector128 LeadingZeroCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vclz_w(int32x4_t a) + /// LSX: VCLZ.W Vd.4W, Vj.4W + /// + public static Vector128 LeadingZeroCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vclz_w(uint32x4_t a) + /// LSX: VCLZ.W Vd.4W, Vj.4W + /// + public static Vector128 LeadingZeroCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vclz_d(int64x2_t a) + /// LSX: VCLZ.D Vd.2D, Vj.2D + /// + public static Vector128 LeadingZeroCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vclz_d(uint64x2_t a) + /// LSX: VCLZ.D Vd.2D, Vj.2D + /// + public static Vector128 LeadingZeroCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vpcnt_b(int8x16_t a) + /// LSX: VPCNT_B Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vpcnt_b(uint8x16_t a) + /// LSX: VPCNT_B Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vpcnt_h(int16x8_t a) + /// LSX: VPCNT_H Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vpcnt_h(uint16x8_t a) + /// LSX: VPCNT_H Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vpcnt_w(int32x4_t a) + /// LSX: VPCNT_W Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vpcnt_w(uint32x4_t a) + /// LSX: VPCNT_W Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vpcnt_d(int64x2_t a) + /// LSX: VPCNT_D Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vpcnt_d(uint64x2_t a) + /// LSX: VPCNT_D Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vshuf_b(uint8x16_t vec, uint8x16_t idx) + /// LSX: VSHUF.B Vd.16B, Vj.16B, Vk.16B, Va.16B + /// + public static Vector128 VectorShuffle(Vector128 vector, Vector128 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vshuf_b(int8x16_t vec, int8x16_t idx) + /// LSX: VSHUF.B Vd.16B, Vj.16B, Vk.16B, Va.16B + /// + public static Vector128 VectorShuffle(Vector128 vector, Vector128 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vshuf_b(uint8x16_t vec0, uint8x16_t vec1, uint8x16_t idx) + /// LSX: VSHUF.B Vd.16B, Vj.16B, Vk.16B, Va.16B + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vshuf_b(int8x16_t vec0, int8x16_t vec1, int8x16_t idx) + /// LSX: VSHUF.B Vd.16B, Vj.16B, Vk.16B, Va.16B + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vshuf_h(int16x8_t vec0, int16x8_t vec1, int16x8_t idx) + /// LSX: VSHUF.H Vd.8H, Vj.8H, Vk.8H //NOTE: Vd is both input and output while input as index. + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vshuf_h(uint16x8_t vecj, uint16x8_t veck, uint16x8_t idx) + /// LSX: VSHUF.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vpermi_w(int32x4_t vec, uint8_t idx) + /// LSX: VPERMI.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 VectorShuffle(Vector128 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vpermi_w(uint32x4_t vec, uint8_t idx) + /// LSX: VPERMI.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 VectorShuffle(Vector128 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vshuf_w(int32x4_t vec0, int32x4_t vec1, int32x4_t idx) + /// LSX: VSHUF.W Vd.4W, Vj.4W, Vk.4W //NOTE: Vd is both input and output while input as index. + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vshuf_w(uint32x4_t vecj, uint32x4_t veck, uint32x4_t idx) + /// LSX: VSHUF.W Vd.4W, Vj.4W, Vk.4W //NOTE: Vd is both input and output while input as index. + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vshuf_d(int64x2_t vec0, int64x2_t vec1, int64x2_t idx) + /// LSX: VSHUF.D Vd.2D, Vj.2D, Vk.2D //NOTE: Vd is both input and output while input as index. + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vshuf_d(uint64x2_t vecj, uint64x2_t veck, uint64x2_t idx) + /// LSX: VSHUF.D Vd.2D, Vj.2D, Vk.2D //NOTE: Vd is both input and output while input as index. + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vshuf4i_b(int8x16_t vec, uint8_t idx) + /// LSX: VSHUF4I.B Vd.16B, Vj.16B, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vshuf4i_b(uint8x16_t vec, uint8_t idx) + /// LSX: VSHUF4I.B Vd.16B, Vj.16B, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vshuf4i_h(int16x8_t vec, uint8_t idx) + /// LSX: VSHUF4I.H Vd.8H, Vj.8H, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vshuf4i_h(uint16x8_t vec, uint8_t idx) + /// LSX: VSHUF4I.H Vd.8H, Vj.8H, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vshuf4i_w(int32x4_t vec, uint8_t idx) + /// LSX: VSHUF4I.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vshuf4i_w(uint32x4_t vec, uint8_t idx) + /// LSX: VSHUF4I.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vshuf4i_d(int64x2_t vec0, uint64x2_t vec1, uint8_t idx) + /// LSX: VSHUF4I.D Vd.2D, Vj.2D, ui4 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector0, Vector128 vector1, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vshuf4i_d(uint64x2_t vec0, uint64x2_t vec1, uint8_t idx) + /// LSX: VSHUF4I.D Vd.2D, Vj.2D, ui4 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector0, Vector128 vector1, byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vilvl_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VILVL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vilvl_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VILVL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vilvl_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VILVL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vilvl_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VILVL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vilvl_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VILVL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vilvl_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VILVL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vilvl_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VILVL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vilvl_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VILVL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vilvh_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VILVH.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vilvh_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VILVH.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vilvh_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VILVH.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vilvh_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VILVH.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vilvh_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VILVH.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vilvh_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VILVH.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vilvh_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VILVH.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vilvh_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VILVH.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vpackev_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VPACKEV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vpackev_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VPACKEV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vpackev_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VPACKEV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vpackev_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VPACKEV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vpackev_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VPACKEV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vpackev_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VPACKEV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vpackev_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VPACKEV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vpackev_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VPACKEV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vpackod_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VPACKOD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vpackod_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VPACKOD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vpackod_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VPACKOD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vpackod_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VPACKOD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vpackod_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VPACKOD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vpackod_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VPACKOD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vpackod_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VPACKOD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vpackod_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VPACKOD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vpickev_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VPICKEV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vpickev_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VPICKEV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vpickev_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VPICKEV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vpickev_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VPICKEV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vpickev_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VPICKEV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vpickev_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VPICKEV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vpickev_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VPICKEV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vpickev_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VPICKEV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vpickod_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VPICKOD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vpickod_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VPICKOD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vpickod_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VPICKOD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vpickod_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VPICKOD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vpickod_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VPICKOD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vpickod_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VPICKOD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vpickod_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VPICKOD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vpickod_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VPICKOD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vreplve_b(uint8x16_t vector, uint8_t idx) + /// LSX: VREPLVE.B Vd.16B, Vj.16B, rk + /// LSX: VREPLVEI.B Vd.16B, Vj.16B, ui4 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vreplve_b(int8x16_t vector, uint8_t idx) + /// LSX: VREPLVE.B Vd.16B, Vj.16B, rk + /// LSX: VREPLVEI.B Vd.16B, Vj.16B, ui4 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vreplve_h(int16x8_t vector, uint8_t idx) + /// LSX: VREPLVE.H Vd.8H, Vj.8H, rk + /// LSX: VREPLVEI.H Vd.8H, Vj.8H, ui3 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vreplve_h(uint16x8_t vector, uint8_t idx) + /// LSX: VREPLVE.H Vd.8H, Vj.8H, rk + /// LSX: VREPLVEI.H Vd.8H, Vj.8H, ui3 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vreplve_w(int32x4_t vector, uint8_t idx) + /// LSX: VREPLVE.W Vd.4W, Vj.4W, rk + /// LSX: VREPLVEI.W Vd.4W, Vj.4W, ui2 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vreplve_w(uint32x4_t vector, uint8_t idx) + /// LSX: VREPLVE.W Vd.4W, Vj.4W, rk + /// LSX: VREPLVEI.W Vd.4W, Vj.4W, ui2 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vreplve_d(int64x2_t vector, uint8_t idx) + /// LSX: VREPLVE.D Vd.2D, Vj.2D, rk + /// LSX: VREPLVEI.D Vd.2D, Vj.2D, ui1 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vreplve_d(uint64x2_t vector, uint8_t idx) + /// LSX: VREPLVE.D Vd.2D, Vj.2D, rk + /// LSX: VREPLVEI.D Vd.2D, Vj.2D, ui1 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vextrins_b(int8x16_t vec, uint8_t idx) + /// LSX: VEXTRINS.B Vd.16B, Vj.16B, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vextrins_b(uint8x16_t vec, uint8_t idx) + /// LSX: VEXTRINS.B Vd.16B, Vj.16B, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vextrins_h(int16x8_t vec, uint8_t idx) + /// LSX: VEXTRINS.H Vd.8H, Vj.8H, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vextrins_h(uint16x8_t vec, uint8_t idx) + /// LSX: VEXTRINS.H Vd.8H, Vj.8H, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vextrins_w(int32x4_t vec, uint8_t idx) + /// LSX: VEXTRINS.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vextrins_w(uint32x4_t vec, uint8_t idx) + /// LSX: VEXTRINS.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vextrins_d(int64x2_t vec, uint8_t idx) + /// LSX: VEXTRINS.D Vd.2D, Vj.2D, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vextrins_d(uint64x2_t vec, uint8_t idx) + /// LSX: VEXTRINS.D Vd.2D, Vj.2D, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsigncov_b(int8x16_t sign, int8x16_t data) + /// LSX: VSIGNCOV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementNegatedBySign(Vector128 sign, Vector128 data) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsigncov_h(int16x8_t sign, int16x8_t data) + /// LSX: VSIGNCOV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementNegatedBySign(Vector128 sign, Vector128 data) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsigncov_w(int32x4_t sign, int32x4_t data) + /// LSX: VSIGNCOV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementNegatedBySign(Vector128 sign, Vector128 data) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsigncov_d(int64x2_t sign, int64x2_t data) + /// LSX: VSIGNCOV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementNegatedBySign(Vector128 sign, Vector128 data) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vbitclri_b(int8x16_t a, const int n) + /// LSX: VBITCLRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vbitclri_b(uint8x16_t a, const int n) + /// LSX: VBITCLRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vbitclri_h(int16x8_t a, const int n) + /// LSX: VBITCLRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vbitclri_h(uint16x8_t a, const int n) + /// LSX: VBITCLRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vbitclri_w(uint32x4_t a, const int n) + /// LSX: VBITCLRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vbitclri_w(uint32x4_t a, const int n) + /// LSX: VBITCLRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vbitclri_d(int64x2_t a, const int n) + /// LSX: VBITCLRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vbitclri_d(uint64x2_t a, const int n) + /// LSX: VBITCLRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vbitclr_b(int8x16_t a, int8x16_t b) + /// LSX: VBITCLR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vbitclr_b(uint8x16_t a, uint8x16_t b) + /// LSX: VBITCLR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vbitclr_h(int16x8_t value, int16x8_t index) + /// LSX: VBITCLR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vbitclr_h(uint16x8_t value, uint16x8_t index) + /// LSX: VBITCLR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vbitclr_w(int32x4_t value, int32x4_t index) + /// LSX: VBITCLR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vbitclr_w(uint32x4_t value, uint32x4_t index) + /// LSX: VBITCLR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vbitclr_d(int64x2_t value, int64x2_t index) + /// LSX: VBITCLR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vbitclr_d(uint64x2_t value, uint64x2_t index) + /// LSX: VBITCLR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vbitseti_b(int8x16_t a, const int n) + /// LSX: VBITSETI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vbitseti_b(uint8x16_t a, const int n) + /// LSX: VBITSETI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vbitseti_h(int16x8_t a, const int n) + /// LSX: VBITSETI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vbitseti_h(uint16x8_t a, const int n) + /// LSX: VBITSETI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vbitseti_w(uint32x4_t a, const int n) + /// LSX: VBITSETI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vbitseti_w(uint32x4_t a, const int n) + /// LSX: VBITSETI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vbitseti_d(int64x2_t a, const int n) + /// LSX: VBITSETI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vbitseti_d(uint64x2_t a, const int n) + /// LSX: VBITSETI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vbitset_b(int8x16_t a, int8x16_t b) + /// LSX: VBITSET.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vbitset_b(uint8x16_t a, uint8x16_t b) + /// LSX: VBITSET.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vbitset_h(int16x8_t value, int16x8_t index) + /// LSX: VBITSET.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vbitset_h(uint16x8_t value, uint16x8_t index) + /// LSX: VBITSET.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vbitset_w(int32x4_t value, int32x4_t index) + /// LSX: VBITSET.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vbitset_w(uint32x4_t value, uint32x4_t index) + /// LSX: VBITSET.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vbitset_d(int64x2_t value, int64x2_t index) + /// LSX: VBITSET.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vbitset_d(uint64x2_t value, uint64x2_t index) + /// LSX: VBITSET.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vbitrevi_b(int8x16_t a, const int n) + /// LSX: VBITREVI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vbitrevi_b(uint8x16_t a, const int n) + /// LSX: VBITREVI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vbitrevi_h(int16x8_t a, const int n) + /// LSX: VBITREVI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vbitrevi_h(uint16x8_t a, const int n) + /// LSX: VBITREVI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vbitrevi_w(uint32x4_t a, const int n) + /// LSX: VBITREVI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vbitrevi_w(uint32x4_t a, const int n) + /// LSX: VBITREVI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vbitrevi_d(int64x2_t a, const int n) + /// LSX: VBITREVI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vbitrevi_d(uint64x2_t a, const int n) + /// LSX: VBITREVI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vbitrev_b(int8x16_t a, int8x16_t b) + /// LSX: VBITREV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vbitrev_b(uint8x16_t a, uint8x16_t b) + /// LSX: VBITREV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vbitrev_h(int16x8_t value, int16x8_t index) + /// LSX: VBITREV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vbitrev_h(uint16x8_t value, uint16x8_t index) + /// LSX: VBITREV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vbitrev_w(int32x4_t value, int32x4_t index) + /// LSX: VBITREV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vbitrev_w(uint32x4_t value, uint32x4_t index) + /// LSX: VBITREV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vbitrev_d(int64x2_t value, int64x2_t index) + /// LSX: VBITREV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vbitrev_d(uint64x2_t value, uint64x2_t index) + /// LSX: VBITREV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vfrstp_b(int8x16_t value, int8x16_t save) + /// LSX: VFRSTP.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 IndexOfFirstNegativeElement(Vector128 value, Vector128 save) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vfrstp_h(int16x8_t value, int16x8_t save) + /// LSX: VFRSTP.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 IndexOfFirstNegativeElement(Vector128 value, Vector128 save) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vfrstpi_b(int8x16_t value, uint8_t save) + /// LSX: VFRSTPI.B Vd.16B, Vj.16B, ui4 + /// + public static Vector128 IndexOfFirstNegativeElement(Vector128 value, const byte save) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vfrstpi_h(int16x8_t value, uint8_t save) + /// LSX: VFRSTPI.H Vd.8H, Vj.8H, ui3 + /// + public static Vector128 IndexOfFirstNegativeElement(Vector128 value, const byte save) { throw new PlatformNotSupportedException(); } + + /// + /// int8x16_t vsat_b(int8x16_t value, uint8_t ui3) + /// LSX: VSAT.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorSaturate(Vector128 value, [ConstantExpected(Max = (byte)(7))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// int16x8_t vsat_h(int16x8_t value, uint8_t ui4) + /// LSX: VSAT.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorSaturate(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vsat_w(int32x4_t value, uint8_t ui5) + /// LSX: VSAT.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorSaturate(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vsat_d(int64x2_t value, uint8_t ui6) + /// LSX: VSAT.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorSaturate(Vector128 value, [ConstantExpected(Max = (byte)(63))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// uint8x16_t vsat_bu(uint8x16_t value, uint8_t ui3) + /// LSX: VSAT.BU Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorSaturateUnsigned(Vector128 value, [ConstantExpected(Max = (byte)(7))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// uint16x8_t vsat_hu(uint16x8_t value, uint8_t ui4) + /// LSX: VSAT.HU Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorSaturateUnsigned(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// uint32x4_t vsat_wu(uint32x4_t value, uint8_t ui5) + /// LSX: VSAT.WU Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorSaturateUnsigned(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// uint64x2_t vsat_du(uint64x2_t value, uint8_t ui6) + /// LSX: VSAT.DU Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorSaturateUnsigned(Vector128 value, [ConstantExpected(Max = (byte)(63))] byte bits) { throw new PlatformNotSupportedException(); } + + /// + /// int32x4_t vfclass_s(float32x4_t a) + /// LSX: VFCLASS.S Vd.4S, Vj.4S + /// + public static Vector128 FloatClass(Vector128 value) { throw new PlatformNotSupportedException(); } + + /// + /// int64x2_t vfclass_d(float64x2_t a) + /// LSX: VFCLASS.D Vd.2D, Vj.2D + /// + public static Vector128 FloatClass(Vector128 value) { throw new PlatformNotSupportedException(); } + } +} diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lsx.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lsx.cs new file mode 100644 index 00000000000000..5d6595af3a391d --- /dev/null +++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/LoongArch/Lsx.cs @@ -0,0 +1,5937 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Runtime.CompilerServices; + +namespace System.Runtime.Intrinsics.LoongArch +{ + /// + /// This class provides access to the LSX-128bits hardware instructions via intrinsics + /// + [Intrinsic] + [CLSCompliant(false)] + public abstract class Lsx : LoongArchBase + { + internal Lsx() { } + + public static new bool IsSupported { get => IsSupported; } + + /// + /// int8x8_t vadd_b(int8x8_t a, int8x8_t b) + /// LSX: VADD.B Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Add(Vector64 left, Vector64 right) => Add(left, right); + + /// + /// uint8x8_t vadd_b(uint8x8_t a, uint8x8_t b) + /// LSX: VADD.B Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Add(Vector64 left, Vector64 right) => Add(left, right); + + /// + /// int16x4_t vadd_h(int16x4_t a, int16x4_t b) + /// LSX: VADD.H Vd.4H, Vj.4H, Vk.4H + /// + public static Vector64 Add(Vector64 left, Vector64 right) => Add(left, right); + + /// + /// uint16x4_t vadd_h(uint16x4_t a, uint16x4_t b) + /// LSX: VADD.H Vd.4H, Vj.4H, Vk.4H + /// + public static Vector64 Add(Vector64 left, Vector64 right) => Add(left, right); + + /// + /// int32x2_t vadd_w(int32x2_t a, int32x2_t b) + /// LSX: VADD.W Vd.2W, Vj.2W, Vk.2W + /// + public static Vector64 Add(Vector64 left, Vector64 right) => Add(left, right); + + /// + /// uint32x2_t vadd_w(uint32x2_t a, uint32x2_t b) + /// LSX: VADD.W Vd.2W, Vj.2W, Vk.2W + /// + public static Vector64 Add(Vector64 left, Vector64 right) => Add(left, right); + + /// + /// int64x1_t vadd_d(int64x1_t a, int64x1_t b) + /// LSX: VADD.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Add(Vector64 left, Vector64 right) => Add(left, right); + + /// + /// uint64x1_t vadd_d(uint64x1_t a, uint64x1_t b) + /// LSX: VADD.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Add(Vector64 left, Vector64 right) => Add(left, right); + + /// + /// float32x2_t vfadd_s(float32x2_t a, float32x2_t b) + /// LSX: VFADD.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector64 Add(Vector64 left, Vector64 right) => Add(left, right); + + /// + /// float64x1_t vfadd_d(float64x1_t a, float64x1_t b) + /// LSX: VFADD.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Add(Vector64 left, Vector64 right) => Add(left, right); + + /// + /// int8x16_t vadd_b(int8x16_t a, int8x16_t b) + /// LSX: VADD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Add(Vector128 left, Vector128 right) => Add(left, right); + + /// + /// uint8x16_t vadd_b(uint8x16_t a, uint8x16_t b) + /// LSX: VADD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Add(Vector128 left, Vector128 right) => Add(left, right); + + /// + /// int16x8_t vadd_h(int16x8_t a, int16x8_t b) + /// LSX: VADD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Add(Vector128 left, Vector128 right) => Add(left, right); + + /// + /// uint16x8_t vadd_h(uint16x8_t a, uint16x8_t b) + /// LSX: VADD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Add(Vector128 left, Vector128 right) => Add(left, right); + + /// + /// int32x4_t vadd_w(int32x4_t a, int32x4_t b) + /// LSX: VADD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Add(Vector128 left, Vector128 right) => Add(left, right); + + /// + /// uint32x4_t vadd_w(uint32x4_t a, uint32x4_t b) + /// LSX: VADD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Add(Vector128 left, Vector128 right) => Add(left, right); + + /// + /// int64x2_t vadd_d(int64x2_t a, int64x2_t b) + /// LSX: VADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Add(Vector128 left, Vector128 right) => Add(left, right); + + /// + /// uint64x2_t vadd_d(uint64x2_t a, uint64x2_t b) + /// LSX: VADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Add(Vector128 left, Vector128 right) => Add(left, right); + + /// + /// float32x4_t vfadd_s(float32x4_t a, float32x4_t b) + /// LSX: VFADD.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Add(Vector128 left, Vector128 right) => Add(left, right); + + /// + /// float64x2_t vfadd_d(float64x2_t a, float64x2_t b) + /// LSX: VFADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Add(Vector128 left, Vector128 right) => Add(left, right); + + /// + /// int8x8_t vsadd_b(int8x8_t a, uint8x8_t b) + /// LSX: VSADD.B Vd.8B, Vj.8B + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) => AddSaturate(left, right); + + /// + /// uint8x8_t vsadd_bu(uint8x8_t a, int8x8_t b) + /// LSX: VSADD.BU Vd.8B, Vj.8B + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) => AddSaturate(left, right); + + /// + /// int16x4_t vsadd_h(int16x4_t a, uint16x4_t b) + /// LSX: VSADD.H Vd.4H, Vj.4H + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) => AddSaturate(left, right); + + /// + /// uint16x4_t vsadd_hu(uint16x4_t a, int16x4_t b) + /// LSX: VSADD.HU Vd.4H, Vj.4H + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) => AddSaturate(left, right); + + /// + /// int32x2_t vsadd_w(int32x2_t a, uint32x2_t b) + /// LSX: VSADD.W Vd.2W, Vj.2W + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) => AddSaturate(left, right); + + /// + /// uint32x2_t vsadd_wu(uint32x2_t a, int32x2_t b) + /// LSX: VSADD.WU Vd.2W, Vj.2W + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) => AddSaturate(left, right); + + /// + /// int64x1_t vsadd_d(int64x1_t a, uint64x1_t b) + /// LSX: VSADD.D Vd.D, Vj.D + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) => AddSaturate(left, right); + + /// + /// uint64x1_t vsadd_du(uint64x1_t a, int64x1_t b) + /// LSX: VSADD.DU Vd.D, Vj.D + /// + public static Vector64 AddSaturate(Vector64 left, Vector64 right) => AddSaturate(left, right); + + /// + /// int8x16_t vsadd_b(int8x16_t a, int8x16_t b) + /// LSX: VSADD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) => AddSaturate(left, right); + + /// + /// int16x8_t vsadd_h(int16x8_t a, int16x8_t b) + /// LSX: VSADD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) => AddSaturate(left, right); + + /// + /// int32x4_t vsadd_w(int32x4_t a, int32x4_t b) + /// LSX: VSADD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) => AddSaturate(left, right); + + /// + /// int64x2_t vsadd_d(int64x2_t a, int64x2_t b) + /// LSX: VSADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) => AddSaturate(left, right); + + /// + /// uint8x16_t vsadd_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSADD.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) => AddSaturate(left, right); + + /// + /// uint16x8_t vsadd_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSADD.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) => AddSaturate(left, right); + + /// + /// uint32x4_t vsadd_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSADD.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) => AddSaturate(left, right); + + /// + /// uint64x2_t vsadd_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSADD.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 AddSaturate(Vector128 left, Vector128 right) => AddSaturate(left, right); + + /// + /// int16x8_t vhaddw_h_b(int8x16_t a, int8x16_t b) + /// LSX: VHADDW.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) => AddOddEvenElementsWidening(left, right); + + /// + /// uint16x8_t vhaddw_hu_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VHADDW.HU.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) => AddOddEvenElementsWidening(left, right); + + /// + /// int32x4_t vhaddw_w_h(int16x8_t a, int16x8_t b) + /// LSX: VHADDW.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) => AddOddEvenElementsWidening(left, right); + + /// + /// uint32x4_t vhaddw_wu_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VHADDW.WU.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) => AddOddEvenElementsWidening(left, right); + + /// + /// int64x2_t vhaddw_d_w(int32x4_t a, int32x4_t b) + /// LSX: VHADDW.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) => AddOddEvenElementsWidening(left, right); + + /// + /// uint64x2_t vhaddw_du_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VHADDW.DU.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) => AddOddEvenElementsWidening(left, right); + + /// + /// int128x1_t vhaddw_q_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VHADDW.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) => AddOddEvenElementsWidening(left, right); + + /// + /// uint128x1_t vhaddw_qu_du(uint64x2_t a, uint64x2_t b) + /// LSX: VHADDW.QU.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddOddEvenElementsWidening(Vector128 left, Vector128 right) => AddOddEvenElementsWidening(left, right); + + /// + /// int16x8_t vaddwev_h_b(int8x16_t a, int8x16_t b) + /// LSX: VADDWEV.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// uint16x8_t vaddwev_h_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VADDWEV.H.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// int32x4_t vaddwev_w_h(int16x8_t a, int16x8_t b) + /// LSX: VADDWEV.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// uint32x4_t vaddwev_w_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VADDWEV.W.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// int64x2_t vaddwev_d_w(int32x4_t a, int32x4_t b) + /// LSX: VADDWEV.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// uint64x2_t vaddwev_d_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VADDWEV.D.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// int128x1_t vaddwev_q_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VADDWEV.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// uint128x1_t vaddwev_q_du(uint64x2_t a, uint64x2_t b) + /// LSX: VADDWEV.Q.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// int16x8_t vaddwod_h_b(int8x16_t a, int8x16_t b) + /// LSX: VADDWOD.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// uint16x8_t vaddwod_h_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VADDWOD.H.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// int32x4_t vaddwod_w_h(int16x8_t a, int16x8_t b) + /// LSX: VADDWOD.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// uint32x4_t vaddwod_w_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VADDWOD.W.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// int64x2_t vaddwod_d_w(int32x4_t a, int32x4_t b) + /// LSX: VADDWOD.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// uint64x2_t vaddwod_d_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VADDWOD.D.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// int128x1_t vaddwod_q_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VADDWOD.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// uint128x1_t vaddwod_q_du(uint64x2_t a, uint64x2_t b) + /// LSX: VADDWOD.Q.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// int16x8_t vaddwev_h_bu_b(int8x16_t a, int8x16_t b) + /// LSX: VADDWEV.H.BU.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// int32x4_t vaddwev_w_hu_h(int16x8_t a, int16x8_t b) + /// LSX: VADDWEV.W.HU.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// int64x2_t vaddwev_d_wu_w(int32x4_t a, int32x4_t b) + /// LSX: VADDWEV.D.WU.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// int128x1_t vaddwev_q_du_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VADDWEV.Q.DU.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddEvenElementsWidening(Vector128 left, Vector128 right) => AddEvenElementsWidening(left, right); + + /// + /// int16x8_t vaddwod_h_bu_b(int8x16_t a, int8x16_t b) + /// LSX: VADDWOD.H.BU.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// int32x4_t vaddwod_w_hu_h(int16x8_t a, int16x8_t b) + /// LSX: VADDWOD.W.HU.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// int64x2_t vaddwod_d_wu_w(int32x4_t a, int32x4_t b) + /// LSX: VADDWOD.D.WU.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// int128x1_t vaddwod_q_du_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VADDWOD.Q.DU.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddOddElementsWidening(Vector128 left, Vector128 right) => AddOddElementsWidening(left, right); + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddHorizontalElements(Vector128 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.HU.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 AddHorizontalElements(Vector128 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddHorizontalElements(Vector128 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.WU.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 AddHorizontalElements(Vector128 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddHorizontalElements(Vector128 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.DU.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 AddHorizontalElements(Vector128 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddHorizontalElements(Vector128 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: VHADDW.QU.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 AddHorizontalElements(Vector128 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: sum_all_float_elements witin vector. + /// + public static Vector64 AddHorizontalElements(Vector128 value) => AddHorizontalElements(value); + + /// + /// NOTE: this is implemented by multi instructions. + /// LSX: sum_all_double_elements witin vector. + /// + public static Vector64 AddHorizontalElements(Vector128 value) => AddHorizontalElements(value); + + /// + /// int8x8_t vsub_b(int8x8_t a, int8x8_t b) + /// LSX: VSUB.B Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) => Subtract(left, right); + + /// + /// uint8x8_t vsub_b(uint8x8_t a, uint8x8_t b) + /// LSX: VSUB.B Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) => Subtract(left, right); + + /// + /// int16x4_t vsub_h(int16x4_t a, int16x4_t b) + /// LSX: VSUB.H Vd.4H, Vj.4H, Vk.4H + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) => Subtract(left, right); + + /// + /// uint16x4_t vsub_h(uint16x4_t a, uint16x4_t b) + /// LSX: VSUB.H Vd.4H, Vj.4H, Vk.4H + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) => Subtract(left, right); + + /// + /// int32x2_t vsub_w(int32x2_t a, int32x2_t b) + /// LSX: VSUB.W Vd.2W, Vj.2W, Vk.2W + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) => Subtract(left, right); + + /// + /// uint32x2_t vsub_w(uint32x2_t a, uint32x2_t b) + /// LSX: VSUB.W Vd.2W, Vj.2W, Vk.2W + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) => Subtract(left, right); + + /// + /// int64x1_t vsub_d(int64x1_t a, int64x1_t b) + /// LSX: VSUB.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) => Subtract(left, right); + + /// + /// uint64x1_t vsub_d(uint64x1_t a, uint64x1_t b) + /// LSX: VSUB.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) => Subtract(left, right); + + /// + /// float32x2_t vfsub_s(float32x2_t a, float32x2_t b) + /// LSX: VFSUB.S Vd.2S, Vj.2S, Vk.2S + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) => Subtract(left, right); + + /// + /// float64x1_t vfsub_d(float64x1_t a, float64x1_t b) + /// LSX: VFSUB.D Vd.D, Vj.D, Vk.D + /// + public static Vector64 Subtract(Vector64 left, Vector64 right) => Subtract(left, right); + + /// + /// int8x16_t vsub_b(int8x16_t a, int8x16_t b) + /// LSX: VSUB.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) => Subtract(left, right); + + /// + /// uint8x16_t vsub_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSUB.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) => Subtract(left, right); + + /// + /// int16x8_t vsub_h(int16x8_t a, int16x8_t b) + /// LSX: VSUB.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) => Subtract(left, right); + + /// + /// uint16x8_t vsub_h(uint16x8_t a, uint16x8_t b) + /// LSX: VSUB.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) => Subtract(left, right); + + /// + /// int32x4_t vsub_w(int32x4_t a, int32x4_t b) + /// LSX: VSUB.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) => Subtract(left, right); + + /// + /// uint32x4_t vsub_w(uint32x4_t a, uint32x4_t b) + /// LSX: VSUB.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) => Subtract(left, right); + + /// + /// int64x2_t vsub_d(int64x2_t a, int64x2_t b) + /// LSX: VSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) => Subtract(left, right); + + /// + /// uint64x2_t vsub_d(uint64x2_t a, uint64x2_t b) + /// LSX: VSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) => Subtract(left, right); + + /// + /// float32x4_t vfsub_s(float32x4_t a, float32x4_t b) + /// LSX: VFSUB.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) => Subtract(left, right); + + /// + /// float64x2_t vfsub_d(float64x2_t a, float64x2_t b) + /// LSX: VFSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Subtract(Vector128 left, Vector128 right) => Subtract(left, right); + + /// + /// int16x8_t vhsubw_h_b(int8x16_t a, int8x16_t b) + /// LSX: VHSUBW.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// uint16x8_t vhsubw_hu_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VHSUBW.HU.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// int32x4_t vhsubw_w_h(int16x8_t a, int16x8_t b) + /// LSX: VHSUBW.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// uint32x4_t vhsubw_wu_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VHSUBW.WU.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// int64x2_t vhsubw_d_w(int32x4_t a, int32x4_t b) + /// LSX: VHSUBW.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// uint64x2_t vhsubw_du_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VHSUBW.DU.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// int128x1_t vhsubw_q_d(int64x2_t a, int64x2_t b) TODO: long --> longlong 128bits. + /// LSX: VHSUBW.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// uint128x1_t vhsubw_qu_du(uint64x2_t a, uint64x2_t b) + /// LSX: VHSUBW.QU.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 SubtractOddEvenElementsWidening(Vector128 left, Vector128 right) => SubtractOddEvenElementsWidening(left, right); + + /// + /// int8x16_t vssub_b(int8x16_t a, int8x16_t b) + /// LSX: VSSUB.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) => SubtractSaturate(left, right); + + /// + /// uint8x16_t vssub_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSSUB.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) => SubtractSaturate(left, right); + + /// + /// int16x8_t vssub_h(int16x8_t a, int16x8_t b) + /// LSX: VSSUB.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) => SubtractSaturate(left, right); + + /// + /// uint16x8_t vssub_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSSUB.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) => SubtractSaturate(left, right); + + /// + /// int32x4_t vssub_w(int32x4_t a, int32x4_t b) + /// LSX: VSSUB.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) => SubtractSaturate(left, right); + + /// + /// uint32x4_t vssub_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSSUB.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) => SubtractSaturate(left, right); + + /// + /// int64x2_t vssub_d(int64x2_t a, int64x2_t b) + /// LSX: VSSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) => SubtractSaturate(left, right); + + /// + /// uint64x2_t vssub_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSSUB.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 SubtractSaturate(Vector128 left, Vector128 right) => SubtractSaturate(left, right); + + /// + /// int8x16_t vmul_b(int8x16_t a, int8x16_t b) + /// LSX: VMUL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) => Multiply(left, right); + + /// + /// uint8x16_t vmul_b(uint8x16_t a, uint8x16_t b) + /// LSX: VMUL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) => Multiply(left, right); + + /// + /// int16x8_t vmul_h(int16x8_t a, int16x8_t b) + /// LSX: VMUL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) => Multiply(left, right); + + /// + /// uint16x8_t vmul_h(uint16x8_t a, uint16x8_t b) + /// LSX: VMUL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) => Multiply(left, right); + + /// + /// int32x4_t vmul_w(int32x4_t a, int32x4_t b) + /// LSX: VMUL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) => Multiply(left, right); + + /// + /// uint32x4_t vmul(uint32x4_t a, uint32x4_t b) + /// LSX: VMUL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) => Multiply(left, right); + + /// + /// int64x2_t vmul_d(int64x2_t a, int64x2_t b) + /// LSX: VMUL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) => Multiply(left, right); + + /// + /// uint64x2_t vmul(uint64x2_t a, uint64x2_t b) + /// LSX: VMUL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) => Multiply(left, right); + + /// + /// float32x4_t vfmul_s(float32x4_t a, float32x4_t b) + /// LSX: VFMUL.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) => Multiply(left, right); + + /// + /// float64x2_t vfmul_d(float64x2_t a, float64x2_t b) + /// LSX: VFMUL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Multiply(Vector128 left, Vector128 right) => Multiply(left, right); + + /// + /// int8x16_t vmuh_b(int8x16_t a, int8x16_t b) + /// LSX: VMUH.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) => MultiplyHight(left, right); + + /// + /// uint8x16_t vmuh_b(uint8x16_t a, uint8x16_t b) + /// LSX: VMUH.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) => MultiplyHight(left, right); + + /// + /// int16x8_t vmuh_h(int16x8_t a, int16x8_t b) + /// LSX: VMUH.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) => MultiplyHight(left, right); + + /// + /// uint16x8_t vmuh_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VMUH.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) => MultiplyHight(left, right); + + /// + /// int32x4_t vmuh_w(int32x4_t a, int32x4_t b) + /// LSX: VMUL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) => MultiplyHight(left, right); + + /// + /// uint32x4_t vmuh_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VMUH.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) => MultiplyHight(left, right); + + /// + /// int64x2_t vmuh_d(int64x2_t a, int64x2_t b) + /// LSX: VMUH.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) => MultiplyHight(left, right); + + /// + /// uint64x2_t vmuh_du(uint64x2_t a, uint64x2_t b) + /// LSX: VMUH.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyHight(Vector128 left, Vector128 right) => MultiplyHight(left, right); + + /// + /// int8x16_t vdiv_b(int8x16_t a, int8x16_t b) + /// LSX: VDIV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Divide(Vector128 left, Vector128 right) => Divide(left, right); + + /// + /// uint8x16_t vdiv_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VDIV.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Divide(Vector128 left, Vector128 right) => Divide(left, right); + + /// + /// int16x8_t vdiv_h(int16x8_t a, int16x8_t b) + /// LSX: VDIV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Divide(Vector128 left, Vector128 right) => Divide(left, right); + + /// + /// uint16x8_t vdiv_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VDIV.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Divide(Vector128 left, Vector128 right) => Divide(left, right); + + /// + /// int32x4_t vdiv_w(int32x4_t a, int32x4_t b) + /// LSX: VDIV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Divide(Vector128 left, Vector128 right) => Divide(left, right); + + /// + /// uint32x4_t vdiv_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VDIV.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Divide(Vector128 left, Vector128 right) => Divide(left, right); + + /// + /// int64x2_t vdiv_d(int64x2_t a, int64x2_t b) + /// LSX: VDIV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Divide(Vector128 left, Vector128 right) => Divide(left, right); + + /// + /// uint64x2_t vdiv_du(uint64x2_t a, uint64x2_t b) + /// LSX: VDIV.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Divide(Vector128 left, Vector128 right) => Divide(left, right); + + /// + /// float32x4_t vfdiv_s(float32x4_t a, float32x4_t b) + /// LSX: VFDIV.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Divide(Vector128 left, Vector128 right) => Divide(left, right); + + /// + /// float64x2_t vfdiv_d(float64x2_t a, float64x2_t b) + /// LSX: VFDIV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Divide(Vector128 left, Vector128 right) => Divide(left, right); + + /// + /// int8x16_t vmod_b(int8x16_t a, int8x16_t b) + /// LSX: VMOD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) => Modulo(left, right); + + /// + /// uint8x16_t vmod_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VMOD.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) => Modulo(left, right); + + /// + /// int16x8_t vmod_h(int16x8_t a, int16x8_t b) + /// LSX: VMOD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) => Modulo(left, right); + + /// + /// uint16x8_t vmod_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VMOD.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) => Modulo(left, right); + + /// + /// int32x4_t vmod_w(int32x4_t a, int32x4_t b) + /// LSX: VMOD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) => Modulo(left, right); + + /// + /// uint32x4_t vmod_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VMOD.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) => Modulo(left, right); + + /// + /// int64x2_t vmod_d(int64x2_t a, int64x2_t b) + /// LSX: VMOD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) => Modulo(left, right); + + /// + /// uint64x2_t vmod_du(uint64x2_t a, uint64x2_t b) + /// LSX: VMOD.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Modulo(Vector128 left, Vector128 right) => Modulo(left, right); + + /// + /// float32x4_t vfmadd_s(float32x4_t a, float32x4_t b, float32x4_t c) + /// LSX: VFMADD.S Vd.4S, Vj.4S, Vk.4S, Va.4S + /// + public static Vector128 FusedMultiplyAdd(Vector128 left, Vector128 right, Vector128 addend) => FusedMultiplyAdd(left, right, addend); + + /// + /// float64x2_t vfmadd_d(float64x2_t a, float64x2_t b, float64x2_t c) + /// LSX: VFMADD.D Vd.2D, Vj.2D, Vk.2D, Va.2D + /// + public static Vector128 FusedMultiplyAdd(Vector128 left, Vector128 right, Vector128 addend) => FusedMultiplyAdd(left, right, addend); + + /// + /// float32x4_t vfnmadd_s(float32x4_t a, float32x4_t b, float32x4_t c) + /// LSX: VFNMADD.S Vd.4S, Vj.4S, Vk.4S, Va.4S + /// + public static Vector128 FusedMultiplyAddNegated(Vector128 left, Vector128 right, Vector128 addend) => FusedMultiplyAddNegated(left, right, addend); + + /// + /// float64x2_t vfnmadd_d(float64x2_t a, float64x2_t b, float64x2_t c) + /// LSX: VFNMADD.D Vd.2D, Vj.2D, Vk.2D, Va.2D + /// + public static Vector128 FusedMultiplyAddNegated(Vector128 left, Vector128 right, Vector128 addend) => FusedMultiplyAddNegated(left, right, addend); + + /// + /// int8x16_t vmadd_b(int8x16_t a, int8x16_t b, int8x16_t c) + /// LSX: VMADD.B Vd.16B, Vj.16B, Vk.16B //NOTE: The Vd is both input and output while input as addend. + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyAdd(addend, left, right); + + /// + /// uint8x16_t vmadd_b(uint8x16_t a, uint8x16_t b, uint8x16_t c) + /// LSX: VMADD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyAdd(addend, left, right); + + /// + /// int16x8_t vmadd_h(int16x8_t a, int16x8_t b, int16x8_t c) + /// LSX: VMADD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyAdd(addend, left, right); + + /// + /// uint16x8_t vmadd_h(uint16x8_t a, uint16x8_t b, uint16x8_t c) + /// LSX: VMADD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyAdd(addend, left, right); + + /// + /// int32x4_t vmadd_w(int32x4_t a, int32x4_t b, int32x4_t c) + /// LSX: VMADD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyAdd(addend, left, right); + + /// + /// uint32x4_t vmadd_w(uint32x4_t a, uint32x4_t b, uint32x4_t c) + /// LSX: VMADD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyAdd(addend, left, right); + + /// + /// int64x2_t vmadd_d(int64x2_t a, int64x2_t b, int64x2_t c) + /// LSX: VMADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyAdd(Vector128 minuend, Vector128 left, Vector128 right) => MultiplyAdd(minuend, left, right); + + /// + /// uint64x2_t vmadd_d(uint64x2_t a, uint64x2_t b, uint64x2_t c) + /// LSX: VMADD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyAdd(Vector128 minuend, Vector128 left, Vector128 right) => MultiplyAdd(minuend, left, right); + + /// + /// float32x4_t vfmsub_s(float32x4_t a, float32x4_t b, float32x4_t c) + /// LSX: VFMSUB.S Vd.4S, Vj.4S, Vk.4S, Va,4S + /// + public static Vector128 FusedMultiplySubtract(Vector128 left, Vector128 right, Vector128 minuend) => FusedMultiplySubtract(left, right, minuend); + + /// + /// float64x2_t vfmsub_d(float64x2_t a, float64x2_t b, float64x2_t c) + /// LSX: VFMSUB.D Vd.2D, Vj.2D, Vk.2D, Va.2D + /// + public static Vector128 FusedMultiplySubtract(Vector128 left, Vector128 right, Vector128 minuend) => FusedMultiplySubtract(left, right, minuend); + + /// + /// float32x4_t vfnmsub_s(float32x4_t a, float32x4_t b, float32x4_t c) + /// LSX: VFNMSUB.S Vd.4S, Vj.4S, Vk.4S, Va,4S + /// + public static Vector128 FusedMultiplySubtractNegated(Vector128 left, Vector128 right, Vector128 minuend) => FusedMultiplySubtractNegated(left, right, minuend); + + /// + /// float64x2_t vfnmsub_d(float64x2_t a, float64x2_t b, float64x2_t c) + /// LSX: VFNMSUB.D Vd.2D, Vj.2D, Vk.2D, Va.2D + /// + public static Vector128 FusedMultiplySubtractNegated(Vector128 left, Vector128 right, Vector128 minuend) => FusedMultiplySubtractNegated(left, right, minuend); + + /// + /// int8x16_t vmsub_b(int8x16_t a, int8x16_t b, int8x16_t c) + /// LSX: VMSUB.B Vd.16B, Vj.16B, Vk.16B //NOTE: The Vd is both input and output while input as minuend. + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) => MultiplySubtract(minuend, left, right); + + /// + /// uint8x16_t vmsub_b(uint8x16_t a, uint8x16_t b, uint8x16_t c) + /// LSX: VMSUB.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) => MultiplySubtract(minuend, left, right); + + /// + /// int16x8_t vmsub_h(int16x8_t a, int16x8_t b, int16x8_t c) + /// LSX: VMSUB.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) => MultiplySubtract(minuend, left, right); + + /// + /// uint16x8_t vmsub_h(uint16x8_t a, uint16x8_t b, uint16x8_t c) + /// LSX: VMSUB.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) => MultiplySubtract(minuend, left, right); + + /// + /// int32x4_t vmsub_w(int32x4_t a, int32x4_t b, int32x4_t c) + /// LSX: VMSUB.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) => MultiplySubtract(minuend, left, right); + + /// + /// uint32x4_t vmsub_w(uint32x4_t a, uint32x4_t b, uint32x4_t c) + /// LSX: VMSUB.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) => MultiplySubtract(minuend, left, right); + + /// + /// int64x2_t vmsub_d(int64x2_t a, int64x2_t b, int64x2_t c) + /// LSX: VMSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) => MultiplySubtract(minuend, left, right); + + /// + /// uint64x2_t vmsub_d(uint64x2_t a, uint64x2_t b, uint64x2_t c) + /// LSX: VMSUB.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MultiplySubtract(Vector128 minuend, Vector128 left, Vector128 right) => MultiplySubtract(minuend, left, right); + + /// + /// int16x8_t vmaddwev_h_b(int16x8_t a, int8x8_t b, int8x8_t c) + /// LSX: VMADDWEV.H.B Vd.8H, Vj.8B, Vk.8B + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// uint16x8_t vmaddwev_h_bu(uint16x8_t a, uint8x8_t b, uint8x8_t c) + /// LSX: VMADDWEV.H.BU Vd.8H, Vj.8B, Vk.8B + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// int32x4_t vmaddwev_w_h(int32x4_t a, int16x4_t b, int16x4_t c) + /// LSX: VMADDWEV.W.H Vd.4W, Vj.4H, Vk.4H + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// uint32x4_t vmaddwev_w_hu(uint32x4_t a, uint16x4_t b, uint16x4_t c) + /// LSX: VMADDWEV.W.HU Vd.4W, Vj.4H, Vk.4H + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// int64x2_t vmaddwev_d_w(int64x2_t a, int32x2_t b, int32x2_t c) + /// LSX: VMADDWEV.D.W Vd.2D, Vj.2S, Vk.2S + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// uint64x2_t vmaddwev_d_wu(uint64x2_t a, uint32x2_t b, uint32x2_t c) + /// LSX: VMADDWEV.D.WU Vd.2D, Vj.2S, Vk.2S + /// + public static Vector128 MultiplyWideningLowerAndAdd(Vector128 addend, Vector64 left, Vector64 right) => MultiplyWideningLowerAndAdd(addend, left, right); + + /// + /// int16x8_t vmaddwod_h_b(int16x8_t a, int8x16_t b, int8x16_t c) + /// LSX: VMADDWOD.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// uint16x8_t vmaddwod_h_bu(uint16x8_t a, uint8x16_t b, uint8x16_t c) + /// LSX: VMADDWOD.H.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// int32x4_t vmaddwod_w_h(int32x4_t a, int16x8_t b, int16x8_t c) + /// LSX: VMADDWOD.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// uint32x4_t vmaddwod_w_hu(uint32x4_t a, uint16x8_t b, uint16x8_t c) + /// LSX: VMADDWOD.W.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// int64x2_t vmaddwod_d_w(int64x2_t a, int32x4_t b, int32x4_t c) + /// LSX: VMADDWOD.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// uint64x2_t vmaddwod_d_wu(uint64x2_t a, uint32x4_t b, uint32x4_t c) + /// LSX: VMADDWOD.D.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyWideningUpperAndAdd(Vector128 addend, Vector128 left, Vector128 right) => MultiplyWideningUpperAndAdd(addend, left, right); + + /// + /// int8x16_t vmsknz_b(int8x16_t value) + /// LSX: VMSKNZ.B Vd.16B, Vj.16B + /// + public static Vector128 CompareNotEqualZero(Vector128 value) => CompareNotEqualZero(value); + + /// + /// uint8x16_t vmsknz_b(uint8x16_t value) + /// LSX: VMSKNZ.B Vd.16B, Vj.16B + /// + public static Vector128 CompareNotEqualZero(Vector128 value) => CompareNotEqualZero(value); + + /// + /// int8x16_t vseqi_b(int8x16_t a, int8_t si5) + /// LSX: VSEQI.B Vd.16B, Vj.16B, si5 + /// + public static Vector128 CompareEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareEqual(value, si5); + + /// + /// int16x8_t vseqi_h(int16x8_t a, int8_t si5) + /// LSX: VSEQI.H Vd.8H, Vj.8H, si5 + /// + public static Vector128 CompareEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareEqual(value, si5); + + /// + /// int32x4_t vseqi_w(int32x4_t a, int8_t si5) + /// LSX: VSEQI.W Vd.4W, Vj.4W, si5 + /// + public static Vector128 CompareEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareEqual(value, si5); + + /// + /// int64x2_t vseqi_d(int64x2_t a, int8_t si5) + /// LSX: VSEQI.D Vd.2D, Vj.2D, si5 + /// + public static Vector128 CompareEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareEqual(value, si5); + + /// + /// int8x16_t vseq_b(int8x16_t a, int8x16_t b) + /// LSX: VSEQ.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) => CompareEqual(left, right); + + /// + /// uint8x16_t vseq_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSEQ.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) => CompareEqual(left, right); + + /// + /// int16x8_t vseq_h(int16x8_t a, int16x8_t b) + /// LSX: VSEQ.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) => CompareEqual(left, right); + + /// + /// uint16x8_t vseq_h(uint16x8_t a, uint16x8_t b) + /// LSX: VSEQ.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) => CompareEqual(left, right); + + /// + /// int32x4_t vseq_w(int32x4_t a, int32x4_t b) + /// LSX: VSEQ.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) => CompareEqual(left, right); + + /// + /// uint32x4_t vseq_w(uint32x4_t a, uint32x4_t b) + /// LSX: VSEQ.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) => CompareEqual(left, right); + + /// + /// int64x2_t vseq_d(int64x2_t a, int64x2_t b) + /// LSX: VSEQ.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) => CompareEqual(left, right); + + /// + /// uint64x2_t vseq_d(uint64x2_t a, uint64x2_t b) + /// LSX: VSEQ.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) => CompareEqual(left, right); + + /// + /// int32x4_t vfcmp_ceq_s(float32x4_t a, float32x4_t b) + /// LSX: VFCMP.CEQ.S Vd.4W, Vj.4S, Vk.4S + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) => CompareEqual(left, right); + + /// + /// int64x2_t vfcmp_ceq_d(float64x2_t a, float64x2_t b) + /// LSX: VFCMP.CEQ.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareEqual(Vector128 left, Vector128 right) => CompareEqual(left, right); + + /// + /// int8x16_t vmskltz_b(int8x16_t value) + /// LSX: VMSKLTZ.B Vd.16B, Vj.16B + /// + public static Vector128 CompareLessThanZero(Vector128 value) => CompareLessThanZero(value); + + /// + /// int16x8_t vmskltz_h(int16x8_t value) + /// LSX: VMSKLTZ.H Vd.8H, Vj.8H + /// + public static Vector128 CompareLessThanZero(Vector128 value) => CompareLessThanZero(value); + + /// + /// int32x4_t vmskltz_w(int32x4_t value) + /// LSX: VMSKLTZ.W Vd.4W, Vj.4W + /// + public static Vector128 CompareLessThanZero(Vector128 value) => CompareLessThanZero(value); + + /// + /// int64x2_t vmskltz_d(int64x2_t value) + /// LSX: VMSKLTZ.D Vd.2D, Vj.2D + /// + public static Vector128 CompareLessThanZero(Vector128 value) => CompareLessThanZero(value); + + /// + /// int8x16_t vslti_b(int8x16_t a, int8_t si5) + /// LSX: VSLTI.B Vd.16B, Vj.16B, si5 + /// + public static Vector128 CompareLessThan(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThan(value, si5); + + /// + /// int16x8_t vslti_h(int16x8_t a, int8_t si5) + /// LSX: VSLTI.H Vd.8H, Vj.8H, si5 + /// + public static Vector128 CompareLessThan(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThan(value, si5); + + /// + /// int32x4_t vslti_w(int32x4_t a, int8_t si5) + /// LSX: VSLTI.W Vd.4W, Vj.4W, si5 + /// + public static Vector128 CompareLessThan(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThan(value, si5); + + /// + /// int64x2_t vslti_d(int64x2_t a, int8_t si5) + /// LSX: VSLTI.D Vd.2D, Vj.2D, si5 + /// + public static Vector128 CompareLessThan(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThan(value, si5); + + /// + /// uint8x16_t vslt_b(int8x16_t a, int8x16_t b) + /// LSX: VSLT.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) => CompareLessThan(left, right); + + /// + /// uint8x16_t vslt_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSLT.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) => CompareLessThan(left, right); + + /// + /// uint16x8_t vslt_h(int16x8_t a, int16x8_t b) + /// LSX: VSLT.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) => CompareLessThan(left, right); + + /// + /// uint16x8_t vslt_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSLT.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) => CompareLessThan(left, right); + + /// + /// uint32x4_t vslt_w(int32x4_t a, int32x4_t b) + /// LSX: VSLT.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) => CompareLessThan(left, right); + + /// + /// uint32x4_t vslt_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSLT.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) => CompareLessThan(left, right); + + /// + /// uint64x2_t vslt_d(int64x2_t a, int64x2_t b) + /// LSX: VSLT.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) => CompareLessThan(left, right); + + /// + /// uint64x2_t vslt_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSLT.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) => CompareLessThan(left, right); + + /// + /// int32x4_t vfcmp_clt_s(float32x4_t a, float32x4_t b) + /// LSX: VFCMP.CLT.S Vd.4W, Vj.4S, Vk.4S + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) => CompareLessThan(left, right); + + /// + /// int64x2_t vfcmp_clt_d(float64x2_t a, float64x2_t b) + /// LSX: VFCMP.CLT.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThan(Vector128 left, Vector128 right) => CompareLessThan(left, right); + + /// + /// int8x16_t vslei_b(int8x16_t a, int8_t si5) + /// LSX: VSLEI.B Vd.16B, Vj.16B, si5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThanOrEqual(value, si5); + + /// + /// int16x8_t vslei_h(int16x8_t a, int8_t si5) + /// LSX: VSLEI.H Vd.8H, Vj.8H, si5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThanOrEqual(value, si5); + + /// + /// int32x4_t vslei_w(int32x4_t a, int8_t si5) + /// LSX: VSLEI.W Vd.4W, Vj.4W, si5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThanOrEqual(value, si5); + + /// + /// int64x2_t vslei_d(int64x2_t a, int8_t si5) + /// LSX: VSLEI.D Vd.2D, Vj.2D, si5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Min = -16, Max = (byte)(15))] sbyte si5) => CompareLessThanOrEqual(value, si5); + + /// + /// uint8x16_t vsle_b(int8x16_t a, int8x16_t b) + /// LSX: VSLE.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint16x8_t vsle_h(int16x8_t a, int16x8_t b) + /// LSX: VSLE.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint32x4_t vsle_w(int32x4_t a, int32x4_t b) + /// LSX: VSLE.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint64x2_t vsle_d(int64x2_t a, int64x2_t b) + /// LSX: VSLE.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint8x16_t vslei_bu(uint8x16_t a, uint8_t ui5) + /// LSX: VSLEI.BU Vd.16B, Vj.16B, ui5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte ui5) => CompareLessThanOrEqual(value, ui5); + + /// + /// uint16x8_t vslei_hu(uint16x8_t a, uint8_t ui5) + /// LSX: VSLEI.HU Vd.8H, Vj.8H, ui5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte ui5) => CompareLessThanOrEqual(value, ui5); + + /// + /// uint32x4_t vslei_wu(uint32x4_t a, uint8_t ui5) + /// LSX: VSLEI.WU Vd.4W, Vj.4W, ui5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte ui5) => CompareLessThanOrEqual(value, ui5); + + /// + /// uint64x2_t vslei_du(uint64x2_t a, uint8_t ui5) + /// LSX: VSLEI.DU Vd.2D, Vj.2D, ui5 + /// + public static Vector128 CompareLessThanOrEqual(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte ui5) => CompareLessThanOrEqual(value, ui5); + + /// + /// uint8x16_t vsle_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSLE.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint16x8_t vsle_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSLE.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint32x4_t vsle_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSLE.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint64x2_t vsle_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSLE.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) => CompareLessThanOrEqual(left, right); + + /// + /// int32x4_t vfcmp_cle_s(float32x4_t a, float32x4_t b) + /// LSX: VFCMP.CLE.S Vd.4W, Vj.4S, Vk.4S + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) => CompareLessThanOrEqual(left, right); + + /// + /// int64x2_t vfcmp_cle_d(float64x2_t a, float64x2_t b) + /// LSX: VFCMP.CLE.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareLessThanOrEqual(Vector128 left, Vector128 right) => CompareLessThanOrEqual(left, right); + + /// + /// uint8x16_t vsle_b(int8x16_t a, int8x16_t b) + /// LSX: VSLE.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) => CompareGreaterThan(left, right); + + /// + /// uint16x8_t vsle_h(int16x8_t a, int16x8_t b) + /// LSX: VSLE.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) => CompareGreaterThan(left, right); + + /// + /// uint32x4_t vsle_w(int32x4_t a, int32x4_t b) + /// LSX: VSLE.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) => CompareGreaterThan(left, right); + + /// + /// uint64x2_t vsle_d(int64x2_t a, int64x2_t b) + /// LSX: VSLE.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) => CompareGreaterThan(left, right); + + /// + /// uint8x16_t vsle_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSLE.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) => CompareGreaterThan(left, right); + + /// + /// uint16x8_t vsle_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSLE.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) => CompareGreaterThan(left, right); + + /// + /// uint32x4_t vsle_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSLE.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) => CompareGreaterThan(left, right); + + /// + /// uint64x2_t vsle_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSLE.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) => CompareGreaterThan(left, right); + + /// + /// int32x4_t vfcmp_cle_s(float32x4_t a, float32x4_t b) + /// LSX: VFCMP.CLE.S Vd.4W, Vj.4S, Vk.4S + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) => CompareGreaterThan(left, right); + + /// + /// int64x2_t vfcmp_cle_d(float64x2_t a, float64x2_t b) + /// LSX: VFCMP.CLE.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThan(Vector128 left, Vector128 right) => CompareGreaterThan(left, right); + + /// + /// int8x16_t vmskgez_b(int8x16_t value) + /// LSX: VMSKGEZ.B Vd.16B, Vj.16B + /// + public static Vector128 CompareGreaterThanOrEqualZero(Vector128 value) => CompareGreaterThanOrEqualZero(value); + + /// + /// uint8x16_t vslt_b(int8x16_t a, int8x16_t b) + /// LSX: VSLT.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint8x16_t vslt_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VSLT.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint16x8_t vslt_h(int16x8_t a, int16x8_t b) + /// LSX: VSLT.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint16x8_t vslt_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VSLT.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint32x4_t vslt_w(int32x4_t a, int32x4_t b) + /// LSX: VSLT.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint32x4_t vslt_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VSLT.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint64x2_t vslt_d(int64x2_t a, int64x2_t b) + /// LSX: VSLT.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// uint64x2_t vslt_du(uint64x2_t a, uint64x2_t b) + /// LSX: VSLT.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// int32x4_t vfcmp_clt_s(float32x4_t a, float32x4_t b) + /// LSX: VFCMP.CLT.S Vd.4W, Vj.4S, Vk.4S + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// int64x2_t vfcmp_clt_d(float64x2_t a, float64x2_t b) + /// LSX: VFCMP.CLT.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 CompareGreaterThanOrEqual(Vector128 left, Vector128 right) => CompareGreaterThanOrEqual(left, right); + + /// + /// int8x16_t vmaxi_b(int8x16_t a, int8_t si5) + /// LSX: VMAXI.B Vd.16B, Vj.16B, si5 + /// + public static Vector128 Max(Vector128 value, const sbyte si5) => Max(value, si5); + + /// + /// uint8x16_t vmaxi_bu(uint8x16_t a, int8_t si5) + /// LSX: VMAXI.BU Vd.16B, Vj.16B, ui5 + /// + public static Vector128 Max(Vector128 value, const byte ui5) => Max(value, ui5); + + /// + /// int16x8_t vmaxi_h(int16x8_t a, int8_t si5) + /// LSX: VMAXI.H Vd.8H, Vj.8H, si5 + /// + public static Vector128 Max(Vector128 value, const sbyte si5) => Max(value, si5); + + /// + /// uint16x8_t vmaxi_hu(uint16x8_t a, int8_t si5) + /// LSX: VMAXI.HU Vd.8H, Vj.8H, ui5 + /// + public static Vector128 Max(Vector128 value, const byte ui5) => Max(value, ui5); + + /// + /// int32x4_t vmaxi_w(int32x4_t a, int8_t si5) + /// LSX: VMAXI.W Vd.4W, Vj.4W, si5 + /// + public static Vector128 Max(Vector128 value, const sbyte si5) => Max(value, si5); + + /// + /// uint32x4_t vmaxi_wu(uint32x4_t a, int8_t si5) + /// LSX: VMAXI.WU Vd.4W, Vj.4W, ui5 + /// + public static Vector128 Max(Vector128 value, const byte ui5) => Max(value, ui5); + + /// + /// int64x2_t vmaxi_d(int64x2_t a, int8_t si5) + /// LSX: VMAXI.D Vd.2D, Vj.2D, si5 + /// + public static Vector128 Max(Vector128 value, const sbyte si5) => Max(value, si5); + + /// + /// uint64x2_t vmaxi_du(uint64x2_t a, int8_t si5) + /// LSX: VMAXI.DU Vd.2D, Vj.2D, ui5 + /// + public static Vector128 Max(Vector128 value, const byte ui5) => Max(value, ui5); + + /// + /// int8x16_t vmax_b(int8x16_t a, int8x16_t b) + /// LSX: VMAX.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Max(Vector128 left, Vector128 right) => Max(left, right); + + /// + /// uint8x16_t vmax_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VMAX.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Max(Vector128 left, Vector128 right) => Max(left, right); + + /// + /// int16x8_t vmax_h(int16x8_t a, int16x8_t b) + /// LSX: VMAX.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Max(Vector128 left, Vector128 right) => Max(left, right); + + /// + /// uint16x8_t vmax_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VMAX.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Max(Vector128 left, Vector128 right) => Max(left, right); + + /// + /// int32x4_t vmax_w(int32x4_t a, int32x4_t b) + /// LSX: VMAX.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Max(Vector128 left, Vector128 right) => Max(left, right); + + /// + /// uint32x4_t vmax_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VMAX.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Max(Vector128 left, Vector128 right) => Max(left, right); + + /// + /// int64x2_t vmax_d(int64x2_t a, int64x2_t b) + /// LSX: VMAX.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Max(Vector128 left, Vector128 right) => Max(left, right); + + /// + /// uint64x2_t vmax_du(uint64x2_t a, uint64x2_t b) + /// LSX: VMAX.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Max(Vector128 left, Vector128 right) => Max(left, right); + + /// + /// float32x4_t vfmax_s(float32x4_t a, float32x4_t b) + /// LSX: VFMAX.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Max(Vector128 left, Vector128 right) => Max(left, right); + + /// + /// float64x2_t vfmax_d(float64x2_t a, float64x2_t b) + /// LSX: VFMAX.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Max(Vector128 left, Vector128 right) => Max(left, right); + + /// + /// float32x4_t vfmaxa_s(float32x4_t a, float32x4_t b) + /// LSX: VFMAXA.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 MaxFloatAbsolute(Vector128 left, Vector128 right) => MaxFloatAbsolute(left, right); + + /// + /// float64x2_t vfmaxa_d(float64x2_t a, float64x2_t b) + /// LSX: VFMAXA.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MaxFloatAbsolute(Vector128 left, Vector128 right) => MaxFloatAbsolute(left, right); + + /// + /// int8x16_t vmini_b(int8x16_t a, int8_t si5) + /// LSX: VMINI.B Vd.16B, Vj.16B, si5 + /// + public static Vector128 Min(Vector128 value, const sbyte si5) => Min(value, si5); + + /// + /// uint8x16_t vmini_bu(uint8x16_t a, int8_t si5) + /// LSX: VMINI.BU Vd.16B, Vj.16B, ui5 + /// + public static Vector128 Min(Vector128 value, const byte ui5) => Min(value, ui5); + + /// + /// int16x8_t vmini_h(int16x8_t a, int8_t si5) + /// LSX: VMINI.H Vd.8H, Vj.8H, si5 + /// + public static Vector128 Min(Vector128 value, const sbyte si5) => Min(value, si5); + + /// + /// uint16x8_t vmini_hu(uint16x8_t a, int8_t si5) + /// LSX: VMINI.HU Vd.8H, Vj.8H, ui5 + /// + public static Vector128 Min(Vector128 value, const byte ui5) => Min(value, ui5); + + /// + /// int32x4_t vmini_w(int32x4_t a, int8_t si5) + /// LSX: VMINI.W Vd.4W, Vj.4W, si5 + /// + public static Vector128 Min(Vector128 value, const sbyte si5) => Min(value, si5); + + /// + /// uint32x4_t vmini_wu(uint32x4_t a, int8_t si5) + /// LSX: VMINI.WU Vd.4W, Vj.4W, ui5 + /// + public static Vector128 Min(Vector128 value, const byte ui5) => Min(value, ui5); + + /// + /// int64x2_t vmini_d(int64x2_t a, int8_t si5) + /// LSX: VMINI.D Vd.2D, Vj.2D, si5 + /// + public static Vector128 Min(Vector128 value, const sbyte si5) => Min(value, si5); + + /// + /// uint64x2_t vmini_du(uint64x2_t a, int8_t si5) + /// LSX: VMINI.DU Vd.2D, Vj.2D, ui5 + /// + public static Vector128 Min(Vector128 value, const byte ui5) => Min(value, ui5); + + /// + /// int8x16_t vmin_b(int8x16_t a, int8x16_t b) + /// LSX: VMIN.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Min(Vector128 left, Vector128 right) => Min(left, right); + + /// + /// uint8x16_t vmin_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VMIN.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Min(Vector128 left, Vector128 right) => Min(left, right); + + /// + /// int16x8_t vmin_h(int16x8_t a, int16x8_t b) + /// LSX: VMIN.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Min(Vector128 left, Vector128 right) => Min(left, right); + + /// + /// uint16x8_t vmin_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VMIN.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Min(Vector128 left, Vector128 right) => Min(left, right); + + /// + /// int32x4_t vmin_w(int32x4_t a, int32x4_t b) + /// LSX: VMIN.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Min(Vector128 left, Vector128 right) => Min(left, right); + + /// + /// uint32x4_t vmin_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VMIN.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Min(Vector128 left, Vector128 right) => Min(left, right); + + /// + /// int64x2_t vmin_d(int64x2_t a, int64x2_t b) + /// LSX: VMIN.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Min(Vector128 left, Vector128 right) => Min(left, right); + + /// + /// uint64x2_t vmin_du(uint64x2_t a, uint64x2_t b) + /// LSX: VMIN.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Min(Vector128 left, Vector128 right) => Min(left, right); + + /// + /// float32x4_t vfmin_s(float32x4_t a, float32x4_t b) + /// LSX: VFMIN.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 Min(Vector128 left, Vector128 right) => Min(left, right); + + /// + /// float64x2_t vfmin_d(float64x2_t a, float64x2_t b) + /// LSX: VFMIN.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Min(Vector128 left, Vector128 right) => Min(left, right); + + /// + /// float32x4_t vfmina_s(float32x4_t a, float32x4_t b) + /// LSX: VFMINA.S Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 MinFloatAbsolute(Vector128 left, Vector128 right) => MinFloatAbsolute(left, right); + + /// + /// float64x2_t vfmina_d(float64x2_t a, float64x2_t b) + /// LSX: VFMINA.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 MinFloatAbsolute(Vector128 left, Vector128 right) => MinFloatAbsolute(left, right); + + /// + /// int8x16_t vbitsel_v(uint8x16_t a, int8x16_t b, int8x16_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) => BitwiseSelect(select, left, right); + + /// + /// uint8x16_t vbitsel_v(uint8x16_t a, uint8x16_t b, uint8x16_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) => BitwiseSelect(select, left, right); + + /// + /// int16x8_t vbitsel_v(uint16x8_t a, int16x8_t b, int16x8_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) => BitwiseSelect(select, left, right); + + /// + /// uint16x8_t vbitsel_v(uint16x8_t a, uint16x8_t b, uint16x8_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) => BitwiseSelect(select, left, right); + + /// + /// int32x4_t vbitsel_v(uint32x4_t a, int32x4_t b, int32x4_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) => BitwiseSelect(select, left, right); + + /// + /// uint32x4_t vbitsel_v(uint32x4_t a, uint32x4_t b, uint32x4_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) => BitwiseSelect(select, left, right); + + /// + /// int64x2_t vbitsel_v(uint64x2_t a, int64x2_t b, int64x2_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) => BitwiseSelect(select, left, right); + + /// + /// uint64x2_t vbitsel_v(uint64x2_t a, uint64x2_t b, uint64x2_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) => BitwiseSelect(select, left, right); + + /// + /// float32x4_t vbitsel_v(uint32x4_t a, float32x4_t b, float32x4_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) => BitwiseSelect(select, left, right); + + /// + /// float64x2_t vbitsel_v(uint64x2_t a, float64x2_t b, float64x2_t c) + /// LSX: VBITSEL.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 BitwiseSelect(Vector128 select, Vector128 left, Vector128 right) => BitwiseSelect(select, left, right); + + /// + /// int8x16_t vabsd_b(int8x16_t a, int8x16_t b) + /// LSX: VABSD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) => AbsoluteDifference(left, right); + + /// + /// uint8x16_t vabsd_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VABSD.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) => AbsoluteDifference(left, right); + + /// + /// int16x8_t vabsd_h(int16x8_t a, int16x8_t b) + /// LSX: VABSD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) => AbsoluteDifference(left, right); + + /// + /// uint16x8_t vabsd_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VABSD.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) => AbsoluteDifference(left, right); + + /// + /// int32x4_t vabsd_w(int32x4_t a, int32x4_t b) + /// LSX: VABSD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) => AbsoluteDifference(left, right); + + /// + /// uint32x4_t vabsd_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VABSD.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) => AbsoluteDifference(left, right); + + /// + /// int64x2_t vabsd_d(uint64x2_t a, int64x2_t b, int64x2_t c) + /// LSX: VABSD.D Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) => AbsoluteDifference(left, right); + + /// + /// uint64x2_t vabsd_du(uint64x2_t a, uint64x2_t b, uint64x2_t c) + /// LSX: VABSD.DU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) => AbsoluteDifference(left, right); + + ///// + ///// float32x4_t TODO(float32x4_t a, float32x4_t b) multi-instructions. + ///// LSX: TODO Vd.4S, Vj.4S, Vk.4S + ///// + //public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) => AbsoluteDifference(left, right); + + ///// + ///// float64x2_t TODO(float64x2_t a, float64x2_t b) + ///// LSX: TODO Vd.2D, Vj.2D, Vk.2D + ///// + //public static Vector128 AbsoluteDifference(Vector128 left, Vector128 right) => AbsoluteDifference(left, right); + + /// + /// int8x16_t vld(int8_t const * ptr, const short si12) + /// LSX: VLD Vd.16B, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(sbyte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector128(address, si12); + + /// + /// uint8x16_t vld(uint8_t const * ptr, const short si12) + /// LSX: VLD Vd.16B, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(byte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector128(address, si12); + + /// + /// int16x8_t vld(int16_t const * ptr, const short si12) + /// LSX: VLD Vd.8H, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(short* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector128(address, si12); + + /// + /// uint16x8_t vld(uint16_t const * ptr, const short si12) + /// LSX: VLD Vd.8H, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(ushort* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector128(address, si12); + + /// + /// int32x4_t vld(int32_t const * ptr, const short si12) + /// LSX: VLD Vd.4W, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(int* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector128(address, si12); + + /// + /// uint32x4_t vld(uint32_t const * ptr, const short si12) + /// LSX: VLD Vd.4W, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(uint* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector128(address, si12); + + /// + /// int64x2_t vld(int64_t const * ptr, const short si12) + /// LSX: VLD Vd.2D, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(long* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector128(address, si12); + + /// + /// uint64x2_t vld(uint64_t const * ptr, const short si12) + /// LSX: VLD Vd.2D, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(ulong* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector128(address, si12); + + /// + /// float32x4_t vld(float32_t const * ptr, const short si12) + /// LSX: VLD Vd.4S, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(float* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector128(address, si12); + + /// + /// float64x2_t vld(float64_t const * ptr, const short si12) + /// LSX: VLD Vd.2D, Rj, si12 + /// + public static unsafe Vector128 LoadVector128(double* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadVector128(address, si12); + + /// + /// int8x16_t vldx(int8_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.16B, Rj, rk + /// + public static unsafe Vector128 LoadVector128(sbyte* address, long offsetValue) => LoadVector128(address, offsetValue); + + /// + /// uint8x16_t vldx(uint8_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.16B, Rj, rk + /// + public static unsafe Vector128 LoadVector128(byte* address, long offsetValue) => LoadVector128(address, offsetValue); + + /// + /// int16x8_t vldx(int16_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.8H, Rj, rk + /// + public static unsafe Vector128 LoadVector128(short* address, long offsetValue) => LoadVector128(address, offsetValue); + + /// + /// uint16x8_t vldx(uint16_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.8H, Rj, rk + /// + public static unsafe Vector128 LoadVector128(ushort* address, long offsetValue) => LoadVector128(address, offsetValue); + + /// + /// int32x4_t vldx(int32_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.4W, Rj, rk + /// + public static unsafe Vector128 LoadVector128(int* address, long offsetValue) => LoadVector128(address, offsetValue); + + /// + /// uint32x4_t vldx(uint32_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.4W, Rj, rk + /// + public static unsafe Vector128 LoadVector128(uint* address, long offsetValue) => LoadVector128(address, offsetValue); + + /// + /// int64x2_t vldx(int64_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.2D, Rj, rk + /// + public static unsafe Vector128 LoadVector128(long* address, long offsetValue) => LoadVector128(address, offsetValue); + + /// + /// uint64x2_t vldx(uint64_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.2D, Rj, rk + /// + public static unsafe Vector128 LoadVector128(ulong* address, long offsetValue) => LoadVector128(address, offsetValue); + + /// + /// float32x4_t vldx(float32_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.4S, Rj, rk + /// + public static unsafe Vector128 LoadVector128(float* address, long offsetValue) => LoadVector128(address, offsetValue); + + /// + /// float64x2_t vldx(float64_t const * ptr, long offsetValue) + /// LSX: VLDX Vd.2D, Rj, rk + /// + public static unsafe Vector128 LoadVector128(double* address, long offsetValue) => LoadVector128(address, offsetValue); + + /// + /// int8x16_t vldrepl_b(int8_t const * ptr, const short si12) + /// LSX: VLDREPL.B Vd.16B, Rj, si12 + /// + public static unsafe Vector128 LoadElementReplicateVector(sbyte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// uint8x16_t vldrepl_b(uint8_t const * ptr, const short si12) + /// LSX: VLDREPL.B Vd.16B, Rj, si12 + /// + public static unsafe Vector128 LoadElementReplicateVector(byte* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// int16x8_t vldrepl_h(int16_t const * ptr, const short si12) + /// LSX: VLDREPL.H Vd.8H, Rj, si11 + /// + public static unsafe Vector128 LoadElementReplicateVector(short* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// uint16x8_t vldrepl_h(uint16_t const * ptr, const short si12) + /// LSX: VLDREPL.H Vd.8H, Rj, si11 + /// + public static unsafe Vector128 LoadElementReplicateVector(ushort* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// int32x4_t vldrepl_w(int32_t const * ptr, const short si12) + /// LSX: VLDREPL.W Vd.4W, Rj, si10 + /// + public static unsafe Vector128 LoadElementReplicateVector(int* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// uint32x4_t vldrepl_w(uint32_t const * ptr, const short si12) + /// LSX: VLDREPL.W Vd.4W, Rj, si10 + /// + public static unsafe Vector128 LoadElementReplicateVector(uint* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// int64x2_t vldrepl_d(int64_t const * ptr, const short si12) + /// LSX: VLDREPL.D Vd.2D, Rj, si9 + /// + public static unsafe Vector128 LoadElementReplicateVector(long* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// uint64x2_t vldrepl_d(uint64_t const * ptr, const short si12) + /// LSX: VLDREPL.D Vd.2D, Rj, si9 + /// + public static unsafe Vector128 LoadElementReplicateVector(ulong* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// float32x4_t vld(float32_t const * ptr, const short si12) + /// LSX: VLDREPL.W Vd.4S, Rj, si10 + /// + public static unsafe Vector128 LoadElementReplicateVector(float* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// float64x2_t vldrepl_d(float64_t const * ptr, const short si12) + /// LSX: VLDREPL.D Vd.2D, Rj, si9 + /// + public static unsafe Vector128 LoadElementReplicateVector(double* address, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => LoadElementReplicateVector(address, si12); + + /// + /// float32x4_t vfrecip_s(float32x4_t a) + /// LSX: VFRECIP.S Vd.4S Vj.4S + /// + public static Vector128 Reciprocal(Vector128 value) => Reciprocal(value); + + /// + /// float64x2_t vfrecip_d(float64x2_t a) + /// LSX: VFRECIP.D Vd.2D Vj.2D + /// + public static Vector128 Reciprocal(Vector128 value) => Reciprocal(value); + + /// + /// float32x4_t vfrsqrt_s(float32x4_t a) + /// LSX: VFRSQRT.S Vd.4S Vj.4S + /// + public static Vector128 ReciprocalSqrt(Vector128 value) => ReciprocalSqrt(value); + + /// + /// float64x2_t vfrsqrt_d(float64x2_t a) + /// LSX: VFRSQRT.D Vd.2D Vj.2D + /// + public static Vector128 ReciprocalSqrt(Vector128 value) => ReciprocalSqrt(value); + + /// + /// float32x4_t vfsqrt_s(float32x4_t a) + /// LSX: VFSQRT.S Vd.4S, Vj.4S + /// + public static Vector128 Sqrt(Vector128 value) => Sqrt(value); + + /// + /// float64x2_t vfsqrt_d(float64x2_t a) + /// LSX: VFSQRT.D Vd.2D, Vj.2D + /// + public static Vector128 Sqrt(Vector128 value) => Sqrt(value); + + /// + /// float32x4_t vflogb_s(float32x4_t a) + /// LSX: VFLOGB.S Vd.4S, Vj.4S + /// + public static Vector128 FloatLogarithm2(Vector128 value) => FloatLogarithm2(value); + + /// + /// float64x2_t vflogb_d(float64x2_t a) + /// LSX: VFLOGB.D Vd.2D, Vj.2D + /// + public static Vector128 FloatLogarithm2(Vector128 value) => FloatLogarithm2(value); + + /// + /// void vst(int8x16_t val, int8_t* addr, const short si12) + /// LSX: VST Vd.16B, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, sbyte* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void vst(uint8x16_t val, uint8_t* addr, const short si12) + /// LSX: VST Vd.16B, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, byte* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void vst(int16x8_t val, int16_t* addr, const short si12) + /// LSX: VST Vd.8H, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, short* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void vst(uint16x8_t val, uint16_t* addr, const short si12) + /// LSX: VST Vd.8H, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, ushort* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void vst(int32x4_t val, int32_t* addr, const short si12) + /// LSX: VST Vd.4W, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, int* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void vst(uint32x4_t val, uint32_t* addr, const short si12) + /// LSX: VST Vd.4W, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, uint* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void vst(int64x2_t val, int64_t* addr, const short si12) + /// LSX: VST Vd.2D, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, long* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void vst(uint64x2_t val, uint64_t* addr, const short si12) + /// LSX: VST Vd.2D, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, ulong* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void vst(float32x4_t val, float32_t* addr, const short si12) + /// LSX: VST Vd.4S, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, float* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void vst(float64x2_t val, float64_t* addr, const short si12) + /// LSX: VST Vd.2D, Rj, si12 + /// + public static unsafe void Store(Vector128 vector, double* addr, [ConstantExpected(Min = -2048, Max = 2047)] short si12) => Store(vector, addr, si12); + + /// + /// void vstelm_b(int8x16_t val, int8_t* ptr, const short si8, const byte index) + /// LSX: VSTELM.B Vd.16B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, sbyte* addr, [ConstantExpected(Min = -128, Max = 127)] short si8, [ConstantExpected(Max = (byte)(15))] byte idx) => StoreElement(vector, addr, si8, idx); + + /// + /// void vstelm_b(uint8x16_t val, uint8_t* ptr, const short si8, const byte index) + /// LSX: VSTELM.B Vd.16B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, byte* addr, [ConstantExpected(Min = -128, Max = 127)] short si8, [ConstantExpected(Max = (byte)(15))] byte idx) => StoreElement(vector, addr, si8, idx); + + /// + /// void vstelm_h(int16x8_t val, int16_t* ptr, const short si9, const byte index) // si9 is 2byte aligned. + /// LSX: VSTELM.H Vd.8H, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, short* addr, [ConstantExpected(Min = -256, Max = 254)] short si9, [ConstantExpected(Max = (byte)(7))] byte idx) => StoreElement(vector, addr, si9, idx); + + /// + /// void vstelm_h(uint16x8_t val, uint16_t* ptr, const short si9, const byte index) + /// LSX: VSTELM.H Vd.8H, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, ushort* addr, [ConstantExpected(Min = -256, Max = 254)] short si9, [ConstantExpected(Max = (byte)(7))] byte idx) => StoreElement(vector, addr, si9, idx); + + /// + /// void vstelm_w(int32x4_t val, int* ptr, const short si10, const byte index) // si10 is 4byte aligned. + /// LSX: VSTELM.W Vd.4W, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, int* addr, [ConstantExpected(Min = -512, Max = 508)] short si10, [ConstantExpected(Max = (byte)(3))] byte idx) => StoreElement(vector, addr, si10, idx); + + /// + /// void vstelm_w(uint32x4_t val, uint* ptr, const short si10, const byte index) + /// LSX: VSTELM.W Vd.4W, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, uint* addr, [ConstantExpected(Min = -512, Max = 508)] short si10, [ConstantExpected(Max = (byte)(3))] byte idx) => StoreElement(vector, addr, si10, idx); + + /// + /// void vstelm_d(int64x2_t val, int64_t* ptr, const short si11, const byte index) // si11 is 8byte aligned. + /// LSX: VSTELM.D Vd.2D, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, long* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(1))] byte idx) => StoreElement(vector, addr, si11, idx); + + /// + /// void vstelm_d(uint64x2_t val, uint64_t* ptr, const short si11, const byte index) + /// LSX: VSTELM.D Vd.2D, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, ulong* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(1))] byte idx) => StoreElement(vector, addr, si11, idx); + + /// + /// void vstelm_w(float32x4_t val, float32_t* ptr, const short si10, const byte index) + /// LSX: VSTELM.W Vd.16B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, float* addr, [ConstantExpected(Min = -512, Max = 511)] short si10, [ConstantExpected(Max = (byte)(3))] byte idx) => StoreElement(vector, addr, si10, idx); + + /// + /// void vstelm_d(float64x2_t val, float64_t* ptr, const short si11, const byte index) + /// LSX: VSTELM.D Vd.16B, Rj, si8, idx + /// + public static unsafe void StoreElement(Vector128 vector, double* addr, [ConstantExpected(Min = -1024, Max = 1016)] short si11, [ConstantExpected(Max = (byte)(1))] byte idx) => StoreElement(vector, addr, si11, idx); + + /// + /// int8x16_t vneg_b(int8x16_t a) + /// LSX: VNEG.B Vd.16B, Vj.16B + /// + public static Vector128 Negate(Vector128 value) => Negate(value); + + /// + /// int16x8_t vneg_h(int16x8_t a) + /// LSX: VNEG.H Vd.8H, Vj.8H + /// + public static Vector128 Negate(Vector128 value) => Negate(value); + + /// + /// int32x4_t vneg_w(int32x4_t a) + /// LSX: VNEG.W Vd.4W, Vj.4W + /// + public static Vector128 Negate(Vector128 value) => Negate(value); + + /// + /// int64x2_t vneg_d(int64x2_t a) + /// LSX: VNEG.D Vd.2D, Vj.2D + /// + public static Vector128 Negate(Vector128 value) => Negate(value); + + /// + /// float32x4_t vbitrevi_w(float32x4_t a) + /// LSX: VBITREVI.W Vd.4W, Vj.4W, 31 + /// + public static Vector128 Negate(Vector128 value) => Negate(value); + + /// + /// float64x2_t vbitrevi_d(float64x2_t a) + /// LSX: VBITREVI.D Vd.2D, Vj.2D, 63 + /// + public static Vector128 Negate(Vector128 value) => Negate(value); + + /// + /// float64x1_t fneg_d(float64x1_t a) + /// LSX: FNEG.D Fd, Fj + /// + public static Vector64 NegateScalar(Vector64 value) => NegateScalar(value); + + /// + /// float32_t fneg_s(float32_t a) + /// LSX: FNEG.S Fd, Fj + /// + public static Vector64 NegateScalar(Vector64 value) => NegateScalar(value); + + /// + /// int16x8_t vmulwod_h_b(int8x16_t a, int8x16_t b) + /// LSX: VMULWOD.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + /// + /// int32x4_t vmulwod_w_h(int16x8_t a, int16x8_t b) + /// LSX: VMULWOD.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + /// + /// int64x2_t vmulwod_d_w(int32x4_t a, int32x4_t b) + /// LSX: VMULWOD.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + /// + /// int128x1_t vmulwod_q_d(int64x2_t a, int64x2_t b) + /// LSX: VMULWOD.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + /// + /// int16x8_t vmulwev_h_b(int8x16_t a, int8x16_t b) + /// LSX: VMULWEV.H.B Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) => MultiplyWideningEven(left, right); + + /// + /// int32x4_t vmulwev_w_h(int16x8_t a, int16x8_t b) + /// LSX: VMULWEV.W.H Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) => MultiplyWideningEven(left, right); + + /// + /// int64x2_t vmulwev_d_w(int32x4_t a, int32x4_t b) + /// LSX: VMULWEV.D.W Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) => MultiplyWideningEven(left, right); + + /// + /// int128x1_t vmulwev_q_d(int64x2_t a, int64x2_t b) + /// LSX: VMULWEV.Q.D Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) => MultiplyWideningEven(left, right); + + /// + /// uint16x8_t vmulwod_hu_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VMULWOD.H.BU Vd.8H, Vj.16B, Vk.16B + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + /// + /// uint32x4_t vmulwod_wu_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VMULWOD.W.HU Vd.4W, Vj.8H, Vk.8H + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + /// + /// uint64x2_t vmulwod_du_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VMULWOD.D.WU Vd.2D, Vj.4W, Vk.4W + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + /// + /// uint128x1_t vmulwod_qu_du(uint64x2_t a, uint64x2_t b) + /// LSX: VMULWOD.Q.DU Vd.Q, Vj.2D, Vk.2D + /// + public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + // /// + // /// uint16x8_t vmulwev_hu_bu(uint8x16_t a, uint8x16_t b) + // /// LSX: VMULWEV.H.BU Vd.8H, Vj.16B, Vk.16B + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) => MultiplyWideningEven(left, right); + + // /// + // /// uint32x4_t vmulwev_wu_hu(uint16x8_t a, uint16x8_t b) + // /// LSX: VMULWEV.W.HU Vd.4W, Vj.8H, Vk.8H + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) => MultiplyWideningEven(left, right); + + // /// + // /// uint64x2_t vmulwev_du_wu(uint32x4_t a, uint32x4_t b) + // /// LSX: VMULWEV.D.WU Vd.2D, Vj.4W, Vk.4W + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) => MultiplyWideningEven(left, right); + + // /// + // /// uint128x1_t vmulwev_qu_du(uint64x2_t a, uint64x2_t b) + // /// LSX: VMULWEV.Q.DU Vd.Q, Vj.2D, Vk.2D + // /// + // public static Vector128 MultiplyWideningEven(Vector128 left, Vector128 right) => MultiplyWideningEven(left, right); + + // /// + // /// int16x8_t vmulwod_h_bu(uint8x16_t a, int8x16_t b) + // /// LSX: VMULWOD.H.BU.B Vd.8H, Vj.16B, Vk.16B + // /// + // public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + // /// + // /// int32x4_t vmulwod_w_hu(uint16x8_t a, int16x8_t b) + // /// LSX: VMULWOD.W.HU.H Vd.4W, Vj.8H, Vk.8H + // /// + // public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + // /// + // /// int64x2_t vmulwod_d_wu(uint32x4_t a, int32x4_t b) + // /// LSX: VMULWOD.D.WU.W Vd.2D, Vj.4W, Vk.4W + // /// + // public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + // /// + // /// int128x1_t vmulwod_q_du(uint64x2_t a, int64x2_t b) + // /// LSX: VMULWOD.Q.DU.D Vd.Q, Vj.2D, Vk.2D + // /// + // public static Vector128 MultiplyWideningOdd(Vector128 left, Vector128 right) => MultiplyWideningOdd(left, right); + + // /// + // /// int16x8_t vmulwev_h_bu(uint8x16_t a, int8x16_t b) + // /// LSX: VMULWEV.H.BU.B Vd.8H, Vj.16B, Vk.16B + // /// + // public static Vector128 MultiplyWideningEven(Vector128 unsign, Vector128 sign) => MultiplyWideningEven(unsign, sign); + + // /// + // /// int32x4_t vmulwev_w_hu(uint16x8_t a, int16x8_t b) + // /// LSX: VMULWEV.W.HU.H Vd.4W, Vj.8H, Vk.8H + // /// + // public static Vector128 MultiplyWideningEven(Vector128 unsign, Vector128 sign) => MultiplyWideningEven(unsign, sign); + + // /// + // /// int64x2_t vmulwev_d_wu(uint32x4_t a, int32x4_t b) + // /// LSX: VMULWEV.D.WU.W Vd.2D, Vj.4W, Vk.4W + // /// + // public static Vector128 MultiplyWideningEven(Vector128 unsign, Vector128 sign) => MultiplyWideningEven(unsign, sign); + + // /// + // /// int128x1_t vmulwev_q_du(uint64x2_t a, int64x2_t b) + // /// LSX: VMULWEV.Q.DU.D Vd.Q, Vj.2D, Vk.2D + // /// + // public static Vector128 MultiplyWideningEven(Vector128 unsign, Vector128 sign) => MultiplyWideningEven(unsign, sign); + + /// + /// int8x16_t vavg_b(int8x16_t a, int8x16_t b) + /// LSX: VAVG.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Average(Vector128 left, Vector128 right) => Average(left, right); + + /// + /// uint8x16_t vavg_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VAVG.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Average(Vector128 left, Vector128 right) => Average(left, right); + + /// + /// int16x8_t vavg_h(int16x8_t a, int16x8_t b) + /// LSX: VAVG.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Average(Vector128 left, Vector128 right) => Average(left, right); + + /// + /// uint16x8_t vavg_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VAVG.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 Average(Vector128 left, Vector128 right) => Average(left, right); + + /// + /// int32x4_t vavg_w(int32x4_t a, int32x4_t b) + /// LSX: VAVG.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Average(Vector128 left, Vector128 right) => Average(left, right); + + /// + /// uint32x4_t vavg_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VAVG.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 Average(Vector128 left, Vector128 right) => Average(left, right); + + /// + /// int64x2_t vavg_d(int64x2_t a, int64x2_t b) + /// LSX: VAVG.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Average(Vector128 left, Vector128 right) => Average(left, right); + + /// + /// uint64x2_t vavg_du(uint64x2_t a, uint64x2_t b) + /// LSX: VAVG.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 Average(Vector128 left, Vector128 right) => Average(left, right); + + /// + /// int8x16_t vavgr_b(int8x16_t a, int8x16_t b) + /// LSX: VAVGR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) => AverageRounded(left, right); + + /// + /// uint8x16_t vavgr_bu(uint8x16_t a, uint8x16_t b) + /// LSX: VAVGR.BU Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) => AverageRounded(left, right); + + /// + /// int16x8_t vavgr_h(int16x8_t a, int16x8_t b) + /// LSX: VAVGR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) => AverageRounded(left, right); + + /// + /// uint16x8_t vavgr_hu(uint16x8_t a, uint16x8_t b) + /// LSX: VAVGR.HU Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) => AverageRounded(left, right); + + /// + /// int32x4_t vavgr_w(int32x4_t a, int32x4_t b) + /// LSX: VAVGR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) => AverageRounded(left, right); + + /// + /// uint32x4_t vavgr_wu(uint32x4_t a, uint32x4_t b) + /// LSX: VAVGR.WU Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) => AverageRounded(left, right); + + /// + /// int64x2_t vavgr_d(int64x2_t a, int64x2_t b) + /// LSX: VAVGR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) => AverageRounded(left, right); + + /// + /// uint64x2_t vavgr_du(uint64x2_t a, uint64x2_t b) + /// LSX: VAVGR.DU Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 AverageRounded(Vector128 left, Vector128 right) => AverageRounded(left, right); + + /// + /// int16x8_t vsllwil_h_b(int8x16_t a, uint8_t ui3) + /// LSX: VSLLWIL.H.B Vd.8H, Vj.16B, ui3 + /// + public static Vector128 SignExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) => SignExtendWideningLowerAndShiftLeft(value, shift); + + /// + /// int32x4_t vsllwil_w_h(int16x4_t a, uint8_t ui4) + /// LSX: VSLLWIL.W.H Vd.4W, Vj.4H, ui4 + /// + public static Vector128 SignExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) => SignExtendWideningLowerAndShiftLeft(value, shift); + + /// + /// int64x2_t vsllwil_d_w(int32x2_t a, uint8_t ui5) + /// LSX: VSLLWIL.D.W Vd.2D, Vj.2W, ui5 + /// + public static Vector128 SignExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) => SignExtendWideningLowerAndShiftLeft(value, shift); + + /// + /// uint16x8_t vsllwil_hu_bu(uint8x16_t a, uint8_t ui3) + /// LSX: VSLLWIL.HU.BU Vd.8H, Vj.16B, ui3 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) => ZeroExtendWideningLowerAndShiftLeft(value, shift); + + /// + /// int16x8_t vsllwil_hu_bu(int8x16_t a, uint8_t ui3) + /// LSX: VSLLWIL.HU.BU Vd.8H, Vj.16B, ui3 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) => ZeroExtendWideningLowerAndShiftLeft(value, shift); + + /// + /// uint32x4_t vsllwil_wu_hu(uint16x8_t a, uint8_t ui4) + /// LSX: VSLLWIL.WU.HU Vd.4W, Vj.8H, ui4 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) => ZeroExtendWideningLowerAndShiftLeft(value, shift); + + /// + /// int32x4_t vsllwil_wu_hu(int16x8_t a, uint8_t ui4) + /// LSX: VSLLWIL.WU.HU Vd.4W, Vj.8H, ui4 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) => ZeroExtendWideningLowerAndShiftLeft(value, shift); + + /// + /// uint64x2_t vsllwil_du_wu(uint32x4_t a, uint8_t ui5) + /// LSX: VSLLWIL.DU.WU Vd.2D, Vj.4W, ui5 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) => ZeroExtendWideningLowerAndShiftLeft(value, shift); + + /// + /// int64x2_t vsllwil_du_wu(int32x4_t a, uint8_t ui5) + /// LSX: VSLLWIL.DU.WU Vd.2D, Vj.4W, ui5 + /// + public static Vector128 ZeroExtendWideningLowerAndShiftLeft(Vector64 value, byte shift) => ZeroExtendWideningLowerAndShiftLeft(value, shift); + + /// + /// uint128x1_t vextl_qu_du(int64_t a) + /// LSX: VEXTL.QU.DU Vd.Q, Vj.D + /// + public static Vector128 ZeroExtendWideningLower(Vector64 value) => ZeroExtendWideningLower(value); + + /// + /// uint128x1_t vextl_qu_du(uint64_t a) + /// LSX: VEXTL.QU.DU Vd.Q, Vj.D + /// + public static Vector128 ZeroExtendWideningLower(Vector64 value) => ZeroExtendWideningLower(value); + + /// + /// int16x8_t vexth_h_b(int8x16_t a) + /// LSX: VEXTH.H.B Vd.8H, Vj.16B + /// + public static Vector128 SignExtendWideningUpper(Vector128 value) => SignExtendWideningUpper(value); + + /// + /// int32x4_t vexth_w_h(int16x8_t a) + /// LSX: VEXTH.W.H Vd.4W, Vj.8H + /// + public static Vector128 SignExtendWideningUpper(Vector128 value) => SignExtendWideningUpper(value); + + /// + /// int64x2_t vexth_d_w(int32x4_t a) + /// LSX: VEXTH.D.W Vd.2D, Vj.4W + /// + public static Vector128 SignExtendWideningUpper(Vector128 value) => SignExtendWideningUpper(value); + + /// + /// int128x1_t vexth_d_w(int64x2_t a) + /// LSX: VEXTH.Q.D Vd.Q, Vj.2D + /// + public static Vector128 SignExtendWideningUpper(Vector128 value) => SignExtendWideningUpper(value); + + /// + /// int16x8_t vexth_HU_BU(int8x16_t a) + /// LSX: VEXTH.HU.BU Vd.8H, Vj.16B + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) => ZeroExtendWideningUpper(value); + + /// + /// uint16x8_t vexth_HU_BU(uint8x16_t a) + /// LSX: VEXTH.HU.BU Vd.8H, Vj.16B + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) => ZeroExtendWideningUpper(value); + + /// + /// int32x4_t vexth_WU_HU(int16x8_t a) + /// LSX: VEXTH.WU.HU Vd.4W, Vj.8H + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) => ZeroExtendWideningUpper(value); + + /// + /// uint32x4_t vexth_WU_HU(uint16x8_t a) + /// LSX: VEXTH.WU.HU Vd.4W, Vj.8H + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) => ZeroExtendWideningUpper(value); + + /// + /// int64x2_t vexth_DU_WU(uint32x4_t a) + /// LSX: VEXTH.DU.WU Vd.2D, Vj.4W + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) => ZeroExtendWideningUpper(value); + + /// + /// uint64x2_t vexth_DU_WU(uint32x4_t a) + /// LSX: VEXTH.DU.WU Vd.2D, Vj.4W + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) => ZeroExtendWideningUpper(value); + + /// + /// int128x1_t vexth_DU_WU(int64x2_t a) + /// LSX: VEXTH.QU.DU Vd.Q, Vj.2D + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) => ZeroExtendWideningUpper(value); + + /// + /// uint128x1_t vexth_DU_WU(uint64x2_t a) + /// LSX: VEXTH.QU.DU Vd.Q, Vj.2D + /// + public static Vector128 ZeroExtendWideningUpper(Vector128 value) => ZeroExtendWideningUpper(value); + + /// + /// int8x16_t vand_v(int8x16_t a, int8x16_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) => And(left, right); + + /// + /// uint8x16_t vand_v(uint8x16_t a, uint8x16_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) => And(left, right); + + /// + /// int16x8_t vand_v(int16x8_t a, int16x8_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) => And(left, right); + + /// + /// uint16x8_t vand_v(uint16x8_t a, uint16x8_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) => And(left, right); + + /// + /// int32x4_t vand_v(int32x4_t a, int32x4_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) => And(left, right); + + /// + /// uint32x4_t vand_v(uint32x4_t a, uint32x4_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) => And(left, right); + + /// + /// int64x2_t vand_v(int64x2_t a, int64x2_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) => And(left, right); + + /// + /// uint64x2_t vand_v(uint64x2_t a, uint64x2_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) => And(left, right); + + /// + /// float32x4_t vand_v(float32x4_t a, float32x4_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) => And(left, right); + + /// + /// float64x2_t vand_v(float64x2_t a, float64x2_t b) + /// LSX: VAND.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 And(Vector128 left, Vector128 right) => And(left, right); + + /// + /// int8x16_t vandn_v(int8x16_t a, int8x16_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) => AndNot(left, right); + + /// + /// uint8x16_t vandn_v(uint8x16_t a, uint8x16_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) => AndNot(left, right); + + /// + /// int16x8_t vandn_v(int16x8_t a, int16x8_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) => AndNot(left, right); + + /// + /// uint16x8_t vandn_v(uint16x8_t a, uint16x8_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) => AndNot(left, right); + + /// + /// int32x4_t vandn_v(int32x4_t a, int32x4_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) => AndNot(left, right); + + /// + /// uint32x4_t vandn_v(uint32x4_t a, uint32x4_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) => AndNot(left, right); + + /// + /// int64x2_t vandn_v(int64x2_t a, int64x2_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) => AndNot(left, right); + + /// + /// uint64x2_t vandn_v(uint64x2_t a, uint64x2_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) => AndNot(left, right); + + /// + /// float32x4_t vandn_v(float32x4_t a, float32x4_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) => AndNot(left, right); + + /// + /// float64x2_t vandn_v(float64x2_t a, float64x2_t b) + /// LSX: VANDN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 AndNot(Vector128 left, Vector128 right) => AndNot(left, right); + + /// + /// uint8x8_t vor(uint8x8_t a, uint8x8_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) => Or(left, right); + + /// + /// float64x1_t vor(float64x1_t a, float64x1_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) => Or(left, right); + + /// + /// int16x4_t vor(int16x4_t a, int16x4_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) => Or(left, right); + + /// + /// int32x2_t vor(int32x2_t a, int32x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) => Or(left, right); + + /// + /// int64x1_t vor(int64x1_t a, int64x1_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) => Or(left, right); + + /// + /// int8x8_t vor(int8x8_t a, int8x8_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) => Or(left, right); + + /// + /// float32x2_t vor(float32x2_t a, float32x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) => Or(left, right); + + /// + /// uint16x4_t vor(uint16x4_t a, uint16x4_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) => Or(left, right); + + /// + /// uint32x2_t vor(uint32x2_t a, uint32x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) => Or(left, right); + + /// + /// uint64x1_t vor(uint64x1_t a, uint64x1_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 Or(Vector64 left, Vector64 right) => Or(left, right); + + /// + /// int8x16_t vor_v(int8x16_t a, int8x16_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) => Or(left, right); + + /// + /// uint8x16_t vor_v(uint8x16_t a, uint8x16_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) => Or(left, right); + + /// + /// int16x8_t vor_v(int16x8_t a, int16x8_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) => Or(left, right); + + /// + /// uint16x8_t vor_v(uint16x8_t a, uint16x8_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) => Or(left, right); + + /// + /// int32x4_t vor_v(int32x4_t a, int32x4_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) => Or(left, right); + + /// + /// uint32x4_t vor_v(uint32x4_t a, uint32x4_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) => Or(left, right); + + /// + /// int64x2_t vor_v(int64x2_t a, int64x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) => Or(left, right); + + /// + /// uint64x2_t vor_v(uint64x2_t a, uint64x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) => Or(left, right); + + /// + /// float32x4_t vor_v(float32x4_t a, float32x4_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) => Or(left, right); + + /// + /// float64x2_t vor_v(float64x2_t a, float64x2_t b) + /// LSX: VOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Or(Vector128 left, Vector128 right) => Or(left, right); + + /// + /// uint8x8_t vnori_b(uint8x8_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) => Not(value); + + /// + /// float64x1_t vnori_b(float64x1_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) => Not(value); + + /// + /// int16x4_t vnori_b(int16x4_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) => Not(value); + + /// + /// int32x2_t vnori_b(int32x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) => Not(value); + + /// + /// int64x1_t vnori_b(int64x1_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) => Not(value); + + /// + /// int8x8_t vnori_b(int8x8_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) => Not(value); + + /// + /// float32x2_t vnori_b(float32x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) => Not(value); + + /// + /// uint16x4_t vnori_b(uint16x4_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) => Not(value); + + /// + /// uint32x2_t vnori_b(uint32x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) => Not(value); + + /// + /// uint64x1_t vnori_b(uint64x1_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector64 Not(Vector64 value) => Not(value); + + /// + /// uint8x16_t vnori_b(uint8x16_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) => Not(value); + + /// + /// float64x2_t vnori_b(float64x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) => Not(value); + + /// + /// int16x8_t vnori_b(int16x8_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) => Not(value); + + /// + /// int32x4_t vnori_b(int32x4_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) => Not(value); + + /// + /// int64x2_t vnori_b(int64x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) => Not(value); + + /// + /// int8x16_t vnori_b(int8x16_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) => Not(value); + + /// + /// float32x4_t vnori_b(float32x4_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) => Not(value); + + /// + /// uint16x8_t vnori_b(uint16x8_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) => Not(value); + + /// + /// uint32x4_t vnori_b(uint32x4_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// + public static Vector128 Not(Vector128 value) => Not(value); + + /// + /// uint64x2_t vnori_b(uint64x2_t a) + /// LSX: VNORI.B Vd.16B, Vj.16B, 0 + /// The above native signature does not exist. We provide this additional overload for consistency with the other scalar APIs. + /// + public static Vector128 Not(Vector128 value) => Not(value); + + /// + /// int8x16_t vnor_v(int8x16_t a, int8x16_t b) + /// LSX: VNOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) => NotOr(left, right); + + /// + /// uint8x16_t vnor_v(uint8x16_t a, uint8x16_t b) + /// LSX: VNOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) => NotOr(left, right); + + /// + /// int16x8_t vnor_v(int16x8_t a, int16x8_t b) + /// LSX: VNOR.V Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) => NotOr(left, right); + + /// + /// uint16x8_t vnor_v(uint16x8_t a, uint16x8_t b) + /// LSX: VNOR.V Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) => NotOr(left, right); + + /// + /// int32x4_t vnor_v(int32x4_t a, int32x4_t b) + /// LSX: VNOR.V Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) => NotOr(left, right); + + /// + /// uint32x4_t vnor_v(uint32x4_t a, uint32x4_t b) + /// LSX: VNOR.V Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) => NotOr(left, right); + + /// + /// int64x2_t vnor_v(int64x2_t a, int64x2_t b) + /// LSX: VNOR.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) => NotOr(left, right); + + /// + /// uint64x2_t vnor_v(uint64x2_t a, uint64x2_t b) + /// LSX: VNOR.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) => NotOr(left, right); + + /// + /// float32x4_t vnor_v(float32x4_t a, float32x4_t b) + /// LSX: VNOR.V Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) => NotOr(left, right); + + /// + /// float64x2_t vnor_v(float64x2_t a, float64x2_t b) + /// LSX: VNOR.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 NotOr(Vector128 left, Vector128 right) => NotOr(left, right); + + /// + /// uint8x8_t vorn(uint8x8_t a, uint8x8_t b) + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// float64x1_t vorn(float64x1_t a, float64x1_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// int16x4_t vorn(int16x4_t a, int16x4_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// int32x2_t vorn(int32x2_t a, int32x2_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// int64x1_t vorn(int64x1_t a, int64x1_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// int8x8_t vorn(int8x8_t a, int8x8_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// float32x2_t vorn(float32x2_t a, float32x2_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// uint16x4_t vorn(uint16x4_t a, uint16x4_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// uint32x2_t vorn(uint32x2_t a, uint32x2_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// uint64x1_t vorn(uint64x1_t a, uint64x1_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector64 OrNot(Vector64 left, Vector64 right) => OrNot(left, right); + + /// + /// int8x16_t vorn_v(int8x16_t a, int8x16_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) => OrNot(left, right); + + /// + /// uint8x16_t vorn_v(uint8x16_t a, uint8x16_t b) + /// LSX: VORN.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) => OrNot(left, right); + + /// + /// int16x8_t vor_v(int16x8_t a, int16x8_t b) + /// LSX: VORN.V Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) => OrNot(left, right); + + /// + /// uint16x8_t vor_v(uint16x8_t a, uint16x8_t b) + /// LSX: VORN.V Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) => OrNot(left, right); + + /// + /// int32x4_t vorn_v(int32x4_t a, int32x4_t b) + /// LSX: VORN.V Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) => OrNot(left, right); + + /// + /// uint32x4_t vorn_v(uint32x4_t a, uint32x4_t b) + /// LSX: VORN.V Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) => OrNot(left, right); + + /// + /// int64x2_t vorn_v(int64x2_t a, int64x2_t b) + /// LSX: VORN.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) => OrNot(left, right); + + /// + /// uint64x2_t vorn_v(uint64x2_t a, uint64x2_t b) + /// LSX: VORN.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) => OrNot(left, right); + + /// + /// float32x4_t vorn_v(float32x4_t a, float32x4_t b) + /// LSX: VORN.V Vd.4S, Vj.4S, Vk.4S + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) => OrNot(left, right); + + /// + /// float64x2_t vorn_v(float64x2_t a, float64x2_t b) + /// LSX: VORN.V Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 OrNot(Vector128 left, Vector128 right) => OrNot(left, right); + + /// + /// uint8x8_t vxor(uint8x8_t a, uint8x8_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) => Xor(left, right); + + /// + /// float64x1_t vxor(float64x1_t a, float64x1_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) => Xor(left, right); + + /// + /// int16x4_t vxor(int16x4_t a, int16x4_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) => Xor(left, right); + + /// + /// int32x2_t vxor(int32x2_t a, int32x2_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) => Xor(left, right); + + /// + /// int64x1_t vxor(int64x1_t a, int64x1_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) => Xor(left, right); + + /// + /// int8x8_t vxor(int8x8_t a, int8x8_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) => Xor(left, right); + + /// + /// float32x2_t vxor(float32x2_t a, float32x2_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) => Xor(left, right); + + /// + /// uint16x4_t vxor(uint16x4_t a, uint16x4_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) => Xor(left, right); + + /// + /// uint32x2_t vxor(uint32x2_t a, uint32x2_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) => Xor(left, right); + + /// + /// uint64x1_t vxor(uint64x1_t a, uint64x1_t b) + /// LSX: VXOR.V Vd.8B, Vj.8B, Vk.8B + /// + public static Vector64 Xor(Vector64 left, Vector64 right) => Xor(left, right); + + /// + /// int8x16_t vxor_v(int8x16_t a, int8x16_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) => Xor(left, right); + + /// + /// uint8x16_t vxor_v(uint8x16_t a, uint8x16_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) => Xor(left, right); + + /// + /// int16x8_t vxor_v(int16x8_t a, int16x8_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) => Xor(left, right); + + /// + /// uint16x8_t vxor_v(uint16x8_t a, uint16x8_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) => Xor(left, right); + + /// + /// int32x4_t vxor_v(int32x4_t a, int32x4_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) => Xor(left, right); + + /// + /// uint32x4_t vxor_v(uint32x4_t a, uint32x4_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) => Xor(left, right); + + /// + /// int64x2_t vxor_v(int64x2_t a, int64x2_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) => Xor(left, right); + + /// + /// uint64x2_t vxor_v(uint64x2_t a, uint64x2_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) => Xor(left, right); + + /// + /// float32x4_t vxor_v(float32x4_t a, float32x4_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) => Xor(left, right); + + /// + /// float64x2_t vxor_v(float64x2_t a, float64x2_t b) + /// LSX: VXOR.V Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 Xor(Vector128 left, Vector128 right) => Xor(left, right); + + /// + /// int8x16_t vslli_b(int8x16_t a, const int n) + /// LSX: VSLLI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// uint8x16_t vslli_b(uint8x16_t a, const int n) + /// LSX: VSLLI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// int16x8_t vslli_h(int16x8_t a, const int n) + /// LSX: VSLLI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// uint16x8_t vslli_h(uint16x8_t a, const int n) + /// LSX: VSLLI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// uint32x4_t vslli_w(uint32x4_t a, const int n) + /// LSX: VSLLI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// uint32x4_t vslli_w(uint32x4_t a, const int n) + /// LSX: VSLLI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// int64x2_t vslli_d(int64x2_t a, const int n) + /// LSX: VSLLI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// uint64x2_t vslli_d(uint64x2_t a, const int n) + /// LSX: VSLLI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftLeftLogical(Vector128 value, const byte shift) => ShiftLeftLogical(value, shift); + + /// + /// int8x16_t vbsll_v(int8x16_t a, const int shift) + /// LSX: VBSLL.V Vd.16B, Vj.16B, ui4 + /// + public static Vector128 ShiftLeftLogicalByByte(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftLeftLogicalByByte(value, shift); + + /// + /// uint8x16_t vbsll_v(uint8x16_t a, const int shift) + /// LSX: VBSLL.V Vd.16B, Vj.16B, ui4 + /// + public static Vector128 ShiftLeftLogicalByByte(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftLeftLogicalByByte(value, shift); + + /// + /// int8x16_t vsll_b(int8x16_t a, int8x16_t b) + /// LSX: VSLL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) => ShiftLeftLogical(value, shift); + + /// + /// uint8x16_t vsll_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSLL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) => ShiftLeftLogical(value, shift); + + /// + /// int16x8_t vsll_h(int16x8_t value, int16x8_t shift) + /// LSX: VSLL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) => ShiftLeftLogical(value, shift); + + /// + /// uint16x8_t vsll_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSLL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) => ShiftLeftLogical(value, shift); + + /// + /// int32x4_t vsll_w(int32x4_t value, int32x4_t shift) + /// LSX: VSLL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) => ShiftLeftLogical(value, shift); + + /// + /// uint32x4_t vsll_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSLL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) => ShiftLeftLogical(value, shift); + + /// + /// int64x2_t vsll_d(int64x2_t value, int64x2_t shift) + /// LSX: VSLL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) => ShiftLeftLogical(value, shift); + + /// + /// uint64x2_t vsll_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSLL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftLeftLogical(Vector128 value, Vector128 shift) => ShiftLeftLogical(value, shift); + + /// + /// uint8x16_t vsrli_b(uint8x16_t a, const int n) + /// LSX: VSRLI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint8x16_t vsrli_b(uint8x16_t a, const int n) + /// LSX: VSRLI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint16x8_t vsrli_h(uint16x8_t a, const int n) + /// LSX: VSRLI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint16x8_t vsrli_h(uint16x8_t a, const int n) + /// LSX: VSRLI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint32x4_t vsrli_w(uint32x4_t a, const int n) + /// LSX: VSRLI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint32x4_t vsrli_w(uint32x4_t a, const int n) + /// LSX: VSRLI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint64x2_t vsrli_d(uint64x2_t a, const int n) + /// LSX: VSRLI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// uint64x2_t vsrli_d(uint64x2_t a, const int n) + /// LSX: VSRLI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogical(Vector128 value, const byte shift) => ShiftRightLogical(value, shift); + + /// + /// int8x16_t vbsrl_v(int8x16_t a, const int shift) + /// LSX: VBSRL.V Vd.16B, Vj.16B, ui4 + /// + public static Vector128 ShiftRightLogicalByByte(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalByByte(value, shift); + + /// + /// uint8x16_t vbsrl_v(uint8x16_t a, const int shift) + /// LSX: VBSRL.V Vd.16B, Vj.16B, ui4 + /// + public static Vector128 ShiftRightLogicalByByte(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalByByte(value, shift); + + /// + /// int8x16_t vsrl_b(int8x16_t a, int8x16_t b) + /// LSX: VSRL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) => ShiftRightLogical(value, shift); + + /// + /// uint8x16_t vsrl_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSRL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) => ShiftRightLogical(value, shift); + + /// + /// int16x8_t vsrl_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) => ShiftRightLogical(value, shift); + + /// + /// uint16x8_t vsrl_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSRL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) => ShiftRightLogical(value, shift); + + /// + /// int32x4_t vsrl_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) => ShiftRightLogical(value, shift); + + /// + /// uint32x4_t vsrl_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSRL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) => ShiftRightLogical(value, shift); + + /// + /// int64x2_t vsrl_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) => ShiftRightLogical(value, shift); + + /// + /// uint64x2_t vsrl_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSRL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightLogical(Vector128 value, Vector128 shift) => ShiftRightLogical(value, shift); + + /// + /// uint8x16_t vsrlri_b(uint8x16_t a, const int n) + /// LSX: VSRLRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint8x16_t vsrlri_b(uint8x16_t a, const int n) + /// LSX: VSRLRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint16x8_t vsrlri_h(uint16x8_t a, const int n) + /// LSX: VSRLRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint16x8_t vsrlri_h(uint16x8_t a, const int n) + /// LSX: VSRLRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint32x4_t vsrlri_w(uint32x4_t a, const int n) + /// LSX: VSRLRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint32x4_t vsrlri_w(uint32x4_t a, const int n) + /// LSX: VSRLRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint64x2_t vsrlri_d(uint64x2_t a, const int n) + /// LSX: VSRLRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint64x2_t vsrlri_d(uint64x2_t a, const int n) + /// LSX: VSRLRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, const byte shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// int8x16_t vsrlr_b(int8x16_t a, int8x16_t b) + /// LSX: VSRLR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint8x16_t vsrlr_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSRLR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// int16x8_t vsrlr_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRLR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint16x8_t vsrlr_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSRLR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// int32x4_t vsrlr_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRLR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint32x4_t vsrlr_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSRLR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// int64x2_t vsrlr_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRLR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint64x2_t vsrlr_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSRLR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightLogicalRounded(Vector128 value, Vector128 shift) => ShiftRightLogicalRounded(value, shift); + + /// + /// uint8x16_t vsrlrni_b_h(uint16x8_t left, uint16x8_t right, const int n) + /// LSX: VSRLRNI.B.H Vd, Vj, ui4 ///NOTE: The Vd is both input and output, so the left shoule be ref type!!! + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalRoundedNarrowingLower(left, right, shift); + + /// + /// int8x16_t vsrlrni_b_h(int16x8_t left, int16x8_t right, const int n) + /// LSX: VSRLRNI.B.H Vd, Vj, ui4 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalRoundedNarrowingLower(left, right, shift); + + /// + /// int16x8_t vsrlrni_h_w(int32x4_t left, int32x4_t right, const int n) + /// LSX: VSRLRNI.H.W Vd, Vj, ui5 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalRoundedNarrowingLower(left, right, shift); + + /// + /// uint16x8_t vsrlrni_h_w(uint32x4_t left, uint32x4_t right, const int n) + /// LSX: VSRLRNI.H.W Vd, Vj, ui5 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalRoundedNarrowingLower(left, right, shift); + + /// + /// int32x4_t vsrlrni_w_d(int64x2_t left, int64x2_t right, const int n) + /// LSX: VSRLRNI.W.D Vd, Vj, ui6 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalRoundedNarrowingLower(left, right, shift); + + /// + /// uint32x4_t vsrlrni_w_d(uint64x2_t left, uint64x2_t right, const int n) + /// LSX: VSRLRNI.W.D Vd, Vj, ui6 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalRoundedNarrowingLower(left, right, shift); + + ///// + ///// int64x2_t vsrlrni_d_q(int128x1_t left, int128x1_t right, const int n) + ///// LSX: VSRLRNI.D.Q Vd, Vj, ui7 + ///// + //public static Vector128 ShiftRightLogicalRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightLogicalRoundedNarrowingLower(left, right, shift); + + /// + /// int8x8_t vsrlrn_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRLRN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingLower(value, shift); + + /// + /// uint8x8_t vsrlrn_b_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSRLRN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingLower(value, shift); + + /// + /// int16x4_t vsrlrn_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRLRN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingLower(value, shift); + + /// + /// uint16x4_t vsrlrn_h_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSRLRN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingLower(value, shift); + + /// + /// int32x2_t vsrlrn_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRLRN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingLower(value, shift); + + /// + /// uint32x2_t vsrlrn_w_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSRLRN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingLower(value, shift); + + /// + /// int8x16_t vsrai_b(int8x16_t a, const int n) + /// LSX: VSRAI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, const byte shift) => ShiftRightArithmetic(value, shift); + + /// + /// int16x8_t vsrai_h(int16x8_t a, const int n) + /// LSX: VSRAI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, const byte shift) => ShiftRightArithmetic(value, shift); + + /// + /// int32x4_t vsrai_w(int32x4_t a, const int n) + /// LSX: VSRAI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, const byte shift) => ShiftRightArithmetic(value, shift); + + /// + /// int64x2_t vsrai_d(int64x2_t a, const int n) + /// LSX: VSRAI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, const byte shift) => ShiftRightArithmetic(value, shift); + + /// + /// uint8x16_t vsra_b(uint8x16_t a, uint8x16_t b) + /// LSX: VSRA.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, Vector128 shift) => ShiftRightArithmetic(value, shift); + + /// + /// int16x8_t vsra_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRA.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, Vector128 shift) => ShiftRightArithmetic(value, shift); + + /// + /// int32x4_t vsra_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRA.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, Vector128 shift) => ShiftRightArithmetic(value, shift); + + /// + /// int64x2_t vsra_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRA.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightArithmetic(Vector128 value, Vector128 shift) => ShiftRightArithmetic(value, shift); + + /// + /// int8x16_t vsrari_b(int8x16_t a, const int n) + /// LSX: VSRARI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, const byte shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int16x8_t vsrari_h(int16x8_t a, const int n) + /// LSX: VSRARI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, const byte shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int32x4_t vsrari_w(int32x4_t a, const int n) + /// LSX: VSRARI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, const byte shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int64x2_t vsrari_d(int64x2_t a, const int n) + /// LSX: VSRARI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, const byte shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int8x16_t vsrar_b(int8x16_t a, int8x16_t b) + /// LSX: VSRAR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, Vector128 shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int16x8_t vsrar_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRAR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, Vector128 shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int32x4_t vsrar_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRAR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, Vector128 shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int64x2_t vsrar_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRAR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 ShiftRightArithmeticRounded(Vector128 value, Vector128 shift) => ShiftRightArithmeticRounded(value, shift); + + /// + /// int8x16_t vsrarni_b_h(int16x8_t left, int16x8_t right, const int n) + /// LSX: VSRARNI.B.H Vd, Vj, ui4 ///NOTE: The Vd is both input and output, so the left shoule be ref type!!! + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightArithmeticRoundedNarrowingLower(left, right, shift); + + /// + /// int16x8_t vsrarni_h_w(int32x4_t left, int32x4_t right, const int n) + /// LSX: VSRARNI.H.W Vd, Vj, ui5 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightArithmeticRoundedNarrowingLower(left, right, shift); + + /// + /// int32x4_t vsrarni_w_d(int64x2_t left, int64x2_t right, const int n) + /// LSX: VSRARNI.W.D Vd, Vj, ui6 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightArithmeticRoundedNarrowingLower(left, right, shift); + + ///// + ///// int64x2_t vsrarni_d_q(int128x1_t left, int128x1_t right, const int n) + ///// LSX: VSRARNI.D.Q Vd, Vj, ui7 + ///// + //public static Vector128 ShiftRightArithmeticRoundedNarrowingLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightArithmeticRoundedNarrowingLower(left, right, shift); + + /// + /// int8x8_t vsrarn_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRARN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticRoundedNarrowingLower(value, shift); + + /// + /// int16x4_t vsrarn_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRARN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticRoundedNarrowingLower(value, shift); + + /// + /// uint16x4_t vsrarn_h_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSRARN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticRoundedNarrowingLower(value, shift); + + /// + /// int32x2_t vsrarn_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRARN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticRoundedNarrowingLower(value, shift); + + /// + /// uint8x16_t vrotri_b(uint8x16_t a, const int n) + /// LSX: VROTRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint8x16_t vrotri_b(uint8x16_t a, const int n) + /// LSX: VROTRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint16x8_t vrotri_h(uint16x8_t a, const int n) + /// LSX: VROTRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint16x8_t vrotri_h(uint16x8_t a, const int n) + /// LSX: VROTRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint32x4_t vrotri_w(uint32x4_t a, const int n) + /// LSX: VROTRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint32x4_t vrotri_w(uint32x4_t a, const int n) + /// LSX: VROTRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint64x2_t vrotri_d(uint64x2_t a, const int n) + /// LSX: VROTRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) => RotateRight(value, shift); + + /// + /// uint64x2_t vrotri_d(uint64x2_t a, const int n) + /// LSX: VROTRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 RotateRight(Vector128 value, const byte shift) => RotateRight(value, shift); + + /// + /// int8x16_t vrotr_b(int8x16_t a, int8x16_t b) + /// LSX: VROTR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) => RotateRight(value, shift); + + /// + /// uint8x16_t vrotr_b(uint8x16_t a, uint8x16_t b) + /// LSX: VROTR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) => RotateRight(value, shift); + + /// + /// int16x8_t vrotr_h(int16x8_t value, int16x8_t shift) + /// LSX: VROTR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) => RotateRight(value, shift); + + /// + /// uint16x8_t vrotr_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VROTR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) => RotateRight(value, shift); + + /// + /// int32x4_t vrotr_w(int32x4_t value, int32x4_t shift) + /// LSX: VROTR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) => RotateRight(value, shift); + + /// + /// uint32x4_t vrotr_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VROTR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) => RotateRight(value, shift); + + /// + /// int64x2_t vrotr_d(int64x2_t value, int64x2_t shift) + /// LSX: VROTR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) => RotateRight(value, shift); + + /// + /// uint64x2_t vrotr_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VROTR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 RotateRight(Vector128 value, Vector128 shift) => RotateRight(value, shift); + + /// + /// int8x16_t vsigncov_b(int8x16_t a) + /// LSX: VSIGNCOV.B Vd.16B, Vj.16B, Vj.16B + /// + public static Vector128 Abs(Vector128 value) => Abs(value); + + /// + /// int16x8_t vsigncov_h(int16x8_t a) + /// LSX: VSIGNCOV.H Vd.8H, Vj.8H, Vj.8H + /// + public static Vector128 Abs(Vector128 value) => Abs(value); + + /// + /// int32x4_t vsigncov_w(int32x4_t a) + /// LSX: VSIGNCOV.W Vd.4W, Vj.4W, Vj.4W + /// + public static Vector128 Abs(Vector128 value) => Abs(value); + + /// + /// int64x2_t vsigncov_d(int64x2_t a) + /// LSX: VSIGNCOV.D Vd.2D, Vj.2D, Vj.2D + /// + public static Vector128 Abs(Vector128 value) => Abs(value); + + /// + /// float32x4_t vbitclri_w(float32x4_t a) + /// LSX: VBITCLRI.W Vd.4S, Vj.4S, 31 + /// + public static Vector128 Abs(Vector128 value) => Abs(value); + + /// + /// float64x2_t vbitclri_d(float64x2_t a) + /// LSX: VBITCLRI.D Vd.2D, Vj.2D, 63 + /// + public static Vector128 Abs(Vector128 value) => Abs(value); + + /// + /// float32x4_t vfrintrm_s(float32x4_t a) + /// LSX: VFRINTRM.S Vd.4S, Vj.4S + /// + public static Vector128 Floor(Vector128 value) => Floor(value); + + /// + /// float64x2_t vfrintrm_d(float64x2_t a) + /// LSX: VFRINTRM.D Vd.2D, Vj.2D + /// + public static Vector128 Floor(Vector128 value) => Floor(value); + + /// + /// float32x4_t vfrintrp_s(float32x4_t a) + /// LSX: VFRINTRP.S Vd.4S, Vj.4S + /// + public static Vector128 Ceiling(Vector128 value) => Ceiling(value); + + /// + /// float64x2_t vfrintrp_d(float64x2_t a) + /// LSX: VFRINTRP.D Vd.2D, Vj.2D + /// + public static Vector128 Ceiling(Vector128 value) => Ceiling(value); + + /// + /// float32x4_t vfrintrz_s(float32x4_t a) + /// LSX: VFRINTRZ.S Vd.4S, Vj.4S + /// + public static Vector128 RoundToZero(Vector128 value) => RoundToZero(value); + + /// + /// float64x2_t vfrintrz_d(float64x2_t a) + /// LSX: VFRINTRZ.D Vd.2D, Vj.2D + /// + public static Vector128 RoundToZero(Vector128 value) => RoundToZero(value); + + /// + /// float32x4_t vfrintrm_s(float32x4_t a) + /// LSX: VFRINTRM.S Vd.4S, Vj.4S + /// + public static Vector128 RoundToNegativeInfinity(Vector128 value) => RoundToNegativeInfinity(value); + + /// + /// float64x2_t vfrintrm_d(float64x2_t a) + /// LSX: VFRINTRM.D Vd.2D, Vj.2D + /// + public static Vector128 RoundToNegativeInfinity(Vector128 value) => RoundToNegativeInfinity(value); + + /// + /// float32x4_t vfrintrp_s(float32x4_t a) + /// LSX: VFRINTRP.S Vd.4S, Vj.4S + /// + public static Vector128 RoundToPositiveInfinity(Vector128 value) => RoundToPositiveInfinity(value); + + /// + /// float64x2_t vfrintrp_d(float64x2_t a) + /// LSX: VFRINTRP.D Vd.2D, Vj.2D + /// + public static Vector128 RoundToPositiveInfinity(Vector128 value) => RoundToPositiveInfinity(value); + + /// + /// int8x16_t vinsgr2vr_b(int8x16_t v, int8_t data, const int index) + /// LSX: VINSGR2VR.B Vd.B, Rj, ui4 + /// + public static Vector128 Insert(Vector128 vector, sbyte data, const byte index) => Insert(vector, data, index); + + /// + /// uint8x16_t vinsgr2vr_b(uint8x16_t v, uint8_t data, const int index) + /// LSX: VINSGR2VR.B Vd.B, Rj, ui4 + /// + public static Vector128 Insert(Vector128 vector, byte data, const byte index) => Insert(vector, data, index); + + /// + /// int16x8_t vinsgr2vr_h(int16x8_t v, int16_t data, const int index) + /// LSX: VINSGR2VR.H Vd.H, Rj, ui3 + /// + public static Vector128 Insert(Vector128 vector, short data, const byte index) => Insert(vector, data, index); + + /// + /// uint16x8_t vinsgr2vr_h(uint16x8_t v, uint16_t data, const int index) + /// LSX: VINSGR2VR.H Vd.H, Rj, ui3 + /// + public static Vector128 Insert(Vector128 vector, ushort data, const byte index) => Insert(vector, data, index); + + /// + /// int32x4_t vinsgr2vr_w(int32x4_t v, int32_t data, const int index) + /// LSX: VINSGR2VR.W Vd.S, Rj, ui2 + /// + public static Vector128 Insert(Vector128 vector, int data, const byte index) => Insert(vector, data, index); + + /// + /// uint32x4_t vinsgr2vr_w(uint32x4_t v, uint32_t data, const int index) + /// LSX: VINSGR2VR.W Vd.S, Rj, ui2 + /// + public static Vector128 Insert(Vector128 vector, uint data, const byte index) => Insert(vector, data, index); + + /// + /// int64x2_t vinsgr2vr_d(int64x2_t v, int64_t data, const int index) + /// LSX: VINSGR2VR.D Vd.D, Rj, ui1 + /// + public static Vector128 Insert(Vector128 vector, long data, const byte index) => Insert(vector, data, index); + + /// + /// uint64x2_t vinsgr2vr_d(uint64x2_t v, uint64_t data, const int index) + /// LSX: VINSGR2VR.D Vd.D, Rj, ui1 + /// + public static Vector128 Insert(Vector128 vector, ulong data, const byte index) => Insert(vector, data, index); + + /// + /// float32x4_t xvinsve0_w(float32x4_t v, float32_t data, const int index) + /// LSX: VEXTRINS.W Vd.S, Vj.S, ui8 + /// + public static Vector128 Insert(Vector128 vector, float data, const byte index) => Insert(vector, data, index); + + /// + /// float64x2_t xvinsve0_d(float64x2_t v, float64_t data, const int index) + /// LSX: VEXTRINS.D Vd.D, Vj.D, ui8 + /// + public static Vector128 Insert(Vector128 vector, double data, const byte index) => Insert(vector, data, index); + + /// + /// int8x16_t vreplgr2vr_b(int8_t value) + /// LSX: VREPLGR2VR.B Vd.16B, Rj + /// + public static Vector128 DuplicateToVector128(sbyte value) => DuplicateToVector128(value); + + /// + /// uint8x16_t vreplgr2vr_b(uint8_t value) + /// LSX: VREPLGR2VR.B Vd.16B, Rj + /// + public static Vector128 DuplicateToVector128(byte value) => DuplicateToVector128(value); + + /// + /// int16x8_t vreplgr2vr_h(int16_t value) + /// LSX: VREPLGR2VR.H Vd.8H, Rj + /// + public static Vector128 DuplicateToVector128(short value) => DuplicateToVector128(value); + + /// + /// uint16x8_t vreplgr2vr_h(uint16_t value) + /// LSX: VREPLGR2VR.H Vd.8H, Rj + /// + public static Vector128 DuplicateToVector128(ushort value) => DuplicateToVector128(value); + + /// + /// int32x4_t vreplgr2vr_w(int32_t value) + /// LSX: VREPLGR2VR.W Vd.4W, Rj + /// + public static Vector128 DuplicateToVector128(int value) => DuplicateToVector128(value); + + /// + /// uint32x4_t vreplgr2vr_w(uint32_t value) + /// LSX: VREPLGR2VR.W Vd.4W, Rj + /// + public static Vector128 DuplicateToVector128(uint value) => DuplicateToVector128(value); + + /// + /// int64x2_t vreplgr2vr_d(int64_t value) + /// LSX: VREPLGR2VR.D Vd.2D, Rj + /// + public static Vector128 DuplicateToVector128(long value) => DuplicateToVector128(value); + + /// + /// uint64x2_t vreplgr2vr_d(uint64_t value) + /// LSX: VREPLGR2VR.D Vd.2D, Rj + /// + public static Vector128 DuplicateToVector128(ulong value) => DuplicateToVector128(value); + + /// + /// float32x4_t xvreplve0_w(float32_t value) + /// LSX: XVREPLVE0.W Vd.4S, Vj.S[0] + /// + public static Vector128 DuplicateToVector128(float value) => DuplicateToVector128(value); + + /// + /// float64x2_t xvreplve0_d(float64_t value) + /// LSX: XVREPLVE0.D Vd.2D, Vj.D[0] + /// + public static Vector128 DuplicateToVector128(double value) => DuplicateToVector128(value); + + /// + /// float32x4_t vffint_s_w(int32x4_t a) + /// LSX: VFFINT.S.W Vd.4S, Vj.4W + /// + public static Vector128 ConvertToSingle(Vector128 value) => ConvertToSingle(value); + + /// + /// float32x4_t vffint_s_wu(uint32x4_t a) + /// LSX: VFFINT.S.WU Vd.4S, Vj.4W + /// + public static Vector128 ConvertToSingle(Vector128 value) => ConvertToSingle(value); + + /// + /// float64x2_t vffint_d_l(int64x2_t a) + /// LSX: VFFINT.D.L Vd.2D, Vj.2D + /// + public static Vector128 ConvertToDouble(Vector128 value) => ConvertToDouble(value); + + /// + /// float64x2_t vffint_d_lu(uint64x2_t a) + /// LSX: VFFINT.D.LU Vd.2D, Vj.2D + /// + public static Vector128 ConvertToDouble(Vector128 value) => ConvertToDouble(value); + + /// + /// int8_t vfsrtpi_b(uint8x16_t value) + /// LSX: VFSRTPI.B Vd.16B, Vj.16B, 0 + /// + public static byte FirstNegativeInteger(Vector128 value) => FirstNegativeInteger(value); + + /// + /// int16_t vfsrtpi_h(uint16x8_t value) + /// LSX: VFSRTPI.H Vd.8H, Vj.8H, 0 + /// + public static ushort FirstNegativeInteger(Vector128 value) => FirstNegativeInteger(value); + + /// + /// bool vsetnez_v(uint8x16_t value) + /// LSX: VSETNEZ.V cd, Vj.16B + /// + public static bool HasElementsNotZero(Vector128 value) => HasElementsNotZero(value); + + /// + /// bool vseteqz_v(uint8x16_t value) + /// LSX: VSETEQZ.V cd, Vj.16B + /// + public static bool AllElementsIsZero(Vector128 value) => AllElementsIsZero(value); + + /// + /// bool vsetallnez_b(int8x16_t value) + /// LSX: VSETALLNEZ.B cd, Vj.16B + /// + public static bool AllElementsNotZero(Vector128 value) => AllElementsNotZero(value); + + /// + /// bool vsetallnez_b(uint8x16_t value) + /// LSX: VSETALLNEZ.B cd, Vj.16B + /// + public static bool AllElementsNotZero(Vector128 value) => AllElementsNotZero(value); + + /// + /// bool vsetallnez_h(int16x8_t value) + /// LSX: VSETALLNEZ.H cd, Vj.8H + /// + public static bool AllElementsNotZero(Vector128 value) => AllElementsNotZero(value); + + /// + /// bool vsetallnez_h(uint16x8_t value) + /// LSX: VSETALLNEZ.H cd, Vj.8H + /// + public static bool AllElementsNotZero(Vector128 value) => AllElementsNotZero(value); + + /// + /// bool vsetallnez_w(int32x4_t value) + /// LSX: VSETALLNEZ.W cd, Vj.4W + /// + public static bool AllElementsNotZero(Vector128 value) => AllElementsNotZero(value); + + /// + /// bool vsetallnez_w(uint32x4_t value) + /// LSX: VSETALLNEZ.W cd, Vj.4W + /// + public static bool AllElementsNotZero(Vector128 value) => AllElementsNotZero(value); + + /// + /// bool vsetallnez_w(int64x2_t value) + /// LSX: VSETALLNEZ.D cd, Vj.2D + /// + public static bool AllElementsNotZero(Vector128 value) => AllElementsNotZero(value); + + /// + /// bool vsetallnez_w(uint64x2_t value) + /// LSX: VSETALLNEZ.D cd, Vj.2D + /// + public static bool AllElementsNotZero(Vector128 value) => AllElementsNotZero(value); + + /// + /// bool vsetanyeqz_b(int8x16_t value) + /// LSX: VSETANYEQZ.B cd, Vj.16B + /// + public static bool HasElementsIsZero(Vector128 value) => HasElementsIsZero(value); + + /// + /// bool vsetanyeqz_b(uint8x16_t value) + /// LSX: VSETANYEQZ.B cd, Vj.16B + /// + public static bool HasElementsIsZero(Vector128 value) => HasElementsIsZero(value); + + /// + /// bool vsetanyeqz_h(int16x8_t value) + /// LSX: VSETANYEQZ.H cd, Vj.8H + /// + public static bool HasElementsIsZero(Vector128 value) => HasElementsIsZero(value); + + /// + /// bool vsetanyeqz_h(uint16x8_t value) + /// LSX: VSETANYEQZ.H cd, Vj.8H + /// + public static bool HasElementsIsZero(Vector128 value) => HasElementsIsZero(value); + + /// + /// bool vsetanyeqz_w(int32x4_t value) + /// LSX: VSETANYEQZ.W cd, Vj.4W + /// + public static bool HasElementsIsZero(Vector128 value) => HasElementsIsZero(value); + + /// + /// bool vsetanyeqz_w(uint32x4_t value) + /// LSX: VSETANYEQZ.W cd, Vj.4W + /// + public static bool HasElementsIsZero(Vector128 value) => HasElementsIsZero(value); + + /// + /// bool vsetanyeqz_w(int64x2_t value) + /// LSX: VSETANYEQZ.D cd, Vj.2D + /// + public static bool HasElementsIsZero(Vector128 value) => HasElementsIsZero(value); + + /// + /// bool vsetanyeqz_w(uint64x2_t value) + /// LSX: VSETANYEQZ.D cd, Vj.2D + /// + public static bool HasElementsIsZero(Vector128 value) => HasElementsIsZero(value); + + /// + /// uint8x16_t vsrlni_b_h(uint16x8_t left, uint16x8_t right, shift) + /// LSX: VSRLNI.B.H Vd, Vj, ui4 + /// + public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) => ShiftRightLogicalNarrowingLower(left, right, shift); + + /// + /// int16x8_t vsrlni_h_w(int32x4_t left, int32x4_t right, shift) + /// LSX: VSRLNI.H.W Vd, Vj, ui5 + /// + public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) => ShiftRightLogicalNarrowingLower(left, right, shift); + + /// + /// uint16x8_t vsrlni_h_w(uint32x4_t left, uint32x4_t right, shift) + /// LSX: VSRLNI.H.W Vd, Vj, ui5 + /// + public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) => ShiftRightLogicalNarrowingLower(left, right, shift); + + /// + /// int32x4_t vsrlni_w_d(int64x2_t left, int64x2_t right, shift) + /// LSX: VSRLNI.W.D Vd, Vj, ui6 + /// + public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) => ShiftRightLogicalNarrowingLower(left, right, shift); + + /// + /// uint32x4_t vsrlni_w_d(uint64x2_t left, uint64x2_t right, shift) + /// LSX: VSRLNI.W.D Vd, Vj, ui6 + /// + public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) => ShiftRightLogicalNarrowingLower(left, right, shift); + + ///// + ///// uint64x2_t vsrlni_d_q(uint128x1_t left, uint128x1_t right, shift) + ///// LSX: VSRLNI.D.Q Vd.Q, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightLogicalNarrowingLower(Vector128 left, Vector128 right, byte shift) => ShiftRightLogicalNarrowingLower(left, right, shift); + + /// + /// int8x8_t vsrln_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSRLN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingLower(value, shift); + + /// + /// uint8x8_t vsrln_b_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSRLN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingLower(value, shift); + + /// + /// int16x4_t vsrln_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSRLN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingLower(value, shift); + + /// + /// uint16x4_t vsrln_h_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSRLN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingLower(value, shift); + + /// + /// int32x2_t vsrln_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSRLN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingLower(value, shift); + + /// + /// uint32x2_t vsrln_w_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSRLN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalNarrowingLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingLower(value, shift); + + /// + /// int16x8_t vssrlni_b_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRLNI.B.H Vd.16B, Vj.8H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalNarrowingSaturateLower(left, right, shift); + + /// + /// uint16x8_t vssrlni_b_h(uint16x8_t left, uint16x8_t right, const byte n) + /// LSX: VSSRLNI.B.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalNarrowingSaturateLower(left, right, shift); + + /// + /// int16x8_t vssrlni_h_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRLNI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalNarrowingSaturateLower(left, right, shift); + + /// + /// uint16x8_t vssrlni_h_w(uint32x4_t left, uint32x4_t right, const byte n) + /// LSX: VSSRLNI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalNarrowingSaturateLower(left, right, shift); + + /// + /// int32x4_t vssrlni_w_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRLNI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalNarrowingSaturateLower(left, right, shift); + + /// + /// uint32x4_t vssrlni_w_d(uint64x2_t left, uint64x2_t right, const byte n) + /// LSX: VSSRLNI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalNarrowingSaturateLower(left, right, shift); + + ///// + ///// int64x2_t vssrlni_d_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRLNI.D.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightLogicalNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightLogicalNarrowingSaturateLower(left, right, shift); + + /// + /// int8x8_t vssrln_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRLN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingSaturateLower(value, shift); + + /// + /// uint8x8_t vssrln_b_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSSRLN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingSaturateLower(value, shift); + + /// + /// int16x4_t vssrln_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRLN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingSaturateLower(value, shift); + + /// + /// uint16x4_t vssrln_h_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSSRLN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingSaturateLower(value, shift); + + /// + /// int32x2_t vssrln_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRLN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingSaturateLower(value, shift); + + /// + /// uint32x2_t vssrln_w_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSSRLN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingSaturateLower(value, shift); + + /// + /// uint16x8_t vssrlni_bu_h(uint16x8_t left, uint16x8_t right, const byte n) + /// LSX: VSSRLNI.BU.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint16x8_t vssrlni_hu_w(uint32x4_t left, uint32x4_t right, const byte n) + /// LSX: VSSRLNI.HU.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint32x4_t vssrlni_wu_d(uint64x2_t left, uint64x2_t right, const byte n) + /// LSX: VSSRLNI.WU.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalNarrowingSaturateUnsignedLower(left, right, shift); + + ///// + ///// uint64x2_t vssrlni_du_q(uint128x1_t left, uint128x1_t right, const byte n) + ///// LSX: VSSRLNI.DU.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightLogicalNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint8x8_t vssrln_bu_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSSRLN.BU.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingSaturateUnsignedLower(value, shift); + + /// + /// uint16x4_t vssrln_hu_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSSRLN.HU.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingSaturateUnsignedLower(value, shift); + + /// + /// uint32x2_t vssrln_wu_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSSRLN.WU.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightLogicalNarrowingSaturateUnsignedLower(value, shift); + + /// + /// int16x8_t vssran_b_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRANI.B.H Vd.16B, Vj.8H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightArithmeticNarrowingSaturateLower(left, right, shift); + + /// + /// int16x8_t vssran_h_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRANI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightArithmeticNarrowingSaturateLower(left, right, shift); + + /// + /// int32x4_t vssran_w_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRANI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightArithmeticNarrowingSaturateLower(left, right, shift); + + ///// + ///// int64x2_t vssran_d_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRANI.D.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightArithmeticNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightArithmeticNarrowingSaturateLower(left, right, shift); + + /// + /// int8x8_t vssran_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRAN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticNarrowingSaturateLower(value, shift); + + /// + /// int16x4_t vssran_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRAN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticNarrowingSaturateLower(value, shift); + + /// + /// int32x2_t vssran_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRAN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticNarrowingSaturateLower(value, shift); + + /// + /// uint16x8_t vssrani_bu_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRANI.BU.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint16x8_t vssrani_hu_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRANI.HU.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint32x4_t vssrani_wu_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRANI.WU.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLower(left, right, shift); + + ///// + ///// uint64x2_t vssrani_du_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRANI.DU.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint8x8_t vssran_bu_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRAN.BU.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLower(value, shift); + + /// + /// uint16x4_t vssran_hu_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRAN.HU.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLower(value, shift); + + /// + /// uint32x2_t vssran_wu_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRAN.WU.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightArithmeticNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticNarrowingSaturateUnsignedLower(value, shift); + + /// + /// int16x8_t vssrlrni_b_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRLRNI.B.H Vd.16B, Vj.8H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(left, right, shift); + + /// + /// uint16x8_t vssrlrni_b_h(uint16x8_t left, uint16x8_t right, const byte n) + /// LSX: VSSRLRNI.B.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(left, right, shift); + + /// + /// int16x8_t vssrlrni_h_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRLRNI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(left, right, shift); + + /// + /// uint16x8_t vssrlrni_h_w(uint32x4_t left, uint32x4_t right, const byte n) + /// LSX: VSSRLRNI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(left, right, shift); + + /// + /// int32x4_t vssrlrni_w_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRLRNI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(left, right, shift); + + /// + /// uint32x4_t vssrlrni_w_d(uint64x2_t left, uint64x2_t right, const byte n) + /// LSX: VSSRLRNI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(left, right, shift); + + ///// + ///// int64x2_t vssrlrni_d_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRLRNI.D.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(left, right, shift); + + /// + /// int8x8_t vssrlrn_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRLRN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(value, shift); + + /// + /// uint8x8_t vssrlrn_b_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSSRLRN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(value, shift); + + /// + /// int16x4_t vssrlrn_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRLRN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(value, shift); + + /// + /// uint16x4_t vssrlrn_h_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSSRLRN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(value, shift); + + /// + /// int32x2_t vssrlrn_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRLRN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(value, shift); + + /// + /// uint32x2_t vssrlrn_w_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSSRLRN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingSaturateLower(value, shift); + + /// + /// uint16x8_t vssrlrni_bu_h(uint16x8_t left, uint16x8_t right, const byte n) + /// LSX: VSSRLRNI.BU.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint16x8_t vssrlrni_hu_w(uint32x4_t left, uint32x4_t right, const byte n) + /// LSX: VSSRLRNI.HU.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint32x4_t vssrlrni_wu_d(uint64x2_t left, uint64x2_t right, const byte n) + /// LSX: VSSRLRNI.WU.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(left, right, shift); + + ///// + ///// uint64x2_t vssrlrni_du_q(uint128x1_t left, uint128x1_t right, const byte n) + ///// LSX: VSSRLRNI.DU.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint8x8_t vssrlrn_bu_h(uint16x8_t value, uint16x8_t shift) + /// LSX: VSSRLRN.BU.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(value, shift); + + /// + /// uint16x4_t vssrlrn_hu_w(uint32x4_t value, uint32x4_t shift) + /// LSX: VSSRLRN.HU.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(value, shift); + + /// + /// uint32x2_t vssrlrn_wu_d(uint64x2_t value, uint64x2_t shift) + /// LSX: VSSRLRN.WU.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(value, shift); + + /// + /// int16x8_t vssrarn_b_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRARNI.B.H Vd.16B, Vj.8H, ui4 ///NOTE: the Vd is both input and output. + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateLower(left, right, shift); + + /// + /// int16x8_t vssrarn_h_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRARNI.H.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateLower(left, right, shift); + + /// + /// int32x4_t vssrarn_w_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRARNI.W.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateLower(left, right, shift); + + ///// + ///// int64x2_t vssrarn_d_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRARNI.D.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateLower(left, right, shift); + + /// + /// int8x8_t vssrarn_b_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRARN.B.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticRoundedNarrowingSaturateLower(value, shift); + + /// + /// int16x4_t vssrarn_h_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRARN.H.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticRoundedNarrowingSaturateLower(value, shift); + + /// + /// int32x2_t vssrarn_w_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRARN.W.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticRoundedNarrowingSaturateLower(value, shift); + + /// + /// uint16x8_t vssrarni_bu_h(int16x8_t left, int16x8_t right, const byte n) + /// LSX: VSSRARNI.BU.H Vd.16B, Vj.8H, ui4 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(15))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint16x8_t vssrarni_hu_w(int32x4_t left, int32x4_t right, const byte n) + /// LSX: VSSRARNI.HU.W Vd.8H, Vj.4W, ui5 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(31))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint32x4_t vssrarni_wu_d(int64x2_t left, int64x2_t right, const byte n) + /// LSX: VSSRARNI.WU.D Vd.4W, Vj.2D, ui6 + /// + public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(63))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(left, right, shift); + + ///// + ///// uint64x2_t vssrarni_du_q(int128x1_t left, int128x1_t right, const byte n) + ///// LSX: VSSRARNI.DU.Q Vd.2D, Vj.Q, ui7 + ///// + //public static Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 left, Vector128 right, [ConstantExpected(Max = (byte)(127))] byte shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(left, right, shift); + + /// + /// uint8x8_t vssrarn_bu_h(int16x8_t value, int16x8_t shift) + /// LSX: VSSRARN.BU.H Vd.8B, Vj.8H, Vk.8H + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(value, shift); + + /// + /// uint16x4_t vssrarn_hu_w(int32x4_t value, int32x4_t shift) + /// LSX: VSSRARN.HU.W Vd.4H, Vj.4W, Vk.4W + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(value, shift); + + /// + /// uint32x2_t vssrarn_wu_d(int64x2_t value, int64x2_t shift) + /// LSX: VSSRARN.WU.D Vd.2W, Vj.2D, Vk.2D + /// + public static Vector64 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(Vector128 value, Vector128 shift) => ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(value, shift); + + /// + /// int8x8_t vclo_b(int8x8_t a) + /// LSX: VCLO.B Vd.8B, Vj.8B + /// + public static Vector64 LeadingSignCount(Vector64 value) => LeadingSignCount(value); + + /// + /// int16x4_t vclo_h(int16x4_t a) + /// LSX: VCLO.H Vd.4H, Vj.4H + /// + public static Vector64 LeadingSignCount(Vector64 value) => LeadingSignCount(value); + + /// + /// int32x2_t vclo_w(int32x2_t a) + /// LSX: VCLO.W Vd.2W, Vj.2W + /// + public static Vector64 LeadingSignCount(Vector64 value) => LeadingSignCount(value); + + /// + /// int64x1_t vclo_d(int64x1_t a) + /// LSX: VCLO.D Vd.D, Vj.D + /// + public static Vector64 LeadingSignCount(Vector64 value) => LeadingSignCount(value); + + /// + /// int8x16_t vclo_b(int8x16_t a) + /// LSX: VCLO.B Vd.16B, Vj.16B + /// + public static Vector128 LeadingSignCount(Vector128 value) => LeadingSignCount(value); + + /// + /// int16x8_t vclo_h(int16x8_t a) + /// LSX: VCLO.H Vd.8H, Vj.8H + /// + public static Vector128 LeadingSignCount(Vector128 value) => LeadingSignCount(value); + + /// + /// int32x4_t vclo_w(int32x4_t a) + /// LSX: VCLO.W Vd.4W, Vj.4W + /// + public static Vector128 LeadingSignCount(Vector128 value) => LeadingSignCount(value); + + /// + /// int64x2_t vclo_d(int64x2_t a) + /// LSX: VCLO.D Vd.2D, Vj.2D + /// + public static Vector128 LeadingSignCount(Vector128 value) => LeadingSignCount(value); + + /// + /// uint8x8_t vclz_b(uint8x8_t a) + /// LSX: VCLZ.B Vd.8B, Vj.8B + /// + public static Vector64 LeadingZeroCount(Vector64 value) => LeadingZeroCount(value); + + /// + /// int8x8_t vclz_b(int8x8_t a) + /// LSX: VCLZ.B Vd.8B, Vj.8B + /// + public static Vector64 LeadingZeroCount(Vector64 value) => LeadingZeroCount(value); + + /// + /// int16x4_t vclz_h(int16x4_t a) + /// LSX: VCLZ.H Vd.4H, Vj.4H + /// + public static Vector64 LeadingZeroCount(Vector64 value) => LeadingZeroCount(value); + + /// + /// uint16x4_t vclz_h(uint16x4_t a) + /// LSX: VCLZ.H Vd.4H, Vj.4H + /// + public static Vector64 LeadingZeroCount(Vector64 value) => LeadingZeroCount(value); + + /// + /// int32x2_t vclz_w(int32x2_t a) + /// LSX: VCLZ.W Vd.2W, Vj.2W + /// + public static Vector64 LeadingZeroCount(Vector64 value) => LeadingZeroCount(value); + + /// + /// uint32x2_t vclz_w(uint32x2_t a) + /// LSX: VCLZ.W Vd.2W, Vj.2W + /// + public static Vector64 LeadingZeroCount(Vector64 value) => LeadingZeroCount(value); + + /// + /// int64x1_t vclz_d(int64x1_t a) + /// LSX: VCLZ.D Vd.D, Vj.D + /// + public static Vector64 LeadingZeroCount(Vector64 value) => LeadingZeroCount(value); + + /// + /// uint64x1_t vclz_d(uint64x1_t a) + /// LSX: VCLZ.D Vd.D, Vj.D + /// + public static Vector64 LeadingZeroCount(Vector64 value) => LeadingZeroCount(value); + + /// + /// int8x16_t vclz_b(int8x16_t a) + /// LSX: VCLZ.B Vd.16B, Vj.16B + /// + public static Vector128 LeadingZeroCount(Vector128 value) => LeadingZeroCount(value); + + /// + /// uint8x16_t vclz_b(uint8x16_t a) + /// LSX: VCLZ.B Vd.16B, Vj.16B + /// + public static Vector128 LeadingZeroCount(Vector128 value) => LeadingZeroCount(value); + + /// + /// int16x8_t vclz_h(int16x8_t a) + /// LSX: VCLZ.H Vd.8H, Vj.8H + /// + public static Vector128 LeadingZeroCount(Vector128 value) => LeadingZeroCount(value); + + /// + /// uint16x8_t vclz_h(uint16x8_t a) + /// LSX: VCLZ.H Vd.8H, Vj.8H + /// + public static Vector128 LeadingZeroCount(Vector128 value) => LeadingZeroCount(value); + + /// + /// int32x4_t vclz_w(int32x4_t a) + /// LSX: VCLZ.W Vd.4W, Vj.4W + /// + public static Vector128 LeadingZeroCount(Vector128 value) => LeadingZeroCount(value); + + /// + /// uint32x4_t vclz_w(uint32x4_t a) + /// LSX: VCLZ.W Vd.4W, Vj.4W + /// + public static Vector128 LeadingZeroCount(Vector128 value) => LeadingZeroCount(value); + + /// + /// int64x2_t vclz_d(int64x2_t a) + /// LSX: VCLZ.D Vd.2D, Vj.2D + /// + public static Vector128 LeadingZeroCount(Vector128 value) => LeadingZeroCount(value); + + /// + /// uint64x2_t vclz_d(uint64x2_t a) + /// LSX: VCLZ.D Vd.2D, Vj.2D + /// + public static Vector128 LeadingZeroCount(Vector128 value) => LeadingZeroCount(value); + + /// + /// int8x16_t vpcnt_b(int8x16_t a) + /// LSX: VPCNT_B Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) => PopCount(value); + + /// + /// uint8x16_t vpcnt_b(uint8x16_t a) + /// LSX: VPCNT_B Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) => PopCount(value); + + /// + /// int16x8_t vpcnt_h(int16x8_t a) + /// LSX: VPCNT_H Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) => PopCount(value); + + /// + /// uint16x8_t vpcnt_h(uint16x8_t a) + /// LSX: VPCNT_H Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) => PopCount(value); + + /// + /// int32x4_t vpcnt_w(int32x4_t a) + /// LSX: VPCNT_W Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) => PopCount(value); + + /// + /// uint32x4_t vpcnt_w(uint32x4_t a) + /// LSX: VPCNT_W Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) => PopCount(value); + + /// + /// int64x2_t vpcnt_d(int64x2_t a) + /// LSX: VPCNT_D Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) => PopCount(value); + + /// + /// uint64x2_t vpcnt_d(uint64x2_t a) + /// LSX: VPCNT_D Vd, Vj + /// + public static Vector128 PopCount(Vector128 value) => PopCount(value); + + /// + /// uint8x16_t vshuf_b(uint8x16_t vec, uint8x16_t idx) + /// LSX: VSHUF.B Vd.16B, Vj.16B, Vk.16B, Va.16B + /// + public static Vector128 VectorShuffle(Vector128 vector, Vector128 indexs) => VectorShuffle(vector, indexs); + + /// + /// int8x16_t vshuf_b(int8x16_t vec, int8x16_t idx) + /// LSX: VSHUF.B Vd.16B, Vj.16B, Vk.16B, Va.16B + /// + public static Vector128 VectorShuffle(Vector128 vector, Vector128 indexs) => VectorShuffle(vector, indexs); + + /// + /// uint8x16_t vshuf_b(uint8x16_t vec0, uint8x16_t vec1, uint8x16_t idx) + /// LSX: VSHUF.B Vd.16B, Vj.16B, Vk.16B, Va.16B + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) => VectorShuffle(vector0, vector1, indexs); + + /// + /// int8x16_t vshuf_b(int8x16_t vec0, int8x16_t vec1, int8x16_t idx) + /// LSX: VSHUF.B Vd.16B, Vj.16B, Vk.16B, Va.16B + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) => VectorShuffle(vector0, vector1, indexs); + + /// + /// int16x8_t vshuf_h(int16x8_t vec0, int16x8_t vec1, int16x8_t idx) + /// LSX: VSHUF.H Vd.8H, Vj.8H, Vk.8H //NOTE: Vd is both input and output while input as index. + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) => VectorShuffle(vector0, vector1, indexs); + + /// + /// uint16x8_t vshuf_h(uint16x8_t vecj, uint16x8_t veck, uint16x8_t idx) + /// LSX: VSHUF.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) => VectorShuffle(vector0, vector1, indexs); + + /// + /// int32x4_t vpermi_w(int32x4_t vec, uint8_t idx) + /// LSX: VPERMI.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 VectorShuffle(Vector128 vector, const byte indexs) => VectorShuffle(vector, indexs); + + /// + /// uint32x4_t vpermi_w(uint32x4_t vec, uint8_t idx) + /// LSX: VPERMI.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 VectorShuffle(Vector128 vector, const byte indexs) => VectorShuffle(vector, indexs); + + /// + /// int32x4_t vshuf_w(int32x4_t vec0, int32x4_t vec1, int32x4_t idx) + /// LSX: VSHUF.W Vd.4W, Vj.4W, Vk.4W //NOTE: Vd is both input and output while input as index. + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) => VectorShuffle(vector0, vector1, indexs); + + /// + /// uint32x4_t vshuf_w(uint32x4_t vecj, uint32x4_t veck, uint32x4_t idx) + /// LSX: VSHUF.W Vd.4W, Vj.4W, Vk.4W //NOTE: Vd is both input and output while input as index. + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) => VectorShuffle(vector0, vector1, indexs); + + /// + /// int64x2_t vshuf_d(int64x2_t vec0, int64x2_t vec1, int64x2_t idx) + /// LSX: VSHUF.D Vd.2D, Vj.2D, Vk.2D //NOTE: Vd is both input and output while input as index. + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) => VectorShuffle(vector0, vector1, indexs); + + /// + /// uint64x2_t vshuf_d(uint64x2_t vecj, uint64x2_t veck, uint64x2_t idx) + /// LSX: VSHUF.D Vd.2D, Vj.2D, Vk.2D //NOTE: Vd is both input and output while input as index. + /// + public static Vector128 VectorShuffle(Vector128 vector0, Vector128 vector1, Vector128 indexs) => VectorShuffle(vector0, vector1, indexs); + + /// + /// int8x16_t vshuf4i_b(int8x16_t vec, uint8_t idx) + /// LSX: VSHUF4I.B Vd.16B, Vj.16B, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// uint8x16_t vshuf4i_b(uint8x16_t vec, uint8_t idx) + /// LSX: VSHUF4I.B Vd.16B, Vj.16B, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// int16x8_t vshuf4i_h(int16x8_t vec, uint8_t idx) + /// LSX: VSHUF4I.H Vd.8H, Vj.8H, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// uint16x8_t vshuf4i_h(uint16x8_t vec, uint8_t idx) + /// LSX: VSHUF4I.H Vd.8H, Vj.8H, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// int32x4_t vshuf4i_w(int32x4_t vec, uint8_t idx) + /// LSX: VSHUF4I.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// uint32x4_t vshuf4i_w(uint32x4_t vec, uint8_t idx) + /// LSX: VSHUF4I.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector, byte indexs) => VectorShuffleBy4Elements(vector, indexs); + + /// + /// int64x2_t vshuf4i_d(int64x2_t vec0, uint64x2_t vec1, uint8_t idx) + /// LSX: VSHUF4I.D Vd.2D, Vj.2D, ui4 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector0, Vector128 vector1, byte indexs) => VectorShuffleBy4Elements(vector0, vector1, indexs); + + /// + /// uint64x2_t vshuf4i_d(uint64x2_t vec0, uint64x2_t vec1, uint8_t idx) + /// LSX: VSHUF4I.D Vd.2D, Vj.2D, ui4 + /// + public static Vector128 VectorShuffleBy4Elements(Vector128 vector0, Vector128 vector1, byte indexs) => VectorShuffleBy4Elements(vector0, vector1, indexs); + + /// + /// int8x16_t vilvl_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VILVL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) => VectorElementsFusionLower(left, right); + + /// + /// uint8x16_t vilvl_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VILVL.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) => VectorElementsFusionLower(left, right); + + /// + /// int16x8_t vilvl_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VILVL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) => VectorElementsFusionLower(left, right); + + /// + /// uint16x8_t vilvl_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VILVL.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) => VectorElementsFusionLower(left, right); + + /// + /// int32x4_t vilvl_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VILVL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) => VectorElementsFusionLower(left, right); + + /// + /// uint32x4_t vilvl_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VILVL.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) => VectorElementsFusionLower(left, right); + + /// + /// int64x2_t vilvl_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VILVL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) => VectorElementsFusionLower(left, right); + + /// + /// uint64x2_t vilvl_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VILVL.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionLower(Vector128 left, Vector128 right) => VectorElementsFusionLower(left, right); + + /// + /// int8x16_t vilvh_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VILVH.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) => VectorElementsFusionHight(left, right); + + /// + /// uint8x16_t vilvh_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VILVH.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) => VectorElementsFusionHight(left, right); + + /// + /// int16x8_t vilvh_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VILVH.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) => VectorElementsFusionHight(left, right); + + /// + /// uint16x8_t vilvh_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VILVH.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) => VectorElementsFusionHight(left, right); + + /// + /// int32x4_t vilvh_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VILVH.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) => VectorElementsFusionHight(left, right); + + /// + /// uint32x4_t vilvh_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VILVH.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) => VectorElementsFusionHight(left, right); + + /// + /// int64x2_t vilvh_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VILVH.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) => VectorElementsFusionHight(left, right); + + /// + /// uint64x2_t vilvh_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VILVH.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionHight(Vector128 left, Vector128 right) => VectorElementsFusionHight(left, right); + + /// + /// int8x16_t vpackev_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VPACKEV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) => VectorElementsFusionEven(left, right); + + /// + /// uint8x16_t vpackev_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VPACKEV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) => VectorElementsFusionEven(left, right); + + /// + /// int16x8_t vpackev_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VPACKEV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) => VectorElementsFusionEven(left, right); + + /// + /// uint16x8_t vpackev_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VPACKEV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) => VectorElementsFusionEven(left, right); + + /// + /// int32x4_t vpackev_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VPACKEV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) => VectorElementsFusionEven(left, right); + + /// + /// uint32x4_t vpackev_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VPACKEV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) => VectorElementsFusionEven(left, right); + + /// + /// int64x2_t vpackev_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VPACKEV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) => VectorElementsFusionEven(left, right); + + /// + /// uint64x2_t vpackev_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VPACKEV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionEven(Vector128 left, Vector128 right) => VectorElementsFusionEven(left, right); + + /// + /// int8x16_t vpackod_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VPACKOD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) => VectorElementsFusionOdd(left, right); + + /// + /// uint8x16_t vpackod_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VPACKOD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) => VectorElementsFusionOdd(left, right); + + /// + /// int16x8_t vpackod_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VPACKOD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) => VectorElementsFusionOdd(left, right); + + /// + /// uint16x8_t vpackod_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VPACKOD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) => VectorElementsFusionOdd(left, right); + + /// + /// int32x4_t vpackod_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VPACKOD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) => VectorElementsFusionOdd(left, right); + + /// + /// uint32x4_t vpackod_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VPACKOD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) => VectorElementsFusionOdd(left, right); + + /// + /// int64x2_t vpackod_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VPACKOD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) => VectorElementsFusionOdd(left, right); + + /// + /// uint64x2_t vpackod_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VPACKOD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementsFusionOdd(Vector128 left, Vector128 right) => VectorElementsFusionOdd(left, right); + + /// + /// int8x16_t vpickev_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VPICKEV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) => VectorEvenElementsJoin(left, right); + + /// + /// uint8x16_t vpickev_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VPICKEV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) => VectorEvenElementsJoin(left, right); + + /// + /// int16x8_t vpickev_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VPICKEV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) => VectorEvenElementsJoin(left, right); + + /// + /// uint16x8_t vpickev_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VPICKEV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) => VectorEvenElementsJoin(left, right); + + /// + /// int32x4_t vpickev_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VPICKEV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) => VectorEvenElementsJoin(left, right); + + /// + /// uint32x4_t vpickev_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VPICKEV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) => VectorEvenElementsJoin(left, right); + + /// + /// int64x2_t vpickev_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VPICKEV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) => VectorEvenElementsJoin(left, right); + + /// + /// uint64x2_t vpickev_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VPICKEV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorEvenElementsJoin(Vector128 left, Vector128 right) => VectorEvenElementsJoin(left, right); + + /// + /// int8x16_t vpickod_b(int8x16_t vec0, int8x16_t vec1) + /// LSX: VPICKOD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) => VectorOddElementsJoin(left, right); + + /// + /// uint8x16_t vpickod_b(uint8x16_t vec0, uint8x16_t vec1) + /// LSX: VPICKOD.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) => VectorOddElementsJoin(left, right); + + /// + /// int16x8_t vpickod_h(int16x8_t vec0, int16x8_t vec1) + /// LSX: VPICKOD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) => VectorOddElementsJoin(left, right); + + /// + /// uint16x8_t vpickod_h(uint16x8_t vec0, uint16x8_t vec1) + /// LSX: VPICKOD.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) => VectorOddElementsJoin(left, right); + + /// + /// int32x4_t vpickod_w(int32x4_t vec0, int32x4_t vec1) + /// LSX: VPICKOD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) => VectorOddElementsJoin(left, right); + + /// + /// uint32x4_t vpickod_w(uint32x4_t vec0, uint32x4_t vec1) + /// LSX: VPICKOD.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) => VectorOddElementsJoin(left, right); + + /// + /// int64x2_t vpickod_d(int64x2_t vec0, int64x2_t vec1) + /// LSX: VPICKOD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) => VectorOddElementsJoin(left, right); + + /// + /// uint64x2_t vpickod_d(uint64x2_t vec0, uint64x2_t vec1) + /// LSX: VPICKOD.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorOddElementsJoin(Vector128 left, Vector128 right) => VectorOddElementsJoin(left, right); + + /// + /// uint8x16_t vreplve_b(uint8x16_t vector, uint8_t idx) + /// LSX: VREPLVE.B Vd.16B, Vj.16B, rk + /// LSX: VREPLVEI.B Vd.16B, Vj.16B, ui4 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) => VectorElementReplicate(vector, elementIndexe); + + /// + /// int8x16_t vreplve_b(int8x16_t vector, uint8_t idx) + /// LSX: VREPLVE.B Vd.16B, Vj.16B, rk + /// LSX: VREPLVEI.B Vd.16B, Vj.16B, ui4 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) => VectorElementReplicate(vector, elementIndexe); + + /// + /// int16x8_t vreplve_h(int16x8_t vector, uint8_t idx) + /// LSX: VREPLVE.H Vd.8H, Vj.8H, rk + /// LSX: VREPLVEI.H Vd.8H, Vj.8H, ui3 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) => VectorElementReplicate(vector, elementIndexe); + + /// + /// uint16x8_t vreplve_h(uint16x8_t vector, uint8_t idx) + /// LSX: VREPLVE.H Vd.8H, Vj.8H, rk + /// LSX: VREPLVEI.H Vd.8H, Vj.8H, ui3 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) => VectorElementReplicate(vector, elementIndexe); + + /// + /// int32x4_t vreplve_w(int32x4_t vector, uint8_t idx) + /// LSX: VREPLVE.W Vd.4W, Vj.4W, rk + /// LSX: VREPLVEI.W Vd.4W, Vj.4W, ui2 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) => VectorElementReplicate(vector, elementIndexe); + + /// + /// uint32x4_t vreplve_w(uint32x4_t vector, uint8_t idx) + /// LSX: VREPLVE.W Vd.4W, Vj.4W, rk + /// LSX: VREPLVEI.W Vd.4W, Vj.4W, ui2 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) => VectorElementReplicate(vector, elementIndexe); + + /// + /// int64x2_t vreplve_d(int64x2_t vector, uint8_t idx) + /// LSX: VREPLVE.D Vd.2D, Vj.2D, rk + /// LSX: VREPLVEI.D Vd.2D, Vj.2D, ui1 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) => VectorElementReplicate(vector, elementIndexe); + + /// + /// uint64x2_t vreplve_d(uint64x2_t vector, uint8_t idx) + /// LSX: VREPLVE.D Vd.2D, Vj.2D, rk + /// LSX: VREPLVEI.D Vd.2D, Vj.2D, ui1 + /// + public static Vector128 VectorElementReplicate(Vector128 vector, byte elementIndexe) => VectorElementReplicate(vector, elementIndexe); + + /// + /// int8x16_t vextrins_b(int8x16_t vec, uint8_t idx) + /// LSX: VEXTRINS.B Vd.16B, Vj.16B, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) => UpdateOneVectorElement(vector, indexs); + + /// + /// uint8x16_t vextrins_b(uint8x16_t vec, uint8_t idx) + /// LSX: VEXTRINS.B Vd.16B, Vj.16B, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) => UpdateOneVectorElement(vector, indexs); + + /// + /// int16x8_t vextrins_h(int16x8_t vec, uint8_t idx) + /// LSX: VEXTRINS.H Vd.8H, Vj.8H, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) => UpdateOneVectorElement(vector, indexs); + + /// + /// uint16x8_t vextrins_h(uint16x8_t vec, uint8_t idx) + /// LSX: VEXTRINS.H Vd.8H, Vj.8H, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) => UpdateOneVectorElement(vector, indexs); + + /// + /// int32x4_t vextrins_w(int32x4_t vec, uint8_t idx) + /// LSX: VEXTRINS.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) => UpdateOneVectorElement(vector, indexs); + + /// + /// uint32x4_t vextrins_w(uint32x4_t vec, uint8_t idx) + /// LSX: VEXTRINS.W Vd.4W, Vj.4W, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) => UpdateOneVectorElement(vector, indexs); + + /// + /// int64x2_t vextrins_d(int64x2_t vec, uint8_t idx) + /// LSX: VEXTRINS.D Vd.2D, Vj.2D, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) => UpdateOneVectorElement(vector, indexs); + + /// + /// uint64x2_t vextrins_d(uint64x2_t vec, uint8_t idx) + /// LSX: VEXTRINS.D Vd.2D, Vj.2D, ui8 + /// + public static Vector128 UpdateOneVectorElement(Vector128 vector, const byte indexs) => UpdateOneVectorElement(vector, indexs); + + /// + /// int8x16_t vsigncov_b(int8x16_t sign, int8x16_t data) + /// LSX: VSIGNCOV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementNegatedBySign(Vector128 sign, Vector128 data) => VectorElementNegatedBySign(sign, data); + + /// + /// int16x8_t vsigncov_h(int16x8_t sign, int16x8_t data) + /// LSX: VSIGNCOV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementNegatedBySign(Vector128 sign, Vector128 data) => VectorElementNegatedBySign(sign, data); + + /// + /// int32x4_t vsigncov_w(int32x4_t sign, int32x4_t data) + /// LSX: VSIGNCOV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementNegatedBySign(Vector128 sign, Vector128 data) => VectorElementNegatedBySign(sign, data); + + /// + /// int64x2_t vsigncov_d(int64x2_t sign, int64x2_t data) + /// LSX: VSIGNCOV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementNegatedBySign(Vector128 sign, Vector128 data) => VectorElementNegatedBySign(sign, data); + + /// + /// int8x16_t vbitclri_b(int8x16_t a, const int n) + /// LSX: VBITCLRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// uint8x16_t vbitclri_b(uint8x16_t a, const int n) + /// LSX: VBITCLRI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// int16x8_t vbitclri_h(int16x8_t a, const int n) + /// LSX: VBITCLRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// uint16x8_t vbitclri_h(uint16x8_t a, const int n) + /// LSX: VBITCLRI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// uint32x4_t vbitclri_w(uint32x4_t a, const int n) + /// LSX: VBITCLRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// uint32x4_t vbitclri_w(uint32x4_t a, const int n) + /// LSX: VBITCLRI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// int64x2_t vbitclri_d(int64x2_t a, const int n) + /// LSX: VBITCLRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// uint64x2_t vbitclri_d(uint64x2_t a, const int n) + /// LSX: VBITCLRI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitClear(Vector128 value, const byte index) => VectorElementBitClear(value, index); + + /// + /// int8x16_t vbitclr_b(int8x16_t a, int8x16_t b) + /// LSX: VBITCLR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) => VectorElementBitClear(value, index); + + /// + /// uint8x16_t vbitclr_b(uint8x16_t a, uint8x16_t b) + /// LSX: VBITCLR.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) => VectorElementBitClear(value, index); + + /// + /// int16x8_t vbitclr_h(int16x8_t value, int16x8_t index) + /// LSX: VBITCLR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) => VectorElementBitClear(value, index); + + /// + /// uint16x8_t vbitclr_h(uint16x8_t value, uint16x8_t index) + /// LSX: VBITCLR.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) => VectorElementBitClear(value, index); + + /// + /// int32x4_t vbitclr_w(int32x4_t value, int32x4_t index) + /// LSX: VBITCLR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) => VectorElementBitClear(value, index); + + /// + /// uint32x4_t vbitclr_w(uint32x4_t value, uint32x4_t index) + /// LSX: VBITCLR.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) => VectorElementBitClear(value, index); + + /// + /// int64x2_t vbitclr_d(int64x2_t value, int64x2_t index) + /// LSX: VBITCLR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) => VectorElementBitClear(value, index); + + /// + /// uint64x2_t vbitclr_d(uint64x2_t value, uint64x2_t index) + /// LSX: VBITCLR.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitClear(Vector128 value, Vector128 index) => VectorElementBitClear(value, index); + + /// + /// int8x16_t vbitseti_b(int8x16_t a, const int n) + /// LSX: VBITSETI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// uint8x16_t vbitseti_b(uint8x16_t a, const int n) + /// LSX: VBITSETI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// int16x8_t vbitseti_h(int16x8_t a, const int n) + /// LSX: VBITSETI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// uint16x8_t vbitseti_h(uint16x8_t a, const int n) + /// LSX: VBITSETI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// uint32x4_t vbitseti_w(uint32x4_t a, const int n) + /// LSX: VBITSETI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// uint32x4_t vbitseti_w(uint32x4_t a, const int n) + /// LSX: VBITSETI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// int64x2_t vbitseti_d(int64x2_t a, const int n) + /// LSX: VBITSETI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// uint64x2_t vbitseti_d(uint64x2_t a, const int n) + /// LSX: VBITSETI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitSet(Vector128 value, const byte index) => VectorElementBitSet(value, index); + + /// + /// int8x16_t vbitset_b(int8x16_t a, int8x16_t b) + /// LSX: VBITSET.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) => VectorElementBitSet(value, index); + + /// + /// uint8x16_t vbitset_b(uint8x16_t a, uint8x16_t b) + /// LSX: VBITSET.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) => VectorElementBitSet(value, index); + + /// + /// int16x8_t vbitset_h(int16x8_t value, int16x8_t index) + /// LSX: VBITSET.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) => VectorElementBitSet(value, index); + + /// + /// uint16x8_t vbitset_h(uint16x8_t value, uint16x8_t index) + /// LSX: VBITSET.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) => VectorElementBitSet(value, index); + + /// + /// int32x4_t vbitset_w(int32x4_t value, int32x4_t index) + /// LSX: VBITSET.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) => VectorElementBitSet(value, index); + + /// + /// uint32x4_t vbitset_w(uint32x4_t value, uint32x4_t index) + /// LSX: VBITSET.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) => VectorElementBitSet(value, index); + + /// + /// int64x2_t vbitset_d(int64x2_t value, int64x2_t index) + /// LSX: VBITSET.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) => VectorElementBitSet(value, index); + + /// + /// uint64x2_t vbitset_d(uint64x2_t value, uint64x2_t index) + /// LSX: VBITSET.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitSet(Vector128 value, Vector128 index) => VectorElementBitSet(value, index); + + /// + /// int8x16_t vbitrevi_b(int8x16_t a, const int n) + /// LSX: VBITREVI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// uint8x16_t vbitrevi_b(uint8x16_t a, const int n) + /// LSX: VBITREVI.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// int16x8_t vbitrevi_h(int16x8_t a, const int n) + /// LSX: VBITREVI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// uint16x8_t vbitrevi_h(uint16x8_t a, const int n) + /// LSX: VBITREVI.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// uint32x4_t vbitrevi_w(uint32x4_t a, const int n) + /// LSX: VBITREVI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// uint32x4_t vbitrevi_w(uint32x4_t a, const int n) + /// LSX: VBITREVI.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// int64x2_t vbitrevi_d(int64x2_t a, const int n) + /// LSX: VBITREVI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// uint64x2_t vbitrevi_d(uint64x2_t a, const int n) + /// LSX: VBITREVI.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorElementBitRevert(Vector128 value, const byte index) => VectorElementBitRevert(value, index); + + /// + /// int8x16_t vbitrev_b(int8x16_t a, int8x16_t b) + /// LSX: VBITREV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) => VectorElementBitRevert(value, index); + + /// + /// uint8x16_t vbitrev_b(uint8x16_t a, uint8x16_t b) + /// LSX: VBITREV.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) => VectorElementBitRevert(value, index); + + /// + /// int16x8_t vbitrev_h(int16x8_t value, int16x8_t index) + /// LSX: VBITREV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) => VectorElementBitRevert(value, index); + + /// + /// uint16x8_t vbitrev_h(uint16x8_t value, uint16x8_t index) + /// LSX: VBITREV.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) => VectorElementBitRevert(value, index); + + /// + /// int32x4_t vbitrev_w(int32x4_t value, int32x4_t index) + /// LSX: VBITREV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) => VectorElementBitRevert(value, index); + + /// + /// uint32x4_t vbitrev_w(uint32x4_t value, uint32x4_t index) + /// LSX: VBITREV.W Vd.4W, Vj.4W, Vk.4W + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) => VectorElementBitRevert(value, index); + + /// + /// int64x2_t vbitrev_d(int64x2_t value, int64x2_t index) + /// LSX: VBITREV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) => VectorElementBitRevert(value, index); + + /// + /// uint64x2_t vbitrev_d(uint64x2_t value, uint64x2_t index) + /// LSX: VBITREV.D Vd.2D, Vj.2D, Vk.2D + /// + public static Vector128 VectorElementBitRevert(Vector128 value, Vector128 index) => VectorElementBitRevert(value, index); + + /// + /// int8x16_t vfrstp_b(int8x16_t value, int8x16_t save) + /// LSX: VFRSTP.B Vd.16B, Vj.16B, Vk.16B + /// + public static Vector128 IndexOfFirstNegativeElement(Vector128 value, Vector128 save) => IndexOfFirstNegativeElement(value, save); + + /// + /// int16x8_t vfrstp_h(int16x8_t value, int16x8_t save) + /// LSX: VFRSTP.H Vd.8H, Vj.8H, Vk.8H + /// + public static Vector128 IndexOfFirstNegativeElement(Vector128 value, Vector128 save) => IndexOfFirstNegativeElement(value, save); + + /// + /// int8x16_t vfrstpi_b(int8x16_t value, uint8_t save) + /// LSX: VFRSTPI.B Vd.16B, Vj.16B, ui4 + /// + public static Vector128 IndexOfFirstNegativeElement(Vector128 value, const byte save) => IndexOfFirstNegativeElement(value, save); + + /// + /// int16x8_t vfrstpi_h(int16x8_t value, uint8_t save) + /// LSX: VFRSTPI.H Vd.8H, Vj.8H, ui3 + /// + public static Vector128 IndexOfFirstNegativeElement(Vector128 value, const byte save) => IndexOfFirstNegativeElement(value, save); + + /// + /// int8x16_t vsat_b(int8x16_t value, uint8_t ui3) + /// LSX: VSAT.B Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorSaturate(Vector128 value, [ConstantExpected(Max = (byte)(7))] byte bits) => VectorSaturate(value, bits); + + /// + /// int16x8_t vsat_h(int16x8_t value, uint8_t ui4) + /// LSX: VSAT.H Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorSaturate(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte bits) => VectorSaturate(value, bits); + + /// + /// int32x4_t vsat_w(int32x4_t value, uint8_t ui5) + /// LSX: VSAT.W Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorSaturate(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte bits) => VectorSaturate(value, bits); + + /// + /// int64x2_t vsat_d(int64x2_t value, uint8_t ui6) + /// LSX: VSAT.D Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorSaturate(Vector128 value, [ConstantExpected(Max = (byte)(63))] byte bits) => VectorSaturate(value, bits); + + /// + /// uint8x16_t vsat_bu(uint8x16_t value, uint8_t ui3) + /// LSX: VSAT.BU Vd.16B, Vj.16B, ui3 + /// + public static Vector128 VectorSaturateUnsigned(Vector128 value, [ConstantExpected(Max = (byte)(7))] byte bits) => VectorSaturateUnsigned(value, bits); + + /// + /// uint16x8_t vsat_hu(uint16x8_t value, uint8_t ui4) + /// LSX: VSAT.HU Vd.8H, Vj.8H, ui4 + /// + public static Vector128 VectorSaturateUnsigned(Vector128 value, [ConstantExpected(Max = (byte)(15))] byte bits) => VectorSaturateUnsigned(value, bits); + + /// + /// uint32x4_t vsat_wu(uint32x4_t value, uint8_t ui5) + /// LSX: VSAT.WU Vd.4W, Vj.4W, ui5 + /// + public static Vector128 VectorSaturateUnsigned(Vector128 value, [ConstantExpected(Max = (byte)(31))] byte bits) => VectorSaturateUnsigned(value, bits); + + /// + /// uint64x2_t vsat_du(uint64x2_t value, uint8_t ui6) + /// LSX: VSAT.DU Vd.2D, Vj.2D, ui6 + /// + public static Vector128 VectorSaturateUnsigned(Vector128 value, [ConstantExpected(Max = (byte)(63))] byte bits) => VectorSaturateUnsigned(value, bits); + + /// + /// int32x4_t vfclass_s(float32x4_t a) + /// LSX: VFCLASS.S Vd.4S, Vj.4S + /// + public static Vector128 FloatClass(Vector128 value) => FloatClass(value); + + /// + /// int64x2_t vfclass_d(float64x2_t a) + /// LSX: VFCLASS.D Vd.2D, Vj.2D + /// + public static Vector128 FloatClass(Vector128 value) => FloatClass(value); + } +} diff --git a/src/libraries/System.Runtime.Intrinsics/ref/System.Runtime.Intrinsics.cs b/src/libraries/System.Runtime.Intrinsics/ref/System.Runtime.Intrinsics.cs index e0f07a1441e248..c90a5828490008 100644 --- a/src/libraries/System.Runtime.Intrinsics/ref/System.Runtime.Intrinsics.cs +++ b/src/libraries/System.Runtime.Intrinsics/ref/System.Runtime.Intrinsics.cs @@ -3959,6 +3959,2019 @@ internal Arm64() { } } } } +namespace System.Runtime.Intrinsics.LoongArch +{ + [System.CLSCompliantAttribute(false)] + public abstract partial class LoongArchBase + { + internal LoongArchBase() { } + public static bool IsSupported { get { throw null; } } + + public abstract partial class LoongArch64 + { + internal LoongArch64() { } + public static bool IsSupported { get { throw null; } } + + public static int LeadingSignCount(int value) { throw null; } + public static int LeadingSignCount(uint value) { throw null; } + public static int LeadingSignCount(long value) { throw null; } + public static int LeadingSignCount(ulong value) { throw null; } + public static int LeadingZeroCount(int value) { throw null; } + public static int LeadingZeroCount(uint value) { throw null; } + public static int LeadingZeroCount(long value) { throw null; } + public static int LeadingZeroCount(ulong value) { throw null; } + public static int TrailingOneCount(int value) { throw null; } + public static int TrailingOneCount(uint value) { throw null; } + public static int TrailingOneCount(long value) { throw null; } + public static int TrailingOneCount(ulong value) { throw null; } + public static int TrailingZeroCount(int value) { throw null; } + public static int TrailingZeroCount(uint value) { throw null; } + public static int TrailingZeroCount(long value) { throw null; } + public static int TrailingZeroCount(ulong value) { throw null; } + public static long MultiplyHigh(long left, long right) { throw null; } + public static ulong MultiplyHigh(ulong left, ulong right) { throw null; } + public static long ReverseElementBits(long value) { throw null; } + public static ulong ReverseElementBits(ulong value) { throw null; } + public static long ReverseElementBits(int value) { throw null; } + public static ulong ReverseElementBits(uint value) { throw null; } + public static int ReverseElementBits(int value) { throw null; } + public static uint ReverseElementBits(uint value) { throw null; } + public static long ReverseElementBits(long value) { throw null; } + public static ulong ReverseElementBits(ulong value) { throw null; } + public static float ReciprocalEstimate(float value) { throw null; } + public static double ReciprocalEstimate(double value) { throw null; } + public static float ReciprocalSqrtEstimate(float value) { throw null; } + public static double ReciprocalSqrtEstimate(double value) { throw null; } + public static long CyclicRedundancyCheckIEEE8023(int crc, byte checks) { throw null; } + public static long CyclicRedundancyCheckIEEE8023(int crc, ushort checks) { throw null; } + public static long CyclicRedundancyCheckIEEE8023(int crc, uint checks) { throw null; } + public static long CyclicRedundancyCheckIEEE8023(int crc, ulong checks) { throw null; } + public static long CyclicRedundancyCheckCastagnoli(int crc, byte checks) { throw null; } + public static long CyclicRedundancyCheckCastagnoli(int crc, ushort checks) { throw null; } + public static long CyclicRedundancyCheckCastagnoli(int crc, uint checks) { throw null; } + public static long CyclicRedundancyCheckCastagnoli(int crc, ulong checks) { throw null; } + } + + public static long MultiplyHigh(int left, int right) { throw null; } + public static ulong MultiplyHigh(uint left, uint right) { throw null; } + public static float SquareRoot(float value) { throw null; } + public static double SquareRoot(double value) { throw null; } + public static float Reciprocal(float value) { throw null; } + public static double Reciprocal(double value) { throw null; } + public static float ReciprocalSqrt(float value) { throw null; } + public static double ReciprocalSqrt(double value) { throw null; } + public static float FloatLogarithm2(float value) { throw null; } + public static double FloatLogarithm2(double value) { throw null; } + public static float FloatScaleBinary(float value, int index) { throw null; } + public static double FloatScaleBinary(double value, long index) { throw null; } + public static float FloatCopySign(float value, float sign) { throw null; } + public static double FloatCopySign(double value, double sign) { throw null; } + public static float FloatClass(float value) { throw null; } + public static double FloatClass(double value) { throw null; } + } + [System.CLSCompliantAttribute(false)] + public abstract partial class Lsx : System.Runtime.Intrinsics.LoongArch.LoongArchBase + { + internal Lsx() { } + public static new bool IsSupported { get { throw null; } } + + public static System.Runtime.Intrinsics.Vector64 Add(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Add(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Add(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Add(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Add(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Add(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Add(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Add(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Add(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Add(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Add(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Add(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Add(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Add(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Add(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Add(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Add(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Add(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Add(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Add(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 AddSaturate(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 AddSaturate(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 AddSaturate(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 AddSaturate(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 AddSaturate(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 AddSaturate(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 AddSaturate(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 AddSaturate(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddOddElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 AddHorizontalElements(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 AddHorizontalElements(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Subtract(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Subtract(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Subtract(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Subtract(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Subtract(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Subtract(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Subtract(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Subtract(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Subtract(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Subtract(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Subtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Subtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Subtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Subtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Subtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Subtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Subtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Subtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Subtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Subtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SubtractSaturate(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Multiply(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Multiply(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Multiply(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Multiply(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Multiply(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Multiply(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Multiply(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Multiply(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Multiply(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Multiply(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Divide(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Divide(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Divide(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Divide(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Divide(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Divide(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Divide(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Divide(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Divide(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Divide(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Modulo(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Modulo(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Modulo(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Modulo(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Modulo(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Modulo(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Modulo(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Modulo(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FusedMultiplyAdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, System.Runtime.Intrinsics.Vector128 addend) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FusedMultiplyAdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, System.Runtime.Intrinsics.Vector128 addend) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FusedMultiplyAddNegated(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, System.Runtime.Intrinsics.Vector128 addend) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FusedMultiplyAddNegated(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, System.Runtime.Intrinsics.Vector128 addend) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyAdd(System.Runtime.Intrinsics.Vector128 minuend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyAdd(System.Runtime.Intrinsics.Vector128 minuend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FusedMultiplySubtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, System.Runtime.Intrinsics.Vector128 minuend) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FusedMultiplySubtract(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, System.Runtime.Intrinsics.Vector128 minuend) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FusedMultiplySubtractNegated(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, System.Runtime.Intrinsics.Vector128 minuend) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FusedMultiplySubtractNegated(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, System.Runtime.Intrinsics.Vector128 minuend) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplySubtract(System.Runtime.Intrinsics.Vector128 minuend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplySubtract(System.Runtime.Intrinsics.Vector128 minuend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplySubtract(System.Runtime.Intrinsics.Vector128 minuend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplySubtract(System.Runtime.Intrinsics.Vector128 minuend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplySubtract(System.Runtime.Intrinsics.Vector128 minuend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplySubtract(System.Runtime.Intrinsics.Vector128 minuend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplySubtract(System.Runtime.Intrinsics.Vector128 minuend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplySubtract(System.Runtime.Intrinsics.Vector128 minuend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector128 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareNotEqualZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareNotEqualZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThan(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThanOrEqualZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Max(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MaxFloatAbsolute(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MaxFloatAbsolute(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Min(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MinFloatAbsolute(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MinFloatAbsolute(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 BitwiseSelect(System.Runtime.Intrinsics.Vector128 select, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 BitwiseSelect(System.Runtime.Intrinsics.Vector128 select, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 BitwiseSelect(System.Runtime.Intrinsics.Vector128 select, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 BitwiseSelect(System.Runtime.Intrinsics.Vector128 select, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 BitwiseSelect(System.Runtime.Intrinsics.Vector128 select, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 BitwiseSelect(System.Runtime.Intrinsics.Vector128 select, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 BitwiseSelect(System.Runtime.Intrinsics.Vector128 select, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 BitwiseSelect(System.Runtime.Intrinsics.Vector128 select, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 BitwiseSelect(System.Runtime.Intrinsics.Vector128 select, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 BitwiseSelect(System.Runtime.Intrinsics.Vector128 select, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AbsoluteDifference(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AbsoluteDifference(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AbsoluteDifference(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AbsoluteDifference(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AbsoluteDifference(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AbsoluteDifference(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AbsoluteDifference(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AbsoluteDifference(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(sbyte* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(byte* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(short* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(ushort* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(int* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(uint* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(long* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(ulong* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(float* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(double* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(sbyte* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(byte* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(short* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(ushort* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(int* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(uint* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(long* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(ulong* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(float* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadVector128(double* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadElementReplicateVector(sbyte* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadElementReplicateVector(byte* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadElementReplicateVector(short* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadElementReplicateVector(ushort* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadElementReplicateVector(int* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadElementReplicateVector(uint* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadElementReplicateVector(long* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadElementReplicateVector(ulong* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadElementReplicateVector(float* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector128 LoadElementReplicateVector(double* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Reciprocal(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Reciprocal(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ReciprocalSqrt(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ReciprocalSqrt(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Sqrt(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Sqrt(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FloatLogarithm2(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FloatLogarithm2(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector128 vector, sbyte* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector128 vector, byte* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector128 vector, short* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector128 vector, ushort* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector128 vector, int* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector128 vector, uint* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector128 vector, long* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector128 vector, ulong* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector128 vector, float* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector128 vector, double* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector128 vector, sbyte* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -128, Max = 127)] short si8, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector128 vector, byte* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -128, Max = 127)] short si8, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector128 vector, short* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -256, Max = 254)] short si9, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(7))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector128 vector, ushort* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -256, Max = 254)] short si9, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(7))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector128 vector, int* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -512, Max = 508)] short si10, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(3))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector128 vector, uint* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -512, Max = 508)] short si10, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(3))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector128 vector, long* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -1024, Max = 1016)] short si11, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(1))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector128 vector, ulong* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -1024, Max = 1016)] short si11, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(1))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector128 vector, float* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -512, Max = 511)] short si10, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(3))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector128 vector, double* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -1024, Max = 1016)] short si11, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(1))] byte idx) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Negate(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Negate(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Negate(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Negate(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Negate(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Negate(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 NegateScalar(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 NegateScalar(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 leftUnsign, System.Runtime.Intrinsics.Vector128 rightUnsign) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 unsign, System.Runtime.Intrinsics.Vector128 sign) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 unsign, System.Runtime.Intrinsics.Vector128 sign) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 unsign, System.Runtime.Intrinsics.Vector128 sign) { throw null; } + // public static System.Runtime.Intrinsics.Vector128 MultiplyWideningEven(System.Runtime.Intrinsics.Vector128 unsign, System.Runtime.Intrinsics.Vector128 sign) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Average(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Average(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Average(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Average(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Average(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Average(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Average(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Average(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AverageRounded(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AverageRounded(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AverageRounded(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AverageRounded(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AverageRounded(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AverageRounded(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AverageRounded(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AverageRounded(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SignExtendWideningLowerAndShiftLeft(System.Runtime.Intrinsics.Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SignExtendWideningLowerAndShiftLeft(System.Runtime.Intrinsics.Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SignExtendWideningLowerAndShiftLeft(System.Runtime.Intrinsics.Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningLowerAndShiftLeft(System.Runtime.Intrinsics.Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningLowerAndShiftLeft(System.Runtime.Intrinsics.Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningLowerAndShiftLeft(System.Runtime.Intrinsics.Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningLowerAndShiftLeft(System.Runtime.Intrinsics.Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningLowerAndShiftLeft(System.Runtime.Intrinsics.Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningLowerAndShiftLeft(System.Runtime.Intrinsics.Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningLower(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningLower(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SignExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SignExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SignExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 SignExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ZeroExtendWideningUpper(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 And(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 And(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 And(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 And(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 And(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 And(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 And(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 And(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 And(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 And(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AndNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AndNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AndNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AndNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AndNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AndNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AndNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AndNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AndNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AndNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Or(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Or(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Or(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Or(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Or(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Or(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Or(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Or(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Or(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Or(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Or(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Or(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Or(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Or(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Or(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Or(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Or(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Or(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Or(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Or(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Not(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Not(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Not(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Not(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Not(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Not(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Not(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Not(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Not(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Not(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Not(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Not(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Not(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Not(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Not(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Not(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Not(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Not(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Not(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Not(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 NotOr(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 NotOr(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 NotOr(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 NotOr(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 NotOr(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 NotOr(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 NotOr(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 NotOr(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 NotOr(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 NotOr(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 OrNot(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 OrNot(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 OrNot(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 OrNot(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 OrNot(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 OrNot(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 OrNot(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 OrNot(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 OrNot(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 OrNot(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 OrNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 OrNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 OrNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 OrNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 OrNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 OrNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 OrNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 OrNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 OrNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 OrNot(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Xor(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Xor(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Xor(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Xor(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Xor(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Xor(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Xor(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Xor(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Xor(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector64 Xor(System.Runtime.Intrinsics.Vector64 left, System.Runtime.Intrinsics.Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Xor(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Xor(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Xor(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Xor(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Xor(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Xor(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Xor(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Xor(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Xor(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Xor(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogicalByByte(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogicalByByte(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftLeftLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalByByte(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalByByte(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogical(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticRoundedNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RotateRight(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Abs(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Abs(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Abs(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Abs(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Abs(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Abs(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Floor(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Floor(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Ceiling(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Ceiling(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RoundToZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RoundToZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RoundToNegativeInfinity(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RoundToNegativeInfinity(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RoundToPositiveInfinity(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 RoundToPositiveInfinity(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Insert(System.Runtime.Intrinsics.Vector128 vector, sbyte data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Insert(System.Runtime.Intrinsics.Vector128 vector, byte data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Insert(System.Runtime.Intrinsics.Vector128 vector, short data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Insert(System.Runtime.Intrinsics.Vector128 vector, ushort data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Insert(System.Runtime.Intrinsics.Vector128 vector, int data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Insert(System.Runtime.Intrinsics.Vector128 vector, uint data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Insert(System.Runtime.Intrinsics.Vector128 vector, long data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Insert(System.Runtime.Intrinsics.Vector128 vector, ulong data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Insert(System.Runtime.Intrinsics.Vector128 vector, float data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 Insert(System.Runtime.Intrinsics.Vector128 vector, double data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 DuplicateToSystem.Runtime.Intrinsics.Vector128(sbyte value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 DuplicateToSystem.Runtime.Intrinsics.Vector128(byte value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 DuplicateToSystem.Runtime.Intrinsics.Vector128(short value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 DuplicateToSystem.Runtime.Intrinsics.Vector128(ushort value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 DuplicateToSystem.Runtime.Intrinsics.Vector128(int value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 DuplicateToSystem.Runtime.Intrinsics.Vector128(uint value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 DuplicateToSystem.Runtime.Intrinsics.Vector128(long value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 DuplicateToSystem.Runtime.Intrinsics.Vector128(ulong value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 DuplicateToSystem.Runtime.Intrinsics.Vector128(float value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 DuplicateToSystem.Runtime.Intrinsics.Vector128(double value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ConvertToSingle(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ConvertToSingle(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ConvertToDouble(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ConvertToDouble(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static byte FirstNegativeInteger(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static ushort FirstNegativeInteger(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool HasElementsNotZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool AllElementsIsZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticRoundedNarrowingSaturateLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLower(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingSignCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingSignCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingSignCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingSignCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingSignCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingSignCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingSignCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingSignCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingZeroCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingZeroCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingZeroCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingZeroCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingZeroCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingZeroCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingZeroCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector64 LeadingZeroCount(System.Runtime.Intrinsics.Vector64 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingZeroCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingZeroCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingZeroCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingZeroCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingZeroCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingZeroCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingZeroCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 LeadingZeroCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 PopCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 PopCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 PopCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 PopCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 PopCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 PopCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 PopCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 PopCount(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector, System.Runtime.Intrinsics.Vector128 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector, System.Runtime.Intrinsics.Vector128 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector0, System.Runtime.Intrinsics.Vector128 vector1, System.Runtime.Intrinsics.Vector128 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector0, System.Runtime.Intrinsics.Vector128 vector1, System.Runtime.Intrinsics.Vector128 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector0, System.Runtime.Intrinsics.Vector128 vector1, System.Runtime.Intrinsics.Vector128 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector0, System.Runtime.Intrinsics.Vector128 vector1, System.Runtime.Intrinsics.Vector128 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector0, System.Runtime.Intrinsics.Vector128 vector1, System.Runtime.Intrinsics.Vector128 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector0, System.Runtime.Intrinsics.Vector128 vector1, System.Runtime.Intrinsics.Vector128 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector0, System.Runtime.Intrinsics.Vector128 vector1, System.Runtime.Intrinsics.Vector128 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffle(System.Runtime.Intrinsics.Vector128 vector0, System.Runtime.Intrinsics.Vector128 vector1, System.Runtime.Intrinsics.Vector128 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector128 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector128 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector128 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector128 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector128 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector128 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector128 vector0, System.Runtime.Intrinsics.Vector128 vector1, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector128 vector0, System.Runtime.Intrinsics.Vector128 vector1, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionLower(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionHight(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorEvenElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorEvenElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorEvenElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorEvenElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorEvenElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorEvenElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorEvenElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorEvenElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorOddElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorOddElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorOddElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorOddElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorOddElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorOddElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorOddElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorOddElementsJoin(System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementReplicate(System.Runtime.Intrinsics.Vector128 vector, byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementReplicate(System.Runtime.Intrinsics.Vector128 vector, byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementReplicate(System.Runtime.Intrinsics.Vector128 vector, byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementReplicate(System.Runtime.Intrinsics.Vector128 vector, byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementReplicate(System.Runtime.Intrinsics.Vector128 vector, byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementReplicate(System.Runtime.Intrinsics.Vector128 vector, byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementReplicate(System.Runtime.Intrinsics.Vector128 vector, byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementReplicate(System.Runtime.Intrinsics.Vector128 vector, byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector128 UpdateOneVectorElement(System.Runtime.Intrinsics.Vector128 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 UpdateOneVectorElement(System.Runtime.Intrinsics.Vector128 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 UpdateOneVectorElement(System.Runtime.Intrinsics.Vector128 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 UpdateOneVectorElement(System.Runtime.Intrinsics.Vector128 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 UpdateOneVectorElement(System.Runtime.Intrinsics.Vector128 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 UpdateOneVectorElement(System.Runtime.Intrinsics.Vector128 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 UpdateOneVectorElement(System.Runtime.Intrinsics.Vector128 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 UpdateOneVectorElement(System.Runtime.Intrinsics.Vector128 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementNegatedBySign(System.Runtime.Intrinsics.Vector128 sign, System.Runtime.Intrinsics.Vector128 data) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementNegatedBySign(System.Runtime.Intrinsics.Vector128 sign, System.Runtime.Intrinsics.Vector128 data) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementNegatedBySign(System.Runtime.Intrinsics.Vector128 sign, System.Runtime.Intrinsics.Vector128 data) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementNegatedBySign(System.Runtime.Intrinsics.Vector128 sign, System.Runtime.Intrinsics.Vector128 data) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitClear(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitSet(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorElementBitRevert(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 index) { throw null; } + public static System.Runtime.Intrinsics.Vector128 IndexOfFirstNegativeElement(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 save) { throw null; } + public static System.Runtime.Intrinsics.Vector128 IndexOfFirstNegativeElement(System.Runtime.Intrinsics.Vector128 value, System.Runtime.Intrinsics.Vector128 save) { throw null; } + public static System.Runtime.Intrinsics.Vector128 IndexOfFirstNegativeElement(System.Runtime.Intrinsics.Vector128 value, const byte save) { throw null; } + public static System.Runtime.Intrinsics.Vector128 IndexOfFirstNegativeElement(System.Runtime.Intrinsics.Vector128 value, const byte save) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorSaturate(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(7))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorSaturate(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorSaturate(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorSaturate(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorSaturateUnsigned(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(7))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorSaturateUnsigned(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorSaturateUnsigned(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector128 VectorSaturateUnsigned(System.Runtime.Intrinsics.Vector128 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FloatClass(System.Runtime.Intrinsics.Vector128 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 FloatClass(System.Runtime.Intrinsics.Vector128 value) { throw null; } + } + [System.CLSCompliantAttribute(false)] + public abstract partial class Lasx : System.Runtime.Intrinsics.LoongArch.Lsx + { + internal Lasx() { } + public static new bool IsSupported { get { throw null; } } + + public static System.Runtime.Intrinsics.Vector256 Add(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Add(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Add(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Add(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Add(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Add(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Add(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Add(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Add(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Add(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AddOddElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector128 AddHorizontalElements(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static Vector64 AddHorizontalElements(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static Vector64 AddHorizontalElements(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Subtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Subtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Subtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Subtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Subtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Subtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Subtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Subtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Subtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Subtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractOddEvenElementsWidening(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SubtractSaturate(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Multiply(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Multiply(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Multiply(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Multiply(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Multiply(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Multiply(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Multiply(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Multiply(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Multiply(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Multiply(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyHight(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyHight(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyHight(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyHight(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyHight(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyHight(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyHight(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyHight(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Divide(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Divide(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Divide(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Divide(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Divide(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Divide(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Divide(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Divide(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Divide(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Divide(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Modulo(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Modulo(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Modulo(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Modulo(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Modulo(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Modulo(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Modulo(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Modulo(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FusedMultiplyAdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, System.Runtime.Intrinsics.Vector256 addend) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FusedMultiplyAdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, System.Runtime.Intrinsics.Vector256 addend) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FusedMultiplyAddNegated(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, System.Runtime.Intrinsics.Vector256 addend) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FusedMultiplyAddNegated(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, System.Runtime.Intrinsics.Vector256 addend) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FusedMultiplySubtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, System.Runtime.Intrinsics.Vector256 minuend) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FusedMultiplySubtract(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, System.Runtime.Intrinsics.Vector256 minuend) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FusedMultiplySubtractNegated(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, System.Runtime.Intrinsics.Vector256 minuend) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FusedMultiplySubtractNegated(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, System.Runtime.Intrinsics.Vector256 minuend) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplySubtract(System.Runtime.Intrinsics.Vector256 minuend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplySubtract(System.Runtime.Intrinsics.Vector256 minuend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplySubtract(System.Runtime.Intrinsics.Vector256 minuend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplySubtract(System.Runtime.Intrinsics.Vector256 minuend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplySubtract(System.Runtime.Intrinsics.Vector256 minuend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplySubtract(System.Runtime.Intrinsics.Vector256 minuend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplySubtract(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplySubtract(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningLowerAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector128 left, System.Runtime.Intrinsics.Vector128 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningUpperAndAdd(System.Runtime.Intrinsics.Vector256 addend, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareNotEqualZeroEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareNotEqualZeroEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanZeroEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanZeroEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanZeroEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanZeroEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -16, Max = (byte)(15))] sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareLessThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThan(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThanOrEqualZeroEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 CompareGreaterThanOrEqual(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Max(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MaxFloatAbsolute(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MaxFloatAbsolute(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 value, const sbyte si5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 value, const byte ui5) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Min(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MinFloatAbsolute(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MinFloatAbsolute(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 BitwiseSelect(System.Runtime.Intrinsics.Vector256 select, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 BitwiseSelect(System.Runtime.Intrinsics.Vector256 select, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 BitwiseSelect(System.Runtime.Intrinsics.Vector256 select, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 BitwiseSelect(System.Runtime.Intrinsics.Vector256 select, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 BitwiseSelect(System.Runtime.Intrinsics.Vector256 select, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 BitwiseSelect(System.Runtime.Intrinsics.Vector256 select, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 BitwiseSelect(System.Runtime.Intrinsics.Vector256 select, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 BitwiseSelect(System.Runtime.Intrinsics.Vector256 select, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 BitwiseSelect(System.Runtime.Intrinsics.Vector256 select, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 BitwiseSelect(System.Runtime.Intrinsics.Vector256 select, System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AbsoluteDifference(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AbsoluteDifference(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AbsoluteDifference(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AbsoluteDifference(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AbsoluteDifference(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AbsoluteDifference(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AbsoluteDifference(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AbsoluteDifference(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 AbsoluteDifference(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 AbsoluteDifference(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(sbyte* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(byte* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(short* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(ushort* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(int* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(uint* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(long* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(ulong* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(float* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(double* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(sbyte* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(byte* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(short* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(ushort* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(int* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(uint* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(long* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(ulong* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(float* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadVector256(double* address, long offsetValue) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadElementReplicateVector(sbyte* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadElementReplicateVector(byte* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadElementReplicateVector(short* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadElementReplicateVector(ushort* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadElementReplicateVector(int* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadElementReplicateVector(uint* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadElementReplicateVector(long* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadElementReplicateVector(ulong* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadElementReplicateVector(float* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe System.Runtime.Intrinsics.Vector256 LoadElementReplicateVector(double* address, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Reciprocal(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Reciprocal(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ReciprocalSqrt(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ReciprocalSqrt(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Sqrt(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Sqrt(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FloatLogarithm2(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FloatLogarithm2(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, sbyte* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, byte* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, short* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, ushort* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, int* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, uint* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, long* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, ulong* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, float* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, double* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -2048, Max = 2047)] short si12) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, sbyte* addr, long offsetValue) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, byte* addr, long offsetValue) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, short* addr, long offsetValue) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, ushort* addr, long offsetValue) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, int* addr, long offsetValue) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, uint* addr, long offsetValue) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, long* addr, long offsetValue) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, ulong* addr, long offsetValue) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, float* addr, long offsetValue) { throw null; } + public static unsafe void Store(System.Runtime.Intrinsics.Vector256 vector, double* addr, long offsetValue) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector256 vector, sbyte* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -128, Max = 127)] short si8, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector256 vector, byte* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -128, Max = 127)] short si8, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector256 vector, short* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -256, Max = 254)] short si9, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector256 vector, ushort* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -256, Max = 254)] short si9, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector256 vector, int* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -512, Max = 508)] short si10, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(7))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector256 vector, uint* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -512, Max = 508)] short si10, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(7))] byte idx) { throw null; } + const /// void xvstelm_d(int64x4_t val, int64_t* addr, const short si11, const byte idx) // Note: si11 is 8byte aligned. + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector256 vector, long* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -1024, Max = 1016)] short si11, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(3))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector256 vector, ulong* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -1024, Max = 1016)] short si11, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(3))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector256 vector, float* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -512, Max = 511)] short si10, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(7))] byte idx) { throw null; } + public static unsafe void StoreElement(System.Runtime.Intrinsics.Vector256 vector, double* addr, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = -1024, Max = 1016)] short si11, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(3))] byte idx) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Negate(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Negate(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Negate(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Negate(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Negate(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Negate(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector256 MultiplyWideningOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + // public static System.Runtime.Intrinsics.Vector256 MultiplyWideningEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Average(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Average(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Average(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Average(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Average(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Average(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Average(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Average(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AverageRounded(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AverageRounded(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AverageRounded(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AverageRounded(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AverageRounded(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AverageRounded(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AverageRounded(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AverageRounded(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLowerAndShiftLeftEach128(System.Runtime.Intrinsics.Vector256 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLowerEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLowerEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(Vector64 value, byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(Vector64 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningLower(System.Runtime.Intrinsics.Vector128 value, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 SignExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ZeroExtendWideningUpperEach128(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 And(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 And(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 And(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 And(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 And(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 And(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 And(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 And(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 And(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 And(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AndNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AndNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AndNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AndNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AndNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AndNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AndNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AndNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AndNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 AndNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Or(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Or(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Or(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Or(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Or(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Or(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Or(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Or(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Or(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Or(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Not(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Not(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Not(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Not(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Not(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Not(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Not(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Not(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Not(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Not(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 NotOr(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 NotOr(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 NotOr(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 NotOr(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 NotOr(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 NotOr(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 NotOr(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 NotOr(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 NotOr(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 NotOr(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw null; } + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw null; } + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw null; } + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw null; } + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw null; } + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw null; } + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw null; } + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw null; } + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw null; } + public static Vector64 OrNot(Vector64 left, Vector64 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 OrNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 OrNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 OrNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 OrNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 OrNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 OrNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 OrNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 OrNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 OrNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 OrNot(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Xor(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Xor(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Xor(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Xor(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Xor(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Xor(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Xor(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Xor(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Xor(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Xor(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogicalByByteEach128(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogicalByByteEach128(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftLeftLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalByByteEach128(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalByByteEach128(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogical(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(127))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(127))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmetic(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRounded(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, const byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RotateRight(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Abs(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Abs(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Abs(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Abs(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Abs(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Abs(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Floor(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Floor(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Ceiling(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Ceiling(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RoundToZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RoundToZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RoundToNegativeInfinity(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RoundToNegativeInfinity(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RoundToPositiveInfinity(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 RoundToPositiveInfinity(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Insert(System.Runtime.Intrinsics.Vector256 vector, int data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Insert(System.Runtime.Intrinsics.Vector256 vector, uint data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Insert(System.Runtime.Intrinsics.Vector256 vector, long data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Insert(System.Runtime.Intrinsics.Vector256 vector, ulong data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Insert(System.Runtime.Intrinsics.Vector256 vector, float data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 Insert(System.Runtime.Intrinsics.Vector256 vector, double data, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 DuplicateToSystem.Runtime.Intrinsics.Vector256(sbyte value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 DuplicateToSystem.Runtime.Intrinsics.Vector256(byte value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 DuplicateToSystem.Runtime.Intrinsics.Vector256(short value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 DuplicateToSystem.Runtime.Intrinsics.Vector256(ushort value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 DuplicateToSystem.Runtime.Intrinsics.Vector256(int value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 DuplicateToSystem.Runtime.Intrinsics.Vector256(uint value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 DuplicateToSystem.Runtime.Intrinsics.Vector256(long value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 DuplicateToSystem.Runtime.Intrinsics.Vector256(ulong value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 DuplicateToSystem.Runtime.Intrinsics.Vector256(float value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 DuplicateToSystem.Runtime.Intrinsics.Vector256(double value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ConvertToSingle(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ConvertToSingle(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ConvertToDouble(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ConvertToDouble(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool HasElementsNotZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool AllElementsIsZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool AllElementsNotZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static bool HasElementsIsZero(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(127))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(127))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(127))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(127))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(127))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(127))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightLogicalRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(127))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte shift) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(127))] byte shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector128 ShiftRightArithmeticRoundedNarrowingSaturateUnsignedLowerEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 shift) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingSignCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingSignCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingSignCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingSignCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingZeroCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingZeroCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingZeroCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingZeroCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingZeroCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingZeroCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingZeroCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 LeadingZeroCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 PopCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 PopCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 PopCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 PopCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 PopCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 PopCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 PopCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 PopCount(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffle(System.Runtime.Intrinsics.Vector256 vector, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffle(System.Runtime.Intrinsics.Vector256 vector, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffle(System.Runtime.Intrinsics.Vector256 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffle(System.Runtime.Intrinsics.Vector256 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffle(System.Runtime.Intrinsics.Vector256 vector0, System.Runtime.Intrinsics.Vector256 vector1, const byte indexs) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector0, System.Runtime.Intrinsics.Vector256 vector1, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector0, System.Runtime.Intrinsics.Vector256 vector1, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + //public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector0, System.Runtime.Intrinsics.Vector256 vector1, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector0, System.Runtime.Intrinsics.Vector256 vector1, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector, const byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector0, System.Runtime.Intrinsics.Vector256 vector1, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector0, System.Runtime.Intrinsics.Vector256 vector1, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector0, System.Runtime.Intrinsics.Vector256 vector1, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleEach128(System.Runtime.Intrinsics.Vector256 vector0, System.Runtime.Intrinsics.Vector256 vector1, System.Runtime.Intrinsics.Vector256 indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector256 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector256 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector256 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector256 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector256 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector256 vector, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector256 vector0, System.Runtime.Intrinsics.Vector256 vector1, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorShuffleBy4Elements(System.Runtime.Intrinsics.Vector256 vector0, System.Runtime.Intrinsics.Vector256 vector1, byte indexs) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionLowerEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionHightEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionHightEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionHightEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionHightEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionHightEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionHightEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionHightEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionHightEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionEven(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementsFusionOdd(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorEvenElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorEvenElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorEvenElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorEvenElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorEvenElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorEvenElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorEvenElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorEvenElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorOddElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorOddElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorOddElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorOddElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorOddElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorOddElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorOddElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorOddElementsJoinEach128(System.Runtime.Intrinsics.Vector256 left, System.Runtime.Intrinsics.Vector256 right) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementReplicateEach128(System.Runtime.Intrinsics.Vector256 vector, const byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementReplicateEach128(System.Runtime.Intrinsics.Vector256 vector, const byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementReplicateEach128(System.Runtime.Intrinsics.Vector256 vector, const byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementReplicateEach128(System.Runtime.Intrinsics.Vector256 vector, const byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementReplicateEach128(System.Runtime.Intrinsics.Vector256 vector, const byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementReplicateEach128(System.Runtime.Intrinsics.Vector256 vector, const byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementReplicateEach128(System.Runtime.Intrinsics.Vector256 vector, const byte elementIndexe) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementReplicateEach128(System.Runtime.Intrinsics.Vector256 vector, const byte elementIndexe) { throw null; } + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw null; } + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw null; } + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw null; } + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw null; } + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw null; } + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw null; } + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw null; } + public static Vector258 UpdateOneVectorElementEach128(Vector258 vector, const byte indexs) { throw null; } + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) { throw null; } + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) { throw null; } + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) { throw null; } + public static Vector258 VectorElementNegatedBySign(Vector258 sign, Vector258 data) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitClear(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitSet(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, const byte index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorElementBitRevert(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 index) { throw null; } + public static System.Runtime.Intrinsics.Vector256 IndexOfFirstNegativeElementEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 save) { throw null; } + public static System.Runtime.Intrinsics.Vector256 IndexOfFirstNegativeElementEach128(System.Runtime.Intrinsics.Vector256 value, System.Runtime.Intrinsics.Vector256 save) { throw null; } + public static System.Runtime.Intrinsics.Vector256 IndexOfFirstNegativeElementEach128(System.Runtime.Intrinsics.Vector256 value, const byte save) { throw null; } + public static System.Runtime.Intrinsics.Vector256 IndexOfFirstNegativeElementEach128(System.Runtime.Intrinsics.Vector256 value, const byte save) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorSaturate(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(7))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorSaturate(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorSaturate(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorSaturate(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorSaturateUnsigned(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(7))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorSaturateUnsigned(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(15))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorSaturateUnsigned(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(31))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector256 VectorSaturateUnsigned(System.Runtime.Intrinsics.Vector256 value, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Max = (byte)(63))] byte bits) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FloatClass(System.Runtime.Intrinsics.Vector256 value) { throw null; } + public static System.Runtime.Intrinsics.Vector256 FloatClass(System.Runtime.Intrinsics.Vector256 value) { throw null; } + } +} namespace System.Runtime.Intrinsics.X86 { [System.CLSCompliantAttribute(false)]