6 writes to _inputIndex
mscorlib (6)
system\security\cryptography\base64transforms.cs (6)
123_inputIndex = 0; 168_inputIndex += effectiveCount; 177_inputIndex = (effectiveCount + _inputIndex) % 4; 220_inputIndex = (effectiveCount + _inputIndex) % 4; 253_inputIndex = 0; 266_inputIndex = 0;
17 references to _inputIndex
mscorlib (17)
system\security\cryptography\base64transforms.cs (17)
166if (effectiveCount + _inputIndex < 4) { 167Buffer.InternalBlockCopy(temp, 0, _inputBuffer, _inputIndex, effectiveCount); 173int numBlocks = (effectiveCount + _inputIndex) / 4; 174byte[] transformBuffer = new byte[_inputIndex + effectiveCount]; 175Buffer.InternalBlockCopy(_inputBuffer, 0, transformBuffer, 0, _inputIndex); 176Buffer.InternalBlockCopy(temp, 0, transformBuffer, _inputIndex, effectiveCount); 177_inputIndex = (effectiveCount + _inputIndex) % 4; 178Buffer.InternalBlockCopy(temp, effectiveCount - _inputIndex, _inputBuffer, 0, _inputIndex); 210if (effectiveCount + _inputIndex < 4) { 216int numBlocks = (effectiveCount + _inputIndex) / 4; 217byte[] transformBuffer = new byte[_inputIndex + effectiveCount]; 218Buffer.InternalBlockCopy(_inputBuffer, 0, transformBuffer, 0, _inputIndex); 219Buffer.InternalBlockCopy(temp, 0, transformBuffer, _inputIndex, effectiveCount); 220_inputIndex = (effectiveCount + _inputIndex) % 4; 221Buffer.InternalBlockCopy(temp, effectiveCount - _inputIndex, _inputBuffer, 0, _inputIndex);