2 writes to _cbitsInPartialByte
PresentationCore (2)
Shared\MS\Internal\Ink\BitStream.cs (2)
274
_cbitsInPartialByte
-= countOfBits;
298
_cbitsInPartialByte
= Native.BitsPerByte - (countOfBits - _cbitsInPartialByte);
4 references to _cbitsInPartialByte
PresentationCore (4)
Shared\MS\Internal\Ink\BitStream.cs (4)
260
if (
_cbitsInPartialByte
>= countOfBits)
288
int rightShiftNextByteBy = Math.Abs((countOfBits -
_cbitsInPartialByte
) - Native.BitsPerByte);
295
_partialByte = (byte)(nextByte << (countOfBits -
_cbitsInPartialByte
));
298
_cbitsInPartialByte = Native.BitsPerByte - (countOfBits -
_cbitsInPartialByte
);