5 references to AllWhereAllBitsSet
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
171/// <inheritdoc cref="Vector128.AllWhereAllBitsSet{T}(Vector128{T})" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
404/// <inheritdoc cref="Vector128.AllWhereAllBitsSet{T}(Vector128{T})" /> 407public static bool AllWhereAllBitsSet(Vector4 vector) => Vector128.AllWhereAllBitsSet(vector.AsVector128());
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
498static bool ISimdVector<Vector128<T>, T>.AllWhereAllBitsSet(Vector128<T> vector) => Vector128.AllWhereAllBitsSet(vector);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
191/// <inheritdoc cref="Vector128.AllWhereAllBitsSet{T}(Vector128{T})" />