22 references to Max
Microsoft.Data.Analysis (4)
PrimitiveDataFrameColumnComputations.cs (4)
286
ret = (byte)(Math.
Max
(readOnlySpan[i], ret));
330
ret = (byte)Math.
Max
(span[(int)row], ret);
542
value = (byte)(Math.
Max
(readOnlySpan[i], value));
569
value = (byte)(Math.
Max
(readOnlySpan[(int)row], value));
PresentationCore (7)
MS\Internal\Ink\InkSerializedFormat\GorillaCodec.cs (3)
220
maxByte = Math.
Max
(input[n], maxByte);
231
maxByte = Math.
Max
(input[n], maxByte);
238
maxByte = Math.
Max
(input[n], maxByte);
MS\Internal\TextFormatting\Bidi.cs (4)
2400
sor = Helper.IsOdd(Math.
Max
(baseLevel, levels[runStart])) ?
2405
sor = Helper.IsOdd(Math.
Max
(lastRunLevel, levels[runStart])) ?
2415
eor = Helper.IsOdd(Math.
Max
(levels[runStart], baseLevel)) ?
2430
eor = Helper.IsOdd(Math.
Max
(levels[runStart], levels[runLimits[runNumber-1] + 1])) ?
System.Collections.Immutable (7)
System\Collections\Immutable\ImmutableList_1.Node.cs (1)
1517
private static byte ParentHeight(Node left, Node right) => checked((byte)(1 + Math.
Max
(left._height, right._height)));
System\Collections\Immutable\ImmutableSortedDictionary_2.Node.cs (2)
88
_height = checked((byte)(1 + Math.
Max
(left._height, right._height)));
774
_height = checked((byte)(1 + Math.
Max
(_left._height, _right._height)));
System\Collections\Immutable\ImmutableSortedSet_1.Node.cs (2)
90
_height = checked((byte)(1 + Math.
Max
(left._height, right._height)));
765
_height = checked((byte)(1 + Math.
Max
(_left._height, _right._height)));
System\Collections\Immutable\SortedInt32KeyNode.cs (2)
91
_height = checked((byte)(1 + Math.
Max
(left._height, right._height)));
555
_height = checked((byte)(1 + Math.
Max
(_left._height, _right._height)));
System.Data.Common (2)
System\Data\Common\ByteStorage.cs (1)
124
max = Math.
Max
(_values[record], max);
System\Data\SQLTypes\SQLDecimal.cs (1)
414
precision = Math.
Max
(precision, _bScale);
System.Data.Odbc (1)
System\Data\Odbc\OdbcParameter.cs (1)
546
_internalPrecision = Math.
Max
(_internalPrecision, precision); // silently adjust the precision
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
531
public static byte Max(byte x, byte y) => Math.
Max
(x, y);