3 writes to _inputIndex
System.Security.Cryptography (3)
System\Security\Cryptography\Base64Transforms.cs (3)
170_inputIndex = bytesToTransform; 299_inputIndex = bytesToTransform & 3; // bit hack for % 4 338_inputIndex = 0;
6 references to _inputIndex
System.Security.Cryptography (6)
System\Security\Cryptography\Base64Transforms.cs (6)
152int bytesToTransform = _inputIndex + inputBufferSpan.Length; 197int bytesToTransform = _inputIndex + inputBufferSpan.Length; 239int index = _inputIndex; 300bytesToTransform -= _inputIndex; // only transform up to the next multiple of 4 301Debug.Assert(_inputIndex < _inputBuffer.Length); 302transformBuffer.Slice(transformBuffer.Length - _inputIndex).CopyTo(_inputBuffer);