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