13 references to Int32BitsToSingle
System.Data.Odbc (1)
Common\System\Data\ProviderBase\DbBuffer.cs (1)
368return BitConverter.Int32BitsToSingle(value);
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\BitConverter.cs (1)
732public static float ToSingle(byte[] value, int startIndex) => Int32BitsToSingle(ToInt32(value, startIndex));
src\libraries\System.Private.CoreLib\src\System\Buffers\Binary\BinaryPrimitives.ReadBigEndian.cs (2)
143BitConverter.Int32BitsToSingle(ReverseEndianness(MemoryMarshal.Read<int>(source))) : 405value = BitConverter.Int32BitsToSingle(ReverseEndianness(tmp));
src\libraries\System.Private.CoreLib\src\System\Buffers\Binary\BinaryPrimitives.ReadLittleEndian.cs (2)
143BitConverter.Int32BitsToSingle(ReverseEndianness(MemoryMarshal.Read<int>(source))) : 405value = BitConverter.Int32BitsToSingle(ReverseEndianness(tmp));
src\libraries\System.Private.CoreLib\src\System\IO\UnmanagedMemoryAccessor.cs (1)
258public float ReadSingle(long position) => BitConverter.Int32BitsToSingle(ReadInt32(position));
src\libraries\System.Private.CoreLib\src\System\MathF.cs (1)
497float u = BitConverter.Int32BitsToSingle(((int)(0x7f + n) << 23));
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Scalar.cs (4)
55return (T)(object)BitConverter.Int32BitsToSingle(-1); 1511float result = BitConverter.Int32BitsToSingle(bits << shiftCount); 1573float result = BitConverter.Int32BitsToSingle(bits >> shiftCount); 1635float result = BitConverter.Int32BitsToSingle(bits >>> shiftCount);
src\System\Reflection\RuntimeCustomAttributeData.cs (1)
538CustomAttributeEncoding.Float => BitConverter.Int32BitsToSingle(val.Byte4),