Lines Matching refs:m_nIndex
79 sal_uInt32 m_nIndex; member
180 k = (pImpl->m_nIndex + j) - RTL_RANDOM_SIZE_POOL; in __rtl_random_seedPool()
184 pImpl->m_hDigest, &(pImpl->m_pData[pImpl->m_nIndex]), j - k); in __rtl_random_seedPool()
191 pImpl->m_hDigest, &(pImpl->m_pData[pImpl->m_nIndex]), j); in __rtl_random_seedPool()
201 pImpl->m_pData[pImpl->m_nIndex++] ^= pImpl->m_pDigest[k]; in __rtl_random_seedPool()
202 if (pImpl->m_nIndex >= RTL_RANDOM_SIZE_POOL) in __rtl_random_seedPool()
205 pImpl->m_nIndex = 0; in __rtl_random_seedPool()
210 if (pImpl->m_nIndex > pImpl->m_nData) in __rtl_random_seedPool()
211 pImpl->m_nData = pImpl->m_nIndex; in __rtl_random_seedPool()
234 k = (pImpl->m_nIndex + j) - pImpl->m_nData; in __rtl_random_readPool()
238 pImpl->m_hDigest, &(pImpl->m_pData[pImpl->m_nIndex]), j - k); in __rtl_random_readPool()
245 pImpl->m_hDigest, &(pImpl->m_pData[pImpl->m_nIndex]), j); in __rtl_random_readPool()
252 if (pImpl->m_nIndex >= pImpl->m_nData) pImpl->m_nIndex = 0; in __rtl_random_readPool()
253 pImpl->m_pData[pImpl->m_nIndex++] ^= pImpl->m_pDigest[k]; in __rtl_random_readPool()