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