5 writes to curr
System.Xml (5)
System\Xml\BitStack.cs (5)
28
this.
curr
= 0x1;
41
this.
curr
= (this.curr << 1) | (bit ? 1u : 0u);
54
this.
curr
>>= 1;
95
this.
curr
= 0x1;
112
this.
curr
= this.bitStack[--this.stackPos];
9 references to curr
System.Xml (9)
System\Xml\BitStack.cs (9)
35
if ((this.
curr
& 0x80000000) != 0) {
41
this.curr = (this.
curr
<< 1) | (bit ? 1u : 0u);
49
Debug.Assert(this.
curr
!= 0x1, "Stack empty");
52
bit = (this.
curr
& 0x1) != 0;
56
if (this.
curr
== 0x1) {
68
Debug.Assert(this.
curr
!= 0x1, "Stack empty");
69
return (this.
curr
& 0x1) != 0;
77
get { return this.
curr
== 0x1; }
94
this.bitStack[this.stackPos++] = this.
curr
;