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)
251
if (
_cbitsInPartialByte
>= countOfBits)
279
int rightShiftNextByteBy = Math.Abs((countOfBits -
_cbitsInPartialByte
) - Native.BitsPerByte);
286
_partialByte = (byte)(nextByte << (countOfBits -
_cbitsInPartialByte
));
289
_cbitsInPartialByte = Native.BitsPerByte - (countOfBits -
_cbitsInPartialByte
);