Home
last modified time | relevance | path

Searched refs:nByteCount (Results 1 – 8 of 8) sorted by relevance

/AOO41X/main/testtools/source/bridgetest/pyuno/
H A Dimpl.py60 def skipBytes( self, nByteCount ): argument
61 if( nByteCount + self.nIndex > len(self.s) ):
62 nByteCount = len(self.s) - self.nIndex
63 self.nIndex += nByteCount
65 def readBytes( self, retSeq, nByteCount ): argument
67 if( self.nIndex + nByteCount > len(self.s) ):
70 nRet = nByteCount
75 def readSomeBytes( self, retSeq , nByteCount ): argument
77 return readBytes( retSeq, nByteCount )
/AOO41X/main/filter/source/graphicfilter/ipict/
H A Dipict.cxx831 sal_uInt16 nByteCount, nCount, nSrcBPL, nDestBPL; in ReadPixMapEtc() local
858 *pPict >> nByteCount; in ReadPixMapEtc()
859 nDataSize += 2 + (sal_uLong)nByteCount; in ReadPixMapEtc()
864 nByteCount = ( (sal_uInt16)nByteCountAsByte ) & 0x00ff; in ReadPixMapEtc()
865 nDataSize += 1 + (sal_uLong)nByteCount; in ReadPixMapEtc()
868 while ( nByteCount ) in ReadPixMapEtc()
880 nByteCount -= 1 + nCount; in ReadPixMapEtc()
891 nByteCount -= 2; in ReadPixMapEtc()
900 sal_uInt16 nByteCount, nCount, nDestBPL,nD; in ReadPixMapEtc() local
928 *pPict >> nByteCount; in ReadPixMapEtc()
[all …]
/AOO41X/main/sw/source/filter/ww8/
H A Dww8par2.cxx4508 sal_uInt16 nByteCount = 2; in ImportOldFormatStyles() local
4510 while (nByteCount < cbName) in ImportOldFormatStyles()
4514 nByteCount++; in ImportOldFormatStyles()
4532nByteCount = static_cast< sal_uInt16 >(nByteCount + SafeReadString(aTmp, nCount, rSt)); in ImportOldFormatStyles()
4555 nByteCount = 2; in ImportOldFormatStyles()
4558 while (nByteCount < cbChpx) in ImportOldFormatStyles()
4562 nByteCount++; in ImportOldFormatStyles()
4577 nByteCount += nRemainder; in ImportOldFormatStyles()
4585 rSt.SeekRel(cbChpx-nByteCount); in ImportOldFormatStyles()
4586 nByteCount += cbChpx-nByteCount; in ImportOldFormatStyles()
[all …]
/AOO41X/main/filter/source/graphicfilter/itiff/
H A Ditiff.cxx729 sal_uInt32 nRed, nGreen, nBlue, ns, nx, nVal, nByteCount; in ConvertScanline() local
930 nByteCount = ( nImageWidth >> 3 ) + 1; in ConvertScanline()
931 while ( --nByteCount ) in ConvertScanline()
963 nByteCount = ( nImageWidth >> 3 ) + 1; in ConvertScanline()
964 while ( --nByteCount ) in ConvertScanline()
/AOO41X/main/vcl/source/gdi/
H A Dbmpfast.cxx985 long nByteCount = rDst.mnHeight * rDst.mnScanlineSize; in ImplFastEraseBitmap() local
986 rtl_fillMemory( rDst.mpBits, nByteCount, nFillByte ); in ImplFastEraseBitmap()
/AOO41X/main/sdext/source/presenter/
H A DPresenterTheme.cxx418 const sal_Int32 nByteCount (aByteSequence.getLength()); in ConvertToColor() local
421 for (sal_Int32 nIndex=0; nIndex<nByteCount; ++nIndex) in ConvertToColor()
/AOO41X/main/basic/source/runtime/
H A Dmethods1.cxx2672 sal_uInt16 nByteCount = rPar.Get(1)->GetUShort(); in RTLFUNC() local
2684 SbError err = pSbStrm->Read( aByteBuffer, nByteCount, true ); in RTLFUNC()
/AOO41X/main/vcl/aqua/source/gdi/
H A Dsalgdi.cxx1450 void* pEpsData, sal_uLong nByteCount ) in drawEPS() argument
1453 NSData* xNSData = [NSData dataWithBytes:(void*)pEpsData length:(int)nByteCount]; in drawEPS()