1 write to _ref
System.Runtime.Caching (1)
System\Runtime\Caching\CacheExpires.cs (1)
31
_ref
= ((((uint)pageIndex) << PAGE_SHIFT) | (((uint)(entryIndex)) & ENTRY_MASK));
6 references to _ref
System.Runtime.Caching (6)
System\Runtime\Caching\CacheExpires.cs (6)
36
public bool Equals(ExpiresEntryRef other) =>
_ref
== other.
_ref
;
41
public override int GetHashCode() => (int)
_ref
;
43
internal int PageIndex => (int)(
_ref
>> PAGE_SHIFT);
44
internal int Index => (int)(
_ref
& ENTRY_MASK);
45
internal bool IsInvalid =>
_ref
== 0;