Lines Matching refs:nBlock
856 sal_uInt32 nBlock = std::min(sal_uInt32(m_pReadPage->m_pEnd in read() local
859 rtl_copyMemory(m_pReadBuffer, m_pReadPage->m_pRead, nBlock); in read()
860 m_pReadPage->m_pRead += nBlock; in read()
861 m_pReadBuffer += nBlock; in read()
862 m_nReadBufferSize -= nBlock; in read()
864 nRemain -= nBlock; in read()
908 sal_uInt32 nBlock = std::min(nRemain, in write() local
915 nBlock = *m_aMarks.begin() > nPosition ? in write()
916 std::min(nBlock, sal_uInt32(*m_aMarks.begin() in write()
920 if (nBlock > 0) in write()
923 nBlock); in write()
924 m_nReadBufferFilled += nBlock; in write()
925 nRemain -= nBlock; in write()
927 nPosition += nBlock; in write()
939 sal_uInt32 nBlock in write() local
943 rtl_copyMemory(m_pWritePage->m_pEnd, pBuffer, nBlock); in write()
944 m_pWritePage->m_pEnd += nBlock; in write()
945 pBuffer += nBlock; in write()
946 nRemain -= nBlock; in write()