11 references to HiShift
System.ServiceModel.Internals (11)
System\Runtime\IOThreadScheduler.cs (11)
23public const int HiOne = 1 << HiShift; 25public const int HiHiBit = LoHiBit << HiShift; 27public const int HiCountMask = LoCountMask << HiShift; 34return ((slot >> HiShift) - slot + 2 & LoMask) - 1; 39return (slot >> HiShift) - slot + 1 & LoMask; 50return (gate & HiMask) == gate << HiShift; 79int headTail = -2 << Bits.HiShift; 84int headTailLowPri = -1 << Bits.HiShift; 173bool queued = this.slots[slot >> Bits.HiShift & SlotMask].TryEnqueueWorkItem(callback, state, out wrapped); 231bool queued = this.slotsLowPri[slot >> Bits.HiShift & SlotMaskLowPri].TryEnqueueWorkItem( 514if (gateSnapshot >> Bits.HiShift != (gateSnapshot & Bits.LoCountMask) ||