Searched refs:nReadBytes (Results 1 – 4 of 4) sorted by relevance
| /AOO41X/main/oox/source/helper/ |
| H A D | binaryinputstream.cxx | 238 sal_Int32 nReadBytes = 0; in readData() local 241 nReadBytes = getMaxBytes( nBytes ); in readData() 242 orData.realloc( nReadBytes ); in readData() 243 if( nReadBytes > 0 ) in readData() 244 … memcpy( orData.getArray(), mpData->getConstArray() + mnPos, static_cast< size_t >( nReadBytes ) ); in readData() 245 mnPos += nReadBytes; in readData() 246 mbEof = nReadBytes < nBytes; in readData() 248 return nReadBytes; in readData() 253 sal_Int32 nReadBytes = 0; in readMemory() local 256 nReadBytes = getMaxBytes( nBytes ); in readMemory() [all …]
|
| /AOO41X/main/oox/source/ole/ |
| H A D | vbainputstream.cxx | 100 sal_Int32 nReadBytes = ::std::min( nBytes, nChunkLeft ); in readMemory() local 101 memcpy( opnMem, &*(maChunk.begin() + mnChunkPos), nReadBytes ); in readMemory() 102 opnMem += nReadBytes; in readMemory() 103 mnChunkPos += static_cast< size_t >( nReadBytes ); in readMemory() 104 nBytes -= nReadBytes; in readMemory() 105 nRet += nReadBytes; in readMemory()
|
| /AOO41X/main/embedserv/source/embed/ |
| H A D | ed_ipersiststr.cxx | 145 sal_uInt32 nReadBytes = 0; in copyXTempOutToIStream() local 150 nReadBytes = xTempIn->readBytes( aBuffer, nConstBufferSize ); in copyXTempOutToIStream() 158 HRESULT hr = pStream->Write( (void*)aBuffer.getArray(), nReadBytes, &nWritten ); in copyXTempOutToIStream() 159 if ( !SUCCEEDED( hr ) || nWritten != nReadBytes ) in copyXTempOutToIStream() 162 } while( nReadBytes == nConstBufferSize ); in copyXTempOutToIStream()
|
| /AOO41X/main/ucb/source/ucp/file/ |
| H A D | shell.cxx | 1856 sal_Int32 nReadBytes = 0, nRequestedBytes = 32768 /*32k*/; in write() local 1863 nReadBytes = aInputStream->readBytes( seq, in write() 1888 if( nReadBytes ) in write() 1893 sal_uInt64( nReadBytes ), in write() 1904 else if( nWrittenBytes != sal_uInt64( nReadBytes ) ) in write() 1912 } while( nReadBytes == nRequestedBytes ); in write()
|