5 references to Pinned
Microsoft.CodeAnalysis (3)
CodeGen\LocalDefinition.cs (1)
125
=> (_constraints & LocalSlotConstraints.
Pinned
) != 0;
MetadataReader\MetadataDecoder.cs (2)
102
public bool IsPinned => (Constraints & LocalSlotConstraints.
Pinned
) != 0;
956
constraints |= LocalSlotConstraints.
Pinned
;
Microsoft.CodeAnalysis.CSharp (2)
CodeGen\EmitStatement.cs (2)
1799
constraints = LocalSlotConstraints.ByRef | LocalSlotConstraints.
Pinned
;
1811
constraints = (local.IsPinned ? LocalSlotConstraints.
Pinned
: LocalSlotConstraints.None) |