10 references to IntToHex
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\UrlUtility.cs (10)
122
sb.Append(
IntToHex
((ch >> 4) & 0xf));
123
sb.Append(
IntToHex
((ch) & 0xf));
129
sb.Append(
IntToHex
((ch >> 12) & 0xf));
130
sb.Append(
IntToHex
((ch >> 8) & 0xf));
131
sb.Append(
IntToHex
((ch >> 4) & 0xf));
132
sb.Append(
IntToHex
((ch) & 0xf));
232
expandedBytes[pos++] = (byte)
IntToHex
((b >> 4) & 0xf);
233
expandedBytes[pos++] = (byte)
IntToHex
(b & 0x0f);
276
expandedBytes[pos++] = (byte)
IntToHex
((b >> 4) & 0xf);
277
expandedBytes[pos++] = (byte)
IntToHex
(b & 0x0f);