18 references to Max
Interop.FunctionalTests (2)
src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
203burstAmount = Math.Max(1, currentCount / 100); 211burstAmount = Math.Max(10, currentCount / 20);
Microsoft.AspNetCore.Server.HttpSys (2)
src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
203burstAmount = Math.Max(1, currentCount / 100); 211burstAmount = Math.Max(10, currentCount / 20);
Microsoft.AspNetCore.Server.IIS (2)
src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
203burstAmount = Math.Max(1, currentCount / 100); 211burstAmount = Math.Max(10, currentCount / 20);
Microsoft.AspNetCore.Server.Kestrel.Core (2)
src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
203burstAmount = Math.Max(1, currentCount / 100); 211burstAmount = Math.Max(10, currentCount / 20);
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (2)
src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
203burstAmount = Math.Max(1, currentCount / 100); 211burstAmount = Math.Max(10, currentCount / 20);
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
203burstAmount = Math.Max(1, currentCount / 100); 211burstAmount = Math.Max(10, currentCount / 20);
Microsoft.Data.Analysis (4)
PrimitiveDataFrameColumnComputations.cs (4)
5156ret = (ulong)(Math.Max(readOnlySpan[i], ret)); 5200ret = (ulong)Math.Max(span[(int)row], ret); 5412value = (ulong)(Math.Max(readOnlySpan[i], value)); 5439value = (ulong)(Math.Max(readOnlySpan[(int)row], value));
System.Data.Common (1)
System\Data\Common\UInt64Storage.cs (1)
128max = Math.Max(_values[record], max);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
588public static ulong Max(ulong x, ulong y) => Math.Max(x, y);