7 references to CountWhereAllBitsSet
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
779/// <inheritdoc cref="Vector128.CountWhereAllBitsSet{T}(Vector128{T})" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
463/// <inheritdoc cref="Vector128.CountWhereAllBitsSet{T}(Vector128{T})" /> 466public static int CountWhereAllBitsSet(Vector4 vector) => Vector128.CountWhereAllBitsSet(vector.AsVector128());
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
555static int ISimdVector<Vector128<T>, T>.CountWhereAllBitsSet(Vector128<T> vector) => Vector128.CountWhereAllBitsSet(vector);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.Numerics.cs (2)
196internal static int CountWhereAllBitsSet(Vector2 vector) => CountWhereAllBitsSet(vector.AsVector128()); 201internal static int CountWhereAllBitsSet(Vector3 vector) => CountWhereAllBitsSet(vector.AsVector128());
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
896/// <inheritdoc cref="Vector128.CountWhereAllBitsSet{T}(Vector128{T})" />