12 references to Max
Microsoft.Data.Analysis (4)
PrimitiveDataFrameColumnComputations.cs (4)
4182
ret = (short)(Math.
Max
(readOnlySpan[i], ret));
4226
ret = (short)Math.
Max
(span[(int)row], ret);
4438
value = (short)(Math.
Max
(readOnlySpan[i], value));
4465
value = (short)(Math.
Max
(readOnlySpan[(int)row], value));
System.Data.Common (1)
System\Data\Common\Int16Storage.cs (1)
129
max = Math.
Max
(_values[record], max);
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
645
public static short Max(short x, short y) => Math.
Max
(x, y);
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.Blocking.cs (1)
164
Math.
Max
(configuredMaxThreadsWithoutDelay, Math.Min(counts.NumExistingThreads, _maxThreads));
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.ThreadCounts.cs (3)
43
SetInt16Value(Math.
Max
((short)0, value), NumProcessingWorkShift);
61
SetInt16Value(Math.
Max
((short)0, value), NumExistingThreadsShift);
79
SetInt16Value(Math.
Max
((short)1, value), NumThreadsGoalShift);
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.WorkerThread.cs (2)
218
Math.
Max
(
293
newNumExistingThreads = Math.
Max
(numExistingThreads, newNumProcessingWork);