9 references to Min
Microsoft.Data.Analysis (4)
PrimitiveDataFrameColumnComputations.cs (4)
5220
ret = (ulong)(Math.
Min
(readOnlySpan[i], ret));
5264
ret = (ulong)Math.
Min
(span[(int)row], ret);
5460
value = (ulong)(Math.
Min
(readOnlySpan[i], value));
5487
value = (ulong)(Math.
Min
(readOnlySpan[(int)row], value));
ReachFramework (1)
PrintConfig\PTProvider.cs (1)
821
return (int)Math.
Min
(value, int.MaxValue);
System.Data.Common (1)
System\Data\Common\UInt64Storage.cs (1)
111
min = Math.
Min
(_values[record], min);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Environment.UnixOrBrowser.cs (2)
90
ulong userTime100Nanoseconds = Math.
Min
(cpuInfo.lastRecordedUserTime / 100, (ulong)long.MaxValue);
91
ulong kernelTime100Nanoseconds = Math.
Min
(cpuInfo.lastRecordedKernelTime / 100, (ulong)long.MaxValue);
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
594
public static ulong Min(ulong x, ulong y) => Math.
Min
(x, y);