5 writes to _allocationFreeContainer
System.Text.Json (5)
System\Text\Json\BitStack.cs (5)
43
_allocationFreeContainer
= (_allocationFreeContainer << 1) | 1;
60
_allocationFreeContainer
<<= 1;
121
_allocationFreeContainer
>>= 1;
181
_allocationFreeContainer
= 1;
191
_allocationFreeContainer
= 0;
4 references to _allocationFreeContainer
System.Text.Json (4)
System\Text\Json\BitStack.cs (4)
43
_allocationFreeContainer = (
_allocationFreeContainer
<< 1) | 1;
122
inObject = (
_allocationFreeContainer
& 1) != 0;
126
inObject = (
_allocationFreeContainer
& 1) != 0;
160
=> _currentDepth <= AllocationFreeMaxDepth ? (
_allocationFreeContainer
& 1) != 0 : PeekInArray();