2 writes to _bitfield
Microsoft.AspNetCore.Shared.Tests (2)
Windows.Win32.SCOPE_ID.g.cs (2)
51
this.
_bitfield
= (uint)((this._bitfield & unchecked((uint)~0x0FFFFFFF)) | ((uint)(value & 0x0FFFFFFF) << 0));
64
this.
_bitfield
= (uint)((this._bitfield & unchecked((uint)~0xF0000000)) | ((uint)(value & 0x0000000F) << 28));
6 references to _bitfield
Microsoft.AspNetCore.Shared.Tests (6)
Windows.Win32.SCOPE_ID.g.cs (6)
42
/// <summary>Gets or sets bits 0-27 in the <see cref="
_bitfield
" /> field. Allowed values are [0..268435455].</summary>
46
readonly get => (uint)((this.
_bitfield
>> 0) & 0x0FFFFFFF);
51
this._bitfield = (uint)((this.
_bitfield
& unchecked((uint)~0x0FFFFFFF)) | ((uint)(value & 0x0FFFFFFF) << 0));
55
/// <summary>Gets or sets bits 28-31 in the <see cref="
_bitfield
" /> field. Allowed values are [0..15].</summary>
59
readonly get => (byte)((this.
_bitfield
>> 28) & 0x0000000F);
64
this._bitfield = (uint)((this.
_bitfield
& unchecked((uint)~0xF0000000)) | ((uint)(value & 0x0000000F) << 28));