7 references to MethodKindMask
Microsoft.CodeAnalysis.CSharp (7)
Symbols\Metadata\PE\PEMethodSymbol.cs (7)
124
return (MethodKind)((_bits >> MethodKindOffset) &
MethodKindMask
);
129
Debug.Assert((long)value == ((long)value &
MethodKindMask
));
130
_bits = (_bits & ~(
MethodKindMask
<< MethodKindOffset)) | (((long)value &
MethodKindMask
) << MethodKindOffset) | MethodKindIsPopulatedBit;
165
Debug.Assert(EnumUtilities.ContainsAllValues<MethodKind>((int)
MethodKindMask
));
191
Debug.Assert((long)methodKind == ((long)methodKind &
MethodKindMask
));
192
long bitsToSet = (((long)methodKind &
MethodKindMask
) << MethodKindOffset) | MethodKindIsPopulatedBit;