8 references to CharToHexLookup
System.Private.CoreLib (8)
src\runtime\src\libraries\Common\src\System\HexConverter.cs (3)
529return (c >= CharToHexLookup.Length) ? 0xFF : CharToHexLookup[c]; 535return (c > 71) ? 0xFF : CharToHexLookup[c];
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Parser\Utf8Parser.Integer.Unsigned.X.cs (4)
19ReadOnlySpan<byte> hexLookup = HexConverter.CharToHexLookup; 101ReadOnlySpan<byte> hexLookup = HexConverter.CharToHexLookup; 183ReadOnlySpan<byte> hexLookup = HexConverter.CharToHexLookup; 265ReadOnlySpan<byte> hexLookup = HexConverter.CharToHexLookup;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Guid.cs (1)
832ReadOnlySpan<byte> lookup = HexConverter.CharToHexLookup;