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