17 references to Int32BitsToSingle
ILAssembler (2)
GrammarVisitor.cs (2)
2666builder.WriteSingle(BitConverter.Int32BitsToSingle(value)); 2754return new(BitConverter.Int32BitsToSingle(value));
Microsoft.ML.CpuMath (1)
SseIntrinsics.cs (1)
68Vector128.Create(BitConverter.Int32BitsToSingle(0x7FFFFFFF));
System.Data.Odbc (1)
Common\System\Data\ProviderBase\DbBuffer.cs (1)
368return BitConverter.Int32BitsToSingle(value);
System.Data.OleDb (1)
System\Data\ProviderBase\DbBuffer.cs (1)
341return BitConverter.Int32BitsToSingle(value);
System.Private.CoreLib (12)
src\runtime\src\libraries\System.Private.CoreLib\src\System\BitConverter.cs (1)
786public static float ToSingle(byte[] value, int startIndex) => Int32BitsToSingle(ToInt32(value, startIndex));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Binary\BinaryPrimitives.ReadBigEndian.cs (2)
161BitConverter.Int32BitsToSingle(ReverseEndianness(MemoryMarshal.Read<int>(source))) : 445value = BitConverter.Int32BitsToSingle(ReverseEndianness(tmp));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Binary\BinaryPrimitives.ReadLittleEndian.cs (2)
161BitConverter.Int32BitsToSingle(ReverseEndianness(MemoryMarshal.Read<int>(source))) : 445value = BitConverter.Int32BitsToSingle(ReverseEndianness(tmp));
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\UnmanagedMemoryAccessor.cs (1)
258public float ReadSingle(long position) => BitConverter.Int32BitsToSingle(ReadInt32(position));
src\runtime\src\libraries\System.Private.CoreLib\src\System\MathF.cs (1)
515float u = BitConverter.Int32BitsToSingle(((int)(0x7f + n) << 23));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
840public static explicit operator float(BFloat16 value) => BitConverter.Int32BitsToSingle(value._value << 16);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Scalar.cs (4)
89return (T)(object)BitConverter.Int32BitsToSingle(-1); 1524float result = BitConverter.Int32BitsToSingle(bits << shiftCount); 1586float result = BitConverter.Int32BitsToSingle(bits >> shiftCount); 1648float result = BitConverter.Int32BitsToSingle(bits >>> shiftCount);