11 references to OffsetMask
System.Reflection.Metadata (11)
System\Reflection\Metadata\Handle.cs (1)
45
Debug.Assert(IsHeapHandle && value <= HeapHandleType.
OffsetMask
||
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
159
internal const uint TypeMask = ~(HeapHandleType.
OffsetMask
);
194
return (offset & ~
OffsetMask
) == 0;
System\Reflection\Metadata\TypeSystem\Handles.TypeSystem.cs (8)
2347
(int)(handle._value & HeapHandleType.
OffsetMask
));
2376
return (_value & (HeapHandleType.VirtualBit | HeapHandleType.
OffsetMask
)) == 0;
2384
return (int)(_value & HeapHandleType.
OffsetMask
);
2390
return (VirtualIndex)(_value & HeapHandleType.
OffsetMask
);
2396
return (int)(_value & HeapHandleType.
OffsetMask
);
2477
(int)(handle._value & HeapHandleType.
OffsetMask
));
2508
return (int)(_value & HeapHandleType.
OffsetMask
);
2609
(int)(handle._value & HeapHandleType.
OffsetMask
));