7 references to Min
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)
661public 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)
221Math.Min(newNumExistingThreads, counts.NumThreadsGoal));