8 references to LoHiBit
System.ServiceModel.Primitives (8)
Internals\System\Runtime\IOThreadScheduler.cs (8)
26public const int HiHiBit = LoHiBit << HiShift; 27public const int LoCountMask = LoHiBit - 1; 29public const int LoMask = LoCountMask | LoHiBit; 31public const int HiBits = LoHiBit | HiHiBit; 328if ((gateSnapshot & Bits.LoHiBit) != 0 && Bits.IsComplete(gateSnapshot)) 342gateSnapshot = Interlocked.Add(ref _gate, Bits.LoHiBit); 343Contract.Assert((gateSnapshot & Bits.HiBits) == Bits.LoHiBit, "Slot already empty."); 374if ((gateSnapshot & Bits.LoHiBit) == 0)