5 writes to _currentBits
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http\HttpHeaders.Generated.cs (3)
17592
_currentBits
^= 0x1L;
17598
_currentBits
^= 0x2L;
17604
_currentBits
^= 0x4L;
Internal\Http\HttpResponseTrailers.cs (2)
62
_currentBits
= collection._bits;
84
_currentBits
= _collection._bits;
9 references to _currentBits
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http\HttpHeaders.Generated.cs (5)
17589
Debug.Assert((
_currentBits
& 0x1L) != 0);
17595
Debug.Assert((
_currentBits
& 0x2L) != 0);
17601
Debug.Assert((
_currentBits
& 0x4L) != 0);
17619
if (
_currentBits
!= 0)
17621
_next = BitOperations.TrailingZeroCount(
_currentBits
);
Internal\Http\HttpResponseTrailers.cs (4)
63
_next =
_currentBits
!= 0 ? BitOperations.TrailingZeroCount(
_currentBits
) : -1;
85
_next =
_currentBits
!= 0 ? BitOperations.TrailingZeroCount(
_currentBits
) : -1;