27 references to And
http2cat (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
IIS.FunctionalTests (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
IIS.LongTests (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
IIS.NewHandler.FunctionalTests (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
IIS.NewShim.FunctionalTests (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
IIS.ShadowCopy.Tests (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
IISExpress.FunctionalTests (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
Microsoft.AspNetCore.Server.HttpSys (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
Microsoft.AspNetCore.Server.IIS (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
Microsoft.AspNetCore.Server.Kestrel.Core (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
Microsoft.AspNetCore.Shared.Tests (2)
src\Shared\ServerInfrastructure\StringUtilities.cs (2)
155var indices = Sse2.And(Sse2.Or(lowNibbles, highNibbles), Vector128.Create((byte)0xF)); 166hex = Sse2.And(hex, Vector128.Create((ushort)0xFF).AsByte());
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Collections\BitArray.cs (2)
802Vector128<byte> extractedLower = Sse2.And(shuffledLower, bitMask128); 807Vector128<byte> extractedHigher = Sse2.And(shuffledHigher, bitMask128);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\X86\Sse2.cs (1)
203public static Vector128<byte> And(Vector128<byte> left, Vector128<byte> right) => And(left, right);