2 writes to head
System.ServiceModel.Internals (2)
System\Runtime\InputQueue.cs (2)
981
this.
head
= (this.head + 1) % this.items.Length;
994
this.
head
= 0;
5 references to head
System.ServiceModel.Internals (5)
System\Runtime\InputQueue.cs (5)
978
Item item = this.items[this.
head
];
979
this.items[this.
head
] = new Item();
981
this.head = (this.
head
+ 1) % this.items.Length;
992
newItems[i] = this.items[(
head
+ i) % this.items.Length];
997
int tail = (this.
head
+ this.totalCount) % this.items.Length;