40 writes to _currentBits
Microsoft.AspNetCore.Server.Kestrel.Core (40)
Internal\Http\HttpHeaders.Generated.cs (38)
15256
_currentBits
^= 0x1L;
15262
_currentBits
^= 0x2L;
15268
_currentBits
^= 0x4L;
15274
_currentBits
^= 0x8L;
15280
_currentBits
^= 0x10L;
15286
_currentBits
^= 0x20L;
15292
_currentBits
^= 0x40L;
15298
_currentBits
^= 0x80L;
15304
_currentBits
^= 0x100L;
15310
_currentBits
^= 0x200L;
15316
_currentBits
^= 0x400L;
15322
_currentBits
^= 0x800L;
15328
_currentBits
^= 0x1000L;
15334
_currentBits
^= 0x2000L;
15340
_currentBits
^= 0x4000L;
15346
_currentBits
^= 0x8000L;
15352
_currentBits
^= 0x10000L;
15358
_currentBits
^= 0x20000L;
15364
_currentBits
^= 0x40000L;
15370
_currentBits
^= 0x80000L;
15376
_currentBits
^= 0x100000L;
15382
_currentBits
^= 0x200000L;
15388
_currentBits
^= 0x400000L;
15394
_currentBits
^= 0x800000L;
15400
_currentBits
^= 0x1000000L;
15406
_currentBits
^= 0x2000000L;
15412
_currentBits
^= 0x4000000L;
15418
_currentBits
^= 0x8000000L;
15424
_currentBits
^= 0x10000000L;
15430
_currentBits
^= 0x20000000L;
15436
_currentBits
^= 0x40000000L;
15442
_currentBits
^= 0x80000000L;
15448
_currentBits
^= 0x100000000L;
15454
_currentBits
^= 0x200000000L;
15460
_currentBits
^= 0x400000000L;
15466
_currentBits
^= 0x800000000L;
15472
_currentBits
^= 0x1000000000L;
15478
_currentBits
^= 0x2000000000L;
Internal\Http\HttpResponseHeaders.cs (2)
153
_currentBits
= collection._bits;
175
_currentBits
= _collection._bits;
43 references to _currentBits
Microsoft.AspNetCore.Server.Kestrel.Core (43)
Internal\Http\HttpHeaders.Generated.cs (41)
15253
Debug.Assert((
_currentBits
& 0x1L) != 0);
15259
Debug.Assert((
_currentBits
& 0x2L) != 0);
15265
Debug.Assert((
_currentBits
& 0x4L) != 0);
15271
Debug.Assert((
_currentBits
& 0x8L) != 0);
15277
Debug.Assert((
_currentBits
& 0x10L) != 0);
15283
Debug.Assert((
_currentBits
& 0x20L) != 0);
15289
Debug.Assert((
_currentBits
& 0x40L) != 0);
15295
Debug.Assert((
_currentBits
& 0x80L) != 0);
15301
Debug.Assert((
_currentBits
& 0x100L) != 0);
15307
Debug.Assert((
_currentBits
& 0x200L) != 0);
15313
Debug.Assert((
_currentBits
& 0x400L) != 0);
15319
Debug.Assert((
_currentBits
& 0x800L) != 0);
15325
Debug.Assert((
_currentBits
& 0x1000L) != 0);
15331
Debug.Assert((
_currentBits
& 0x2000L) != 0);
15337
Debug.Assert((
_currentBits
& 0x4000L) != 0);
15343
Debug.Assert((
_currentBits
& 0x8000L) != 0);
15349
Debug.Assert((
_currentBits
& 0x10000L) != 0);
15355
Debug.Assert((
_currentBits
& 0x20000L) != 0);
15361
Debug.Assert((
_currentBits
& 0x40000L) != 0);
15367
Debug.Assert((
_currentBits
& 0x80000L) != 0);
15373
Debug.Assert((
_currentBits
& 0x100000L) != 0);
15379
Debug.Assert((
_currentBits
& 0x200000L) != 0);
15385
Debug.Assert((
_currentBits
& 0x400000L) != 0);
15391
Debug.Assert((
_currentBits
& 0x800000L) != 0);
15397
Debug.Assert((
_currentBits
& 0x1000000L) != 0);
15403
Debug.Assert((
_currentBits
& 0x2000000L) != 0);
15409
Debug.Assert((
_currentBits
& 0x4000000L) != 0);
15415
Debug.Assert((
_currentBits
& 0x8000000L) != 0);
15421
Debug.Assert((
_currentBits
& 0x10000000L) != 0);
15427
Debug.Assert((
_currentBits
& 0x20000000L) != 0);
15433
Debug.Assert((
_currentBits
& 0x40000000L) != 0);
15439
Debug.Assert((
_currentBits
& 0x80000000L) != 0);
15445
Debug.Assert((
_currentBits
& 0x100000000L) != 0);
15451
Debug.Assert((
_currentBits
& 0x200000000L) != 0);
15457
Debug.Assert((
_currentBits
& 0x400000000L) != 0);
15463
Debug.Assert((
_currentBits
& 0x800000000L) != 0);
15469
Debug.Assert((
_currentBits
& 0x1000000000L) != 0);
15475
Debug.Assert((
_currentBits
& 0x2000000000L) != 0);
15481
Debug.Assert(
_currentBits
== 0);
15498
if (
_currentBits
!= 0)
15500
_next = BitOperations.TrailingZeroCount(
_currentBits
);
Internal\Http\HttpResponseHeaders.cs (2)
154
_next = GetNext(
_currentBits
, collection.ContentLength.HasValue);
176
_next = GetNext(
_currentBits
, _collection.ContentLength.HasValue);