5 implementations of OnesComplement
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1160
static Vector<T> ISimdVector<Vector<T>, T>.
OnesComplement
(Vector<T> vector) => ~vector;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
812
static Vector128<T> ISimdVector<Vector128<T>, T>.
OnesComplement
(Vector128<T> vector) => ~vector;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
800
static Vector256<T> ISimdVector<Vector256<T>, T>.
OnesComplement
(Vector256<T> vector) => ~vector;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
800
static Vector512<T> ISimdVector<Vector512<T>, T>.
OnesComplement
(Vector512<T> vector) => ~vector;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
869
static Vector64<T> ISimdVector<Vector64<T>, T>.
OnesComplement
(Vector64<T> vector) => ~vector;
5 references to OnesComplement
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1158
/// <inheritdoc cref="ISimdVector{TSelf, T}.
OnesComplement
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
810
/// <inheritdoc cref="ISimdVector{TSelf, T}.
OnesComplement
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
798
/// <inheritdoc cref="ISimdVector{TSelf, T}.
OnesComplement
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
798
/// <inheritdoc cref="ISimdVector{TSelf, T}.
OnesComplement
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
867
/// <inheritdoc cref="ISimdVector{TSelf, T}.
OnesComplement
(TSelf)" />