2 overrides of UInt64Value
Microsoft.CodeAnalysis (2)
ConstantValueSpecialized.cs (2)
611
public override ulong
UInt64Value
853
public override ulong
UInt64Value
16 references to UInt64Value
Microsoft.CodeAnalysis (16)
CodeGen\SwitchIntegralJumpTableEmitter.cs (3)
395
var nextCaseLabelValue = caseLabelConstant.
UInt64Value
;
396
Debug.Assert(nextCaseLabelValue > startConstant.
UInt64Value
);
397
nextCaseLabelNormalizedValue = nextCaseLabelValue - startConstant.
UInt64Value
;
CodeGen\SwitchIntegralJumpTableEmitter.SwitchBucket.cs (6)
195
Debug.Assert(endConstant.
UInt64Value
>= startConstant.
UInt64Value
);
196
bucketSize = endConstant.
UInt64Value
- startConstant.
UInt64Value
+ 1;
214
return startConstant.
UInt64Value
== UInt64.MinValue
215
&& endConstant.
UInt64Value
== UInt64.MaxValue;
ConstantValue.cs (3)
528
case ConstantValueTypeDiscriminator.UInt64: return Boxes.Box(
UInt64Value
);
802
writer.WriteUInt64(this.
UInt64Value
);
825
ConstantValueTypeDiscriminator.UInt64 =>
UInt64Value
.ToString(provider),
EnumConstantHelper.cs (1)
102
ulong previous = constantValue.
UInt64Value
;
SwitchConstantValueHelper.cs (3)
86
return first.
UInt64Value
.CompareTo(second.
UInt64Value
);
149
return constant.
UInt64Value
.GetHashCode();