12 references to MASK_HASHCODE_INDEX
System.Private.CoreLib (12)
System\Threading\ObjectHeader.cs (10)
66int hashOrIndex = bits & MASK_HASHCODE_INDEX; 102int hashOrIndex = bits & MASK_HASHCODE_INDEX; 126int newHash = RuntimeHelpers.GetNewHashCode() & MASK_HASHCODE_INDEX; 141int h = oldBits & MASK_HASHCODE_INDEX; 147if ((oldBits & MASK_HASHCODE_INDEX) != 0) 186index = header & MASK_HASHCODE_INDEX; 233SyncTable.MoveHashCodeToNewEntry(syncIndex, oldBits & MASK_HASHCODE_INDEX); 247newBits = oldBits & ~(BIT_SBLK_IS_HASHCODE | MASK_HASHCODE_INDEX); 313if ((oldBits & MASK_HASHCODE_INDEX) == 0) 369if ((oldBits & MASK_HASHCODE_INDEX) == 0)
System\Threading\SyncTable.cs (2)
196Debug.Assert(ObjectHeader.MASK_HASHCODE_INDEX < int.MaxValue); 212newSize = Math.Min(newSize, ObjectHeader.MASK_HASHCODE_INDEX + 1);