8 references to Max
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)
655public 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)
219Math.Max( 294newNumExistingThreads = Math.Max(numExistingThreads, newNumProcessingWork);