3 writes to _bits
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Metadata\PE\PEParameterSymbol.cs (3)
112
_bits
= refKindBits | attributeBits | hasNameInMetadataBits | scopeBits | hasUnscopedRefAttributeBits;
125
ThreadSafeFlagOperations.Set(ref
_bits
, bitsToSet);
139
return ThreadSafeFlagOperations.Set(ref
_bits
, bitsToSet);
6 references to _bits
Microsoft.CodeAnalysis.CSharp (6)
Symbols\Metadata\PE\PEParameterSymbol.cs (6)
75
get { return (RefKind)((
_bits
>> RefKindOffset) & RefKindMask); }
80
get { return (
_bits
& HasNameInMetadataBit) != 0; }
85
get { return (ScopedKind)((
_bits
>> ScopeOffset) & ScopeMask); }
90
get { return (
_bits
& HasUnscopedRefAttributeBit) != 0; }
131
int theBits =
_bits
; // Read this.bits once to ensure the consistency of the value and completion flags.
144
int theBits =
_bits
; // Read this.bits once to ensure the consistency of the value and completion flags.