Home
last modified time | relevance | path

Searched refs:nDat (Results 1 – 13 of 13) sorted by relevance

/trunk/main/filter/source/graphicfilter/ipbm/
H A Dipbm.cxx208 else if ( ( nDat == 0x0d ) || ( nDat == 0x0a ) ) in ImplReadHeader()
216 if ( ( nDat == 0x20 ) || ( nDat == 0x09 ) ) in ImplReadHeader()
231 if ( ( nDat >= '0' ) && ( nDat <= '9' ) ) in ImplReadHeader()
352 else if ( ( nDat == 0x0d ) || ( nDat == 0x0a ) ) in ImplReadBody()
357 if ( mbRemark || nDat == 0x20 || nDat == 0x09 ) in ImplReadBody()
360 if ( nDat == '0' || nDat == '1' ) in ImplReadBody()
418 else if ( ( nDat == 0x0d ) || ( nDat == 0x0a ) ) in ImplReadBody()
429 if ( nDat == 0x20 || nDat == 0x09 ) in ImplReadBody()
438 if ( nDat >= '0' && nDat <= '9' ) in ImplReadBody()
505 if ( nDat == 0x20 || nDat == 0x09 ) in ImplReadBody()
[all …]
/trunk/main/filter/source/graphicfilter/ipsd/
H A Dipsd.cxx366 nDat ^= 0xff; in ImplReadBody()
389 nDat ^= 0xff; in ImplReadBody()
416 *mpPSD >> nDat; in ImplReadBody()
680 *mpPSD >> nDat; in ImplReadBody()
681 if ( nDat ) in ImplReadBody()
682 nDat = 0; in ImplReadBody()
684 nDat = 1; in ImplReadBody()
703 *mpPSD >> nDat; in ImplReadBody()
704 if ( nDat ) in ImplReadBody()
705 nDat = 0; in ImplReadBody()
[all …]
/trunk/main/filter/source/graphicfilter/eppm/
H A Deppm.cxx172 sal_uInt8 i, nDat[3], nNumb; in ImplWriteBody() local
178 nDat[0] = mpAcc->GetPixel( y, x ).GetRed(); in ImplWriteBody()
179 nDat[1] = mpAcc->GetPixel( y, x ).GetGreen(); in ImplWriteBody()
180 nDat[2] = mpAcc->GetPixel( y, x ).GetBlue(); in ImplWriteBody()
183 nNumb = nDat[ i ] / 100; in ImplWriteBody()
187 nDat[ i ] -= ( nNumb * 100 ); in ImplWriteBody()
188 nNumb = nDat[ i ] / 10; in ImplWriteBody()
190 nDat[ i ] -= ( nNumb * 10 ); in ImplWriteBody()
191 *mpOStm << (sal_uInt8)( nDat[ i ] + '0' ); in ImplWriteBody()
196 nNumb = nDat[ i ] / 10; in ImplWriteBody()
[all …]
/trunk/main/filter/source/graphicfilter/epgm/
H A Depgm.cxx169 sal_uInt8 nDat, nNumb; in ImplWriteBody() local
175 nDat = mpAcc->GetPixelIndex( y, x ); in ImplWriteBody()
176 nNumb = nDat / 100; in ImplWriteBody()
180 nDat -= ( nNumb * 100 ); in ImplWriteBody()
181 nNumb = nDat / 10; in ImplWriteBody()
183 nDat -= ( nNumb * 10 ); in ImplWriteBody()
184 *mpOStm << (sal_uInt8)( nDat + '0' ); in ImplWriteBody()
189 nNumb = nDat / 10; in ImplWriteBody()
193 nDat -= ( nNumb * 10 ); in ImplWriteBody()
194 *mpOStm << (sal_uInt8)( nDat + '0' ); in ImplWriteBody()
[all …]
/trunk/main/filter/source/graphicfilter/ipict/
H A Dipict.cxx277 pAcc->SetPixelIndex( ny, nx++, nDat ); \
286 pAcc->SetPixelIndex( ny, nx++, nDat & 3); \
291 pAcc->SetPixelIndex( ny, nx++, nDat ); \
294 pAcc->SetPixelIndex( ny, nx++, nDat ); \
848 *pPict >> nDat; in ReadPixMapEtc()
876 *pPict >> nDat; in ReadPixMapEtc()
885 *pPict >> nDat; in ReadPixMapEtc()
1042 *pPict >> nDat; in ReadPixMapEtc()
1043 pScanline[ i++ ] = nDat; in ReadPixMapEtc()
1051 *pPict >> nDat; in ReadPixMapEtc()
[all …]
/trunk/main/filter/source/graphicfilter/ipcx/
H A Dipcx.cxx227 sal_uInt8 nDat = 0, nCol = 0; in ImplReadBody() local
260 *(pDest++) = nDat; in ImplReadBody()
266 *pPCX >> nDat; in ImplReadBody()
267 if ( ( nDat & 0xc0 ) == 0xc0 ) in ImplReadBody()
269 nCount =( (sal_uLong)nDat ) & 0x003f; in ImplReadBody()
270 *pPCX >> nDat; in ImplReadBody()
276 *(pDest++) = nDat; in ImplReadBody()
285 *(pDest++) = nDat; in ImplReadBody()
294 *(pDest++) = nDat; in ImplReadBody()
/trunk/main/filter/source/graphicfilter/iras/
H A Diras.cxx222 sal_uInt8 nDat = 0; in ImplReadBody() local
232 nDat = ImplGetByte(); in ImplReadBody()
235 nDat >> ( ( x & 7 ) ^ 7 )) ); in ImplReadBody()
246 nDat = ImplGetByte(); in ImplReadBody()
247 mpAcc->SetPixelIndex( y, x, nDat ); in ImplReadBody()
285 nDat = ImplGetByte(); // pad byte > nil in ImplReadBody()
/trunk/main/filter/source/graphicfilter/eras/
H A Deras.cxx220 sal_uInt8 nDat = 0; in ImplWriteBody() local
227 nDat = ( ( nDat << 1 ) | ( mpAcc->GetPixelIndex( y, x ) & 1 ) ); in ImplWriteBody()
229 ImplPutByte( nDat ); in ImplWriteBody()
232 …ImplPutByte( sal::static_int_cast< sal_uInt8 >(nDat << ( ( ( x & 7 ) ^ 7 ) + 1)) );// write remain… in ImplWriteBody()
/trunk/main/filter/source/graphicfilter/ieps/
H A Dieps.cxx128 sal_uInt8 nDat = *pBuf++; in ImplGetLen() local
129 if ( nDat == 0x0a || nDat == 0x25 ) in ImplGetLen()
604 sal_uInt8 nDat = 0; in GraphicImport() local
640 nDat <<= 4; in GraphicImport()
641 nDat |= ( nByte ^ 0xf ); // in epsi a zero bit represents white color in GraphicImport()
651 pAcc->SetPixelIndex( y, x, static_cast<sal_uInt8>(nDat >> nBitsLeft) & 1 ); in GraphicImport()
654 pAcc->SetPixelIndex( y, x, nDat ? 1 : 0 ); // nBitDepth == 8 in GraphicImport()
/trunk/main/filter/source/graphicfilter/icgm/
H A Dbitmap.cxx110 sal_Int8 nDat; in ImplGetBitmap() local
114 nDat = *pTemp++; in ImplGetBitmap()
115 rDesc.mpAcc->SetPixelIndex( ny, nx, static_cast<sal_uInt8>(nDat >> 4) ); in ImplGetBitmap()
119 rDesc.mpAcc->SetPixelIndex( ny, nx, static_cast<sal_uInt8>(nDat & 15) ); in ImplGetBitmap()
/trunk/main/filter/source/graphicfilter/itiff/
H A Ditiff.cxx676 sal_uInt8 nDat = *pSrc; in GetBits() local
677 nRes = (sal_uLong)( BYTESWAP( nDat ) & ( 0xff >> nBitsPos ) ); in GetBits()
689 nDat = *(pSrc++); in GetBits()
690 nRes = ( nRes << 8 ) | ((sal_uLong)BYTESWAP( nDat ) ); in GetBits()
695 nDat = *pSrc; in GetBits()
696 nRes = ( nRes << nBitsCount ) | (((sal_uLong)BYTESWAP(nDat))>>(8-nBitsCount)); in GetBits()
/trunk/main/svtools/source/filter/wmf/
H A Dwinwmf.cxx167 sal_uInt16 nDat; in ReadRecordParams() local
168 *pWMF >> nDat; in ReadRecordParams()
169 pOut->SetBkMode( nDat ); in ReadRecordParams()
/trunk/main/svx/source/customshapes/
H A DEnhancedCustomShape2d.cxx78 sal_uInt32 nDat = (sal_uInt32)nValue; in SetEnhancedCustomShapeParameter() local
82 if ( ( nDat >> 16 ) == 0x8000 ) in SetEnhancedCustomShapeParameter()
84 nNewValue = (sal_uInt16)nDat; in SetEnhancedCustomShapeParameter()

Completed in 152 milliseconds