9 references to HiShift
System.ServiceModel.Primitives (9)
Internals\System\Runtime\IOThreadScheduler.cs (9)
24public const int HiOne = 1 << HiShift; 26public const int HiHiBit = LoHiBit << HiShift; 28public const int HiCountMask = LoCountMask << HiShift; 35return ((slot >> HiShift) - slot + 2 & LoMask) - 1; 40return (slot >> HiShift) - slot + 1 & LoMask; 51return (gate & HiMask) == gate << HiShift; 75private int _headTail = -2 << Bits.HiShift; 158bool queued = _slots[slot >> Bits.HiShift & SlotMask].TryEnqueueWorkItem(callback, state, out bool wrapped); 356if (gateSnapshot >> Bits.HiShift != (gateSnapshot & Bits.LoCountMask) ||