3 writes to m_startIndex
mscorlib (3)
system\security\cryptography\rfc2898derivebytes.cs (3)
166
m_startIndex
= m_endIndex = 0;
170
m_startIndex
+= cb;
220
m_startIndex
= m_endIndex = 0;
5 references to m_startIndex
mscorlib (5)
system\security\cryptography\rfc2898derivebytes.cs (5)
162
int size = m_endIndex -
m_startIndex
;
165
Buffer.InternalBlockCopy(m_buffer,
m_startIndex
, password, 0, size);
169
Buffer.InternalBlockCopy(m_buffer,
m_startIndex
, password, 0, cb);
175
Contract.Assert(
m_startIndex
== 0 && m_endIndex == 0, "Invalid start or end index in the internal buffer." );
186
Buffer.InternalBlockCopy(T_block, remainder, m_buffer,
m_startIndex
, m_blockSize - remainder);