15 references to ToUInt32
ILAssembler (1)
GrammarVisitor.cs (1)
2514
SerializationTypeCode.UInt32 => valueBytes.Length >= 4 ? BitConverter.
ToUInt32
(valueBytes) : 0u,
System.Diagnostics.PerformanceCounter (1)
System\Diagnostics\PerformanceCounterLib.cs (1)
1716
return (long)BitConverter.
ToUInt32
(data.Slice(_offset));
System.Net.Primitives (5)
System\Net\IPAddress.cs (5)
186
PrivateAddress = BitConverter.
ToUInt32
(address);
724
BitConverter.
ToUInt32
(numbers),
725
BitConverter.
ToUInt32
(numbers.Slice(4)),
726
BitConverter.
ToUInt32
(numbers.Slice(8)),
727
BitConverter.
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)
63
4 => BitConverter.
ToUInt32
(name),
64
5 => BitConverter.
ToUInt32
(name) | ((ulong)name[4] << 32),
65
6 => BitConverter.
ToUInt32
(name) | ((ulong)BitConverter.ToUInt16(name.Slice(4, 2)) << 32),
66
7 => BitConverter.
ToUInt32
(name) | ((ulong)BitConverter.ToUInt16(name.Slice(4, 2)) << 32) | ((ulong)name[6] << 48),