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