Home
last modified time | relevance | path

Searched refs:nReadSize (Results 1 – 9 of 9) sorted by relevance

/trunk/main/sc/source/filter/excel/
H A Dxistream.cxx811 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 …]
/trunk/main/oox/source/ole/
H A Daxbinaryreader.cxx80 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()
/trunk/main/oox/source/helper/
H A Dbinaryinputstream.cxx136 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()
/trunk/main/oox/source/vml/
H A Dvmlinputstream.cxx296 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()
/trunk/main/oox/source/xls/
H A Dbiffinputstream.cxx318 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()
/trunk/main/tools/source/stream/
H A Dvcompat.cxx71 const sal_uInt32 nReadSize = mpRWStm->Tell() - mnCompatPos; in ~VersionCompat() local
73 if( mnTotalSize > nReadSize ) in ~VersionCompat()
74 mpRWStm->SeekRel( mnTotalSize - nReadSize ); in ~VersionCompat()
/trunk/main/svtools/source/misc/
H A Dimap3.cxx84 const sal_uLong nReadSize = pRWStm->Tell() - nCompatPos; in ~IMapCompat() local
86 if ( nTotalSize > nReadSize ) in ~IMapCompat()
87 pRWStm->SeekRel( nTotalSize - nReadSize ); in ~IMapCompat()
/trunk/main/oox/inc/oox/helper/
H A Dbinaryinputstream.hxx256 …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()
/trunk/main/oox/source/dump/
H A Ddumperbase.cxx2560 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 63 milliseconds