1 write to NumericValue
cdac-build-tool (1)
DataDescriptorModel.cs (1)
376
private GlobalValue(ulong value) {
NumericValue
= value; StringValue = string.Empty;}
7 references to NumericValue
cdac-build-tool (7)
DataDescriptorModel.cs (5)
382
public bool Equals(GlobalValue other) => other.Kind == Kind && other.
NumericValue
==
NumericValue
&& other.StringValue == StringValue;
384
public override int GetHashCode() => HashCode.Combine(Kind,
NumericValue
, StringValue);
389
KindEnum.Direct => $"0x{
NumericValue
:x}",
390
KindEnum.Indirect => $"Indirect({
NumericValue
})",
JsonConverter\GlobalValueJsonConverter.cs (2)
23
writer.WriteStringValue($"0x{value.
NumericValue
:x}");
28
writer.WriteNumberValue(value.
NumericValue
);