1 write to Value
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\ExecutionManager\Helpers\NibbleMapHelpers.cs (1)
27public MapUnit(uint value) => Value = value;
8 references to Value
Microsoft.Diagnostics.DataContractReader.Contracts (8)
Contracts\ExecutionManager\Helpers\NibbleMapConstantLookup.cs (3)
43return (mapUnit.Value & MapUnit.NibbleMask) > 8; 48uint nibble = mapUnit.Value & MapUnit.NibbleMask; 49uint relativePointer = (mapUnit.Value & ~MapUnit.NibbleMask) + ((nibble - 9) << 2);
Contracts\ExecutionManager\Helpers\NibbleMapHelpers.cs (5)
29public override string ToString() => $"0x{Value:x}"; 32public MapUnit ShiftNextNibble => new MapUnit(Value >>> 4); 35internal Nibble Nibble => new(Value & NibbleMask); 37public bool IsEmpty => Value == 0; 44return new MapUnit(Value >>> (int)shift);