/aoo41x/main/oox/inc/oox/xls/ |
H A D | biffoutputstream.hxx | 60 void write( const void* pData, sal_uInt16 nBytes ); 62 void fill( sal_uInt8 nValue, sal_uInt16 nBytes ); 124 virtual void writeMemory( const void* pMem, sal_Int32 nBytes, size_t nAtomSize = 1 ); 127 void fill( sal_uInt8 nValue, sal_Int32 nBytes, size_t nAtomSize = 1 );
|
H A D | biffcodec.hxx | 63 sal_uInt16 nBytes ); 79 sal_uInt16 nBytes ) = 0; 112 sal_uInt16 nBytes ); 148 sal_uInt16 nBytes );
|
/aoo41x/main/tools/source/stream/ |
H A D | strmunx.cxx | 468 sal_Bool SvFileStream::LockRange( sal_Size nByteOffset, sal_Size nBytes ) in LockRange() argument 473 aflock.l_len = nBytes; in LockRange() 510 if( ! InternalStreamLock::LockFile( nByteOffset, nByteOffset+nBytes, this ) ) in LockRange() 514 … ByteString(aFilename, osl_getThreadTextEncoding()).GetBuffer(), nByteOffset, nByteOffset+nBytes ); in LockRange() 579 sal_Bool SvFileStream::UnlockRange( sal_Size nByteOffset, sal_Size nBytes ) in UnlockRange() argument 586 aflock.l_len = nBytes; in UnlockRange() 591 InternalStreamLock::UnlockFile( nByteOffset, nByteOffset+nBytes, this ); in UnlockRange()
|
H A D | strmwnt.cxx | 346 sal_Bool SvFileStream::LockRange( sal_uIntPtr nByteOffset, sal_uIntPtr nBytes ) in LockRange() argument 351 bRetVal = ::LockFile(pInstanceData->hFile,nByteOffset,0L,nBytes,0L ); in LockRange() 368 sal_Bool SvFileStream::UnlockRange( sal_uIntPtr nByteOffset, sal_uIntPtr nBytes ) in UnlockRange() argument 373 bRetVal = ::UnlockFile(pInstanceData->hFile,nByteOffset,0L,nBytes,0L ); in UnlockRange()
|
/aoo41x/main/store/source/ |
H A D | lockbyte.hxx | 89 sal_uInt32 nBytes); 100 sal_uInt32 nBytes); 137 sal_uInt32 nBytes) = 0; 142 sal_uInt32 nBytes) = 0;
|
/aoo41x/main/writerfilter/inc/resourcemodel/ |
H A D | SubSequence.hxx | 211 sal_uInt32 nBytes = nCount - n; in dump() local 213 if (nBytes > nStep) in dump() 214 nBytes = nStep; in dump() 216 SubSequence<T> aSeq(*this, n, nBytes); in dump() 219 n += nBytes; in dump()
|
/aoo41x/main/oox/inc/oox/core/ |
H A D | binarycodec.hxx | 149 sal_Int32 nBytes ); 166 bool skip( sal_Int32 nBytes ); 282 sal_Int32 nBytes ); 299 bool skip( sal_Int32 nBytes );
|
/aoo41x/main/sc/source/filter/inc/ |
H A D | xestream.hxx | 122 sal_Size Write( const void* pData, sal_Size nBytes ); 124 void WriteZeroBytes( sal_Size nBytes ); 126 void WriteZeroBytesToRecord( sal_Size nBytes ); 130 sal_Size CopyFromStream( SvStream& rInStrm, sal_Size nBytes = STREAM_SEEK_TO_END ); 189 void WriteRawZeroBytes( sal_Size nBytes );
|
/aoo41x/main/filter/inc/filter/msfilter/ |
H A D | mscodec.hxx | 108 virtual void Decode( sal_uInt8* pnData, sal_Size nBytes )=0; 122 void Skip( sal_Size nBytes ); 155 virtual void Decode( sal_uInt8* pnData, sal_Size nBytes ); 176 virtual void Decode( sal_uInt8* pnData, sal_Size nBytes );
|
/aoo41x/main/sal/textenc/ |
H A D | convertiso2022kr.c | 389 sal_uInt16 nBytes = 0; in ImplConvertUnicodeToIso2022Kr() local 397 nBytes = pKsX1001Data[nIndex1]. in ImplConvertUnicodeToIso2022Kr() 400 if (nBytes != 0) in ImplConvertUnicodeToIso2022Kr() 414 *pDestBufPtr++ = (sal_Char) ((nBytes >> 8) & 0x7F); in ImplConvertUnicodeToIso2022Kr() 415 *pDestBufPtr++ = (sal_Char) (nBytes & 0x7F); in ImplConvertUnicodeToIso2022Kr()
|
/aoo41x/main/sdext/source/pdfimport/pdfparse/ |
H A D | pdfentries.cxx | 793 unsigned int nBytes = 0; in writeStream() local 794 …if( getDeflatedStream( &pStream, &nBytes, pParsedFile, rWriteContext ) && nBytes && rWriteContext.… in writeStream() 798 unzipToBuffer( pStream, nBytes, &pOutBytes, &nOutBytes ); in writeStream() 802 else if( pStream && nBytes ) in writeStream() 803 rWriteContext.write( pStream, nBytes ); in writeStream() 831 unsigned int nBytes = 0; in emit() local 832 … bool bDeflate = getDeflatedStream( &pStream, &nBytes, pEData->m_pObjectContainer, rWriteContext ); in emit() 833 if( pStream && nBytes ) in emit() 839 unzipToBuffer( pStream, nBytes, &pOutBytes, &nOutBytes ); in emit() 844 nOutBytes = (sal_uInt32)nBytes; in emit()
|
/aoo41x/main/vcl/inc/ |
H A D | salinst.hxx | 147 bool CallEventCallback( void* pEvent, int nBytes ) in CallEventCallback() argument 148 { return m_pEventInst.is() && m_pEventInst->dispatchEvent( pEvent, nBytes ); } in CallEventCallback() 149 bool CallErrorCallback( void* pEvent, int nBytes ) in CallErrorCallback() argument 150 { return m_pEventInst.is() && m_pEventInst->dispatchErrorEvent( pEvent, nBytes ); } in CallErrorCallback()
|
/aoo41x/main/unotools/qa/complex/tempfile/ |
H A D | TestHelper.java | 112 public void ReadBytesWithStream( byte [][] pBytes, int nBytes, XTempFile xTempFile ) { in ReadBytesWithStream() argument 118 xInTemp.readBytes( pBytes, nBytes ); in ReadBytesWithStream() 125 …public void ReadDirectlyFromTempFile( byte [][] pBytes, int nBytes, XSimpleFileAccess xSFA, Strin… in ReadDirectlyFromTempFile() argument 133 xInTemp.readBytes( pBytes, nBytes ); in ReadDirectlyFromTempFile()
|
/aoo41x/main/vcl/unx/generic/app/ |
H A D | i18n_cb.cxx | 185 size_t nBytes = wcstombs ( NULL, pWCString, 1024 /* dont care */); in Preedit_InsertText() local 186 pMBString = (char*)alloca( nBytes + 1 ); in Preedit_InsertText() 187 nMBLength = wcstombs ( pMBString, pWCString, nBytes + 1); in Preedit_InsertText() 607 size_t nBytes = wcstombs( NULL, pWString, 1024 ); in StatusDrawCallback() local 608 pMBString = (sal_Char*)alloca( nBytes+1 ); in StatusDrawCallback() 609 nLength = wcstombs( pMBString, pWString, nBytes+1 ); in StatusDrawCallback()
|
/aoo41x/main/vcl/unx/generic/gdi/ |
H A D | salprnpsp.cxx | 206 int nBytes; in copyJobDataToJobSetup() local 208 if( rData.getStreamBuffer( pBuffer, nBytes ) ) in copyJobDataToJobSetup() 210 pJobSetup->mnDriverDataLen = nBytes; in copyJobDataToJobSetup() 265 int nBytes = fread( aBuffer, 1, sizeof( aBuffer ), fp ); in passFileToCommandLine() local 266 if( nBytes ) in passFileToCommandLine() 267 write( fd[ 1 ], aBuffer, nBytes ); in passFileToCommandLine() 610 int nBytes; in Setup() local 612 aInfo.getStreamBuffer( pBuffer, nBytes ); in Setup() 613 pJobSetup->mnDriverDataLen = nBytes; in Setup()
|
/aoo41x/main/oox/inc/oox/ole/ |
H A D | vbainputstream.hxx | 52 …virtual sal_Int32 readData( StreamDataSequence& orData, sal_Int32 nBytes, size_t nAtomSize = 1 ); 55 virtual sal_Int32 readMemory( void* opMem, sal_Int32 nBytes, size_t nAtomSize = 1 ); 57 virtual void skip( sal_Int32 nBytes, size_t nAtomSize = 1 );
|
/aoo41x/main/vcl/workben/ |
H A D | svpclient.cxx | 243 ssize_t nBytes = 0; in processCommand() local 246 nBytes = read( nSocket, buf, sizeof(buf) ); in processCommand() 247 aAnswer.append( buf, nBytes ); in processCommand() 248 } while( nBytes == sizeof( buf ) ); in processCommand()
|
/aoo41x/main/setup_native/source/win32/customactions/shellextensions/ |
H A D | checkdirectory.cxx | 61 DWORD nBytes = ++nChars * sizeof(TCHAR); in GetMsiProperty() local 62 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() 63 ZeroMemory( buffer, nBytes ); in GetMsiProperty()
|
H A D | checkpatches.cxx | 78 DWORD nBytes = ++nChars * sizeof(TCHAR); in GetMsiProperty() local 79 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() 80 ZeroMemory( buffer, nBytes ); in GetMsiProperty()
|
H A D | startmenuicon.cxx | 56 DWORD nBytes = ++nChars * sizeof(TCHAR); in GetMsiProperty() local 57 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() 58 ZeroMemory( buffer, nBytes ); in GetMsiProperty()
|
H A D | copyextensiondata.cxx | 63 DWORD nBytes = ++nChars * sizeof(TCHAR); in GetMsiProperty() local 64 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() 65 ZeroMemory( buffer, nBytes ); in GetMsiProperty()
|
H A D | migrateinstallpath.cxx | 58 DWORD nBytes = ++nChars * sizeof(TCHAR); in GetMsiProperty() local 59 LPTSTR buffer = reinterpret_cast<LPTSTR>(_alloca(nBytes)); in GetMsiProperty() 60 ZeroMemory( buffer, nBytes ); in GetMsiProperty()
|
/aoo41x/main/oox/inc/oox/helper/ |
H A D | binaryoutputstream.hxx | 60 virtual void writeMemory( const void* pMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) = 0; 122 virtual void writeMemory( const void* pMem, sal_Int32 nBytes, size_t nAtomSize = 1 ); 163 virtual void writeMemory( const void* pMem, sal_Int32 nBytes, size_t nAtomSize = 1 );
|
/aoo41x/main/comphelper/source/streaming/ |
H A D | streamsection.cxx | 103 sal_Int32 nBytes = 0; in available() local 107 nBytes = m_xMarkStream->offsetToMark(m_nBlockStart) - sizeof(m_nBlockLen); in available() 112 return nBytes; in available()
|
/aoo41x/main/store/inc/store/ |
H A D | store.hxx | 136 sal_uInt32 nBytes, in readAt() argument 142 return store_readStream (m_hImpl, nOffset, pBuffer, nBytes, &rnDone); in readAt() 151 sal_uInt32 nBytes, in writeAt() argument 157 return store_writeStream (m_hImpl, nOffset, pBuffer, nBytes, &rnDone); in writeAt()
|