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)
152
int bytesToTransform =
_inputIndex
+ inputBufferSpan.Length;
196
int bytesToTransform =
_inputIndex
+ inputBufferSpan.Length;
238
int index =
_inputIndex
;
299
bytesToTransform -=
_inputIndex
; // only transform up to the next multiple of 4
300
Debug.Assert(
_inputIndex
< _inputBuffer.Length);
301
transformBuffer.Slice(transformBuffer.Length -
_inputIndex
).CopyTo(_inputBuffer);