56 references to MinValue
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (1)
3588
private static readonly FacetsChecker s_numeric10FacetsChecker = new Numeric10FacetsChecker(uint.
MinValue
, uint.MaxValue);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlValueConverter.cs (1)
951
if (value < (long)UInt32.
MinValue
|| value > (long)UInt32.MaxValue)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlReaderDelegator.cs (1)
479
if (value < UInt32.
MinValue
|| value > UInt32.MaxValue)
Microsoft.CodeAnalysis (2)
CodeGen\ILBuilderEmit.cs (2)
690
else if (value >= uint.
MinValue
&& value <= uint.MaxValue)
709
else if (value >= uint.
MinValue
&& value <= uint.MaxValue)
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Conversions.cs (4)
4313
case SpecialType.System_UInt32: return (uint.
MinValue
- 1D) < value && value < (uint.MaxValue + 1D);
4326
return (uint.
MinValue
- 1D) < value && value < (uint.MaxValue + 1D);
4343
case SpecialType.System_UInt32: return (uint.
MinValue
- 1M) < value && value < (uint.MaxValue + 1M);
4354
return (uint.
MinValue
- 1M) < value && value < (uint.MaxValue + 1M);
Binder\Semantics\Conversions\ConversionsBase.cs (1)
1396
return uint.
MinValue
<= value;
Lowering\LocalRewriter\LocalRewriter_Literal.cs (1)
102
else if (scale == 0 && uint.
MinValue
<= value && value <= uint.MaxValue)
Utilities\ValueSetFactory.UIntTC.cs (2)
18
uint INumericTC<uint>.MinValue => uint.
MinValue
;
57
Debug.Assert(value != uint.
MinValue
);
Microsoft.Data.Analysis (3)
PrimitiveDataFrameColumnComputations.cs (3)
4679
var ret = uint.
MinValue
;
4912
var value = uint.
MinValue
;
4935
var value = uint.
MinValue
;
Microsoft.ML.Core (1)
Data\DataKind.cs (1)
236
return uint.
MinValue
;
Microsoft.ML.Tests (4)
CollectionsDataViewTest.cs (1)
144
fuInt = uint.
MinValue
+ 1,
Transformers\ConvertTests.cs (3)
156
AD = new uint[]{ uint.
MinValue
, uint.MaxValue},
224
AD = new uint[]{ uint.
MinValue
, uint.MaxValue},
236
ConvD = new float[] { uint.
MinValue
, uint.MaxValue },
Microsoft.Private.Windows.Core (1)
src\winforms\src\Microsoft.Private.Windows.Polyfills\system\NativeUintExtensions.cs (1)
15
? unchecked((nuint)(UInt32.
MinValue
))
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\Operators.vb (1)
3341
If result < UInt32.
MinValue
Then
PresentationCore (1)
System\Windows\GlobalEventManager.cs (1)
447
private static uint s_globalEventIndex = uint.
MinValue
;
System.Data.Common (2)
System\Data\Common\UInt32Storage.cs (2)
12
private const uint DefaultValue = uint.
MinValue
;
122
uint max = uint.
MinValue
;
System.Formats.Asn1 (3)
System\Formats\Asn1\AsnDecoder.Integer.cs (3)
220
/// <see cref="uint.
MinValue
">UInt32.MinValue</see> and <see cref="uint.MaxValue">UInt32.MaxValue</see>, inclusive; otherwise,
642
/// <see cref="uint.
MinValue
">UInt32.MinValue</see> and <see cref="uint.MaxValue">UInt32.MaxValue</see>, inclusive; otherwise
872
/// <see cref="uint.
MinValue
">UInt32.MinValue</see> and <see cref="uint.MaxValue">UInt32.MaxValue</see>, inclusive; otherwise
System.Private.CoreLib (18)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (2)
1818
(value <= uint.
MinValue
) ? uint.
MinValue
: (uint)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1200
uint actualResult = (value <= 0) ? uint.
MinValue
: (uint)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1267
uint actualResult = (value <= 0) ? uint.
MinValue
: (uint)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (2)
1263
(value <= uint.
MinValue
) ? uint.
MinValue
: (uint)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (2)
1277
(value <= uint.
MinValue
) ? uint.
MinValue
: (uint)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1912
(value <= Zero) ? uint.
MinValue
: (uint)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (2)
1676
(value <= uint.
MinValue
) ? uint.
MinValue
: (uint)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Scalar.cs (1)
1932
result = uint.
MinValue
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
1179
uint actualResult = (value <= 0) ? uint.
MinValue
: (uint)value;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (5)
562
static uint IMinMaxValue<uint>.MinValue =>
MinValue
;
854
(actualValue <=
MinValue
) ?
MinValue
: (uint)actualValue;
921
(actualValue <=
MinValue
) ?
MinValue
: (uint)actualValue;
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\XmlReaderDelegator.cs (1)
693
if (value < uint.
MinValue
|| value > uint.MaxValue)
System.Private.Xml (2)
System\Xml\Schema\DataTypeImplementation.cs (1)
3516
private static readonly Numeric10FacetsChecker s_numeric10FacetsChecker = new Numeric10FacetsChecker(uint.
MinValue
, uint.MaxValue);
System\Xml\Schema\XmlValueConverter.cs (1)
866
if (value < (long)uint.
MinValue
|| value > (long)uint.MaxValue)
System.Runtime.Numerics (5)
System\Numerics\BigInteger.cs (1)
4736
IsNegative(value) ? uint.
MinValue
: (uint)value;
System\Numerics\Complex.cs (4)
1957
(value.m_real <= uint.
MinValue
) ? uint.
MinValue
: (uint)value.m_real;
2099
(value.m_real <= uint.
MinValue
) ? uint.
MinValue
: (uint)value.m_real;
System.Text.Json (1)
System\Text\Json\Reader\Utf8JsonReader.TryGet.cs (1)
513
/// is written in scientific notation) or, it represents a number less than <see cref="uint.
MinValue
"/> or greater