8 references to CharToHexLookup
System.Private.CoreLib (8)
src\libraries\Common\src\System\HexConverter.cs (3)
534return (c >= CharToHexLookup.Length) ? 0xFF : CharToHexLookup[c]; 540return (c > 71) ? 0xFF : CharToHexLookup[c];
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\libraries\System.Private.CoreLib\src\System\Guid.cs (1)
820ReadOnlySpan<byte> lookup = HexConverter.CharToHexLookup;