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