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