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)
36public bool Equals(ExpiresEntryRef other) => _ref == other._ref; 41public override int GetHashCode() => (int)_ref; 43internal int PageIndex => (int)(_ref >> PAGE_SHIFT); 44internal int Index => (int)(_ref & ENTRY_MASK); 45internal bool IsInvalid => _ref == 0;