11 references to Min
Microsoft.Data.Analysis (4)
PrimitiveDataFrameColumnComputations.cs (4)
4246ret = (short)(Math.Min(readOnlySpan[i], ret)); 4290ret = (short)Math.Min(span[(int)row], ret); 4486value = (short)(Math.Min(readOnlySpan[i], value)); 4513value = (short)(Math.Min(readOnlySpan[(int)row], value));
System.Data.Common (1)
System\Data\Common\Int16Storage.cs (1)
112min = Math.Min(_values[record], min);
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
651public static short Min(short x, short y) => Math.Min(x, y);
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.Blocking.cs (4)
15return Math.Min(_separated.counts.NumThreadsGoal, TargetThreadsGoalForBlockingAdjustment); 146short toSubtract = Math.Min((short)(numThreadsGoal - targetThreadsGoal), _numThreadsAddedDueToBlocking); 164Math.Max(configuredMaxThreadsWithoutDelay, Math.Min(counts.NumExistingThreads, _maxThreads)); 165short targetThreadsGoalWithoutDelay = Math.Min(targetThreadsGoal, maxThreadsGoalWithoutDelay);
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.WorkerThread.cs (1)
220Math.Min(newNumExistingThreads, counts.NumThreadsGoal));