13 references to Int32BitsToSingle
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.Private.CoreLib (11)
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 (3)
55return (T)(object)BitConverter.Int32BitsToSingle(-1); 1320float result = BitConverter.Int32BitsToSingle(bits << shiftCount); 1382float result = BitConverter.Int32BitsToSingle(bits >> shiftCount);
src\System\Reflection\RuntimeCustomAttributeData.cs (1)
538CustomAttributeEncoding.Float => BitConverter.Int32BitsToSingle(val.Byte4),