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