4 references to Max
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Half.cs (2)
755uint exponentOffset0 = BitConverter.SingleToUInt32Bits(float.Max(value, BitConverter.UInt32BitsToSingle(MinExp))); 1668public static Half Max(Half x, Half y) => (Half)float.Max((float)x, (float)y);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Scalar.cs (1)
860return (T)(object)float.Max((float)(object)left, (float)(object)right);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
944return Min(Max(value, min), max);