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