2 writes to _cbitsInPartialByte
PresentationCore (2)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\Ink\BitStream.cs (2)
265_cbitsInPartialByte -= countOfBits; 289_cbitsInPartialByte = Native.BitsPerByte - (countOfBits - _cbitsInPartialByte);
4 references to _cbitsInPartialByte
PresentationCore (4)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\Ink\BitStream.cs (4)
251if (_cbitsInPartialByte >= countOfBits) 279int rightShiftNextByteBy = Math.Abs((countOfBits - _cbitsInPartialByte) - Native.BitsPerByte); 286_partialByte = (byte)(nextByte << (countOfBits - _cbitsInPartialByte)); 289_cbitsInPartialByte = Native.BitsPerByte - (countOfBits - _cbitsInPartialByte);