17 references to Min
Microsoft.Data.Analysis (4)
PrimitiveDataFrameColumnComputations.cs (4)
5220
ret = (ulong)(Math.
Min
(readOnlySpan[i], ret));
5264
ret = (ulong)Math.
Min
(span[(int)row], ret);
5460
value = (ulong)(Math.
Min
(readOnlySpan[i], value));
5487
value = (ulong)(Math.
Min
(readOnlySpan[(int)row], value));
ReachFramework (1)
PrintConfig\PTProvider.cs (1)
821
return (int)Math.
Min
(value, int.MaxValue);
System.Data.Common (1)
System\Data\Common\UInt64Storage.cs (1)
111
min = Math.
Min
(_values[record], min);
System.Net.Http (7)
System\Net\Http\SocketsHttpHandler\ChunkedEncodingReadStream.cs (3)
73
int bytesRead = _connection.Read(buffer.Slice(0, (int)Math.
Min
((ulong)buffer.Length, _chunkBytesRemaining)));
189
int bytesRead = await _connection.ReadAsync(buffer.Slice(0, (int)Math.
Min
((ulong)buffer.Length, _chunkBytesRemaining))).ConfigureAwait(false);
367
int bytesToConsume = Math.Min(maxBytesToRead, (int)Math.
Min
((ulong)connectionBuffer.Length, _chunkBytesRemaining));
System\Net\Http\SocketsHttpHandler\ContentLengthReadStream.cs (1)
184
int bytesToConsume = Math.Min(maxBytesToRead, (int)Math.
Min
((ulong)connectionBuffer.Length, _contentBytesRemaining));
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
870
_maxHeaderListSize = (uint)Math.
Min
((ulong)settingValue, uint.MaxValue);
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (2)
1951
remaining = (int)Math.
Min
((ulong)_readBuffer.ActiveLength, length);
1969
int desiredBufferSize = (int)Math.
Min
((ulong)bufferSize, length);
System.Net.NetworkInformation (1)
System\Net\NetworkInformation\StringParsingHelpers.Statistics.cs (1)
458
return (long)Math.
Min
(long.MaxValue, ulong.Parse(value, CultureInfo.InvariantCulture));
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Environment.UnixOrBrowser.cs (2)
90
ulong userTime100Nanoseconds = Math.
Min
(cpuInfo.lastRecordedUserTime / 100, (ulong)long.MaxValue);
91
ulong kernelTime100Nanoseconds = Math.
Min
(cpuInfo.lastRecordedKernelTime / 100, (ulong)long.MaxValue);
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
594
public static ulong Min(ulong x, ulong y) => Math.
Min
(x, y);