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)
260if (_cbitsInPartialByte >= countOfBits) 288int rightShiftNextByteBy = Math.Abs((countOfBits - _cbitsInPartialByte) - Native.BitsPerByte); 295_partialByte = (byte)(nextByte << (countOfBits - _cbitsInPartialByte)); 298_cbitsInPartialByte = Native.BitsPerByte - (countOfBits - _cbitsInPartialByte);