8 references to TrailingZeroCount
Microsoft.AspNetCore.Server.Kestrel.Core (7)
Internal\Http\HttpHeaders.Generated.cs (5)
8664
_next = BitOperations.
TrailingZeroCount
(_currentBits);
8678
? BitOperations.
TrailingZeroCount
(bits)
15500
_next = BitOperations.
TrailingZeroCount
(_currentBits);
15514
? BitOperations.
TrailingZeroCount
(bits)
17621
_next = BitOperations.
TrailingZeroCount
(_currentBits);
Internal\Http\HttpResponseTrailers.cs (2)
63
_next = _currentBits != 0 ? BitOperations.
TrailingZeroCount
(_currentBits) : -1;
85
_next = _currentBits != 0 ? BitOperations.
TrailingZeroCount
(_currentBits) : -1;
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
314
public static long TrailingZeroCount(long value) => BitOperations.
TrailingZeroCount
(value);