15 references to ToUInt32
ILAssembler (1)
GrammarVisitor.cs (1)
2514SerializationTypeCode.UInt32 => valueBytes.Length >= 4 ? BitConverter.ToUInt32(valueBytes) : 0u,
System.Diagnostics.PerformanceCounter (1)
System\Diagnostics\PerformanceCounterLib.cs (1)
1716return (long)BitConverter.ToUInt32(data.Slice(_offset));
System.Net.Primitives (5)
System\Net\IPAddress.cs (5)
186PrivateAddress = BitConverter.ToUInt32(address); 724BitConverter.ToUInt32(numbers), 725BitConverter.ToUInt32(numbers.Slice(4)), 726BitConverter.ToUInt32(numbers.Slice(8)), 727BitConverter.ToUInt32(numbers.Slice(12)),
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\HashCode.cs (4)
356_v1 = Round(_v1, BitConverter.ToUInt32(value)); 357_v2 = Round(_v2, BitConverter.ToUInt32(value.Slice(sizeof(int) * 1))); 358_v3 = Round(_v3, BitConverter.ToUInt32(value.Slice(sizeof(int) * 2))); 359_v4 = Round(_v4, BitConverter.ToUInt32(value.Slice(sizeof(int) * 3)));
System.Text.Json (4)
System\Text\Json\Serialization\Metadata\PropertyRef.cs (4)
634 => BitConverter.ToUInt32(name), 645 => BitConverter.ToUInt32(name) | ((ulong)name[4] << 32), 656 => BitConverter.ToUInt32(name) | ((ulong)BitConverter.ToUInt16(name.Slice(4, 2)) << 32), 667 => BitConverter.ToUInt32(name) | ((ulong)BitConverter.ToUInt16(name.Slice(4, 2)) << 32) | ((ulong)name[6] << 48),