Searched refs:nReadSize (Results 1 – 9 of 9) sorted by relevance
/aoo41x/main/sc/source/filter/excel/ |
H A D | xistream.cxx | 811 mbValid = (nReadSize == nReadRet); in Read() 835 nRet += Read( pnBuffer, nReadSize ); in CopyToStream() 837 nBytesLeft -= nReadSize; in CopyToStream() 882 mrStrm.SeekRel( nReadSize ); in Ignore() 884 nBytesLeft -= nReadSize; in Ignore() 920 sal_uInt16 nReadSize; in ReadRawUniString() local 960 nCharsLeft = nCharsLeft - nReadSize; in ReadRawUniString() 991 sal_uInt16 nReadSize; in IgnoreRawUniString() local 1000 Ignore( nReadSize * 2 ); in IgnoreRawUniString() 1005 Ignore( nReadSize ); in IgnoreRawUniString() [all …]
|
/aoo41x/main/oox/source/ole/ |
H A D | axbinaryreader.cxx | 80 sal_Int32 nReadSize = 0; in readData() local 83 nReadSize = mpInStrm->readData( orData, nBytes, nAtomSize ); in readData() 84 mnStrmPos += nReadSize; in readData() 87 return nReadSize; in readData() 92 sal_Int32 nReadSize = 0; in readMemory() local 95 nReadSize = mpInStrm->readMemory( opMem, nBytes, nAtomSize ); in readMemory() 96 mnStrmPos += nReadSize; in readMemory() 99 return nReadSize; in readMemory()
|
/aoo41x/main/oox/source/helper/ |
H A D | binaryinputstream.cxx | 136 sal_Int32 nReadSize = getLimitedValue< sal_Int32, sal_Int64 >( nBytes, 0, nBufferSize ); in copyToStream() local 137 sal_Int32 nBytesRead = readData( aBuffer, nReadSize, nAtomSize ); in copyToStream() 139 if( nReadSize == nBytesRead ) in copyToStream() 140 nBytes -= nReadSize; in copyToStream() 204 sal_Int32 nReadSize = getLimitedValue< sal_Int32, sal_Int32 >( nBytes, 0, nBufferSize ); in readMemory() local 205 sal_Int32 nBytesRead = readData( maBuffer, nReadSize, nAtomSize ); in readMemory()
|
/aoo41x/main/oox/source/vml/ |
H A D | vmlinputstream.cxx | 296 sal_Int32 nReadSize = ::std::min( nBytesToRead, maBuffer.getLength() - mnBufferPos ); in readBytes() local 297 if( nReadSize > 0 ) in readBytes() 299 … memcpy( pcDest + nRet, maBuffer.getStr() + mnBufferPos, static_cast< size_t >( nReadSize ) ); in readBytes() 300 mnBufferPos += nReadSize; in readBytes() 301 nBytesToRead -= nReadSize; in readBytes() 302 nRet += nReadSize; in readBytes()
|
/aoo41x/main/oox/source/xls/ |
H A D | biffinputstream.cxx | 318 sal_uInt16 nReadSize = getMaxRawReadSize( nBytesLeft, nAtomSize ); in readMemory() local 320 if( nReadSize > 0 ) in readMemory() 322 maRecBuffer.read( pnBuffer, nReadSize ); in readMemory() 323 nRet += nReadSize; in readMemory() 324 pnBuffer += nReadSize; in readMemory() 325 nBytesLeft -= nReadSize; in readMemory()
|
/aoo41x/main/tools/source/stream/ |
H A D | vcompat.cxx | 71 const sal_uInt32 nReadSize = mpRWStm->Tell() - mnCompatPos; in ~VersionCompat() local 73 if( mnTotalSize > nReadSize ) in ~VersionCompat() 74 mpRWStm->SeekRel( mnTotalSize - nReadSize ); in ~VersionCompat()
|
/aoo41x/main/svtools/source/misc/ |
H A D | imap3.cxx | 84 const sal_uLong nReadSize = pRWStm->Tell() - nCompatPos; in ~IMapCompat() local 86 if ( nTotalSize > nReadSize ) in ~IMapCompat() 87 pRWStm->SeekRel( nTotalSize - nReadSize ); in ~IMapCompat()
|
/aoo41x/main/oox/inc/oox/helper/ |
H A D | binaryinputstream.hxx | 256 …sal_Int32 nReadSize = getLimitedValue< sal_Int32, sal_Int32 >( nElemCount, 0, SAL_MAX_INT32 / size… in readArray() local 257 nRet = readMemory( opnArray, nReadSize, sizeof( Type ) ) / sizeof( Type ); in readArray()
|
/aoo41x/main/oox/source/dump/ |
H A D | dumperbase.cxx | 2560 sal_Int32 nReadSize = mxStrm->readMemory( pnLineData, nLineSize ); in dumpRawBinary() local 2561 bLoop = nReadSize == nLineSize; in dumpRawBinary() 2562 nPos += nReadSize; in dumpRawBinary() 2564 if( nReadSize > 0 ) in dumpRawBinary() 2568 for( pnByte = pnLineData, pnEnd = pnLineData + nReadSize; pnByte != pnEnd; ++pnByte ) in dumpRawBinary() 2576 for( pnByte = pnLineData, pnEnd = pnLineData + nReadSize; pnByte != pnEnd; ++pnByte ) in dumpRawBinary()
|
Completed in 94 milliseconds