Lines Matching refs:sal_uLong

57 	sal_uLong				nLastPercent;
64 sal_uLong nOrigPos; // Anfaengliche Position in pTIFF
73 sal_uLong nNewSubFile; //
74 sal_uLong nSubFile; //
75 sal_uLong nImageWidth; // Bildbreite in Pixel
76 sal_uLong nImageLength; // Bildhoehe in Pixel
77 sal_uLong nBitsPerSample; // Bits pro Pixel pro Ebene
78 sal_uLong nCompression; // Art der Kompriemierung
79 sal_uLong nPhotometricInterpretation; //
80 sal_uLong nThresholding; //
81 sal_uLong nCellWidth; //
82 sal_uLong nCellLength; //
83 sal_uLong nFillOrder; //
84 sal_uLong* pStripOffsets; // Feld von Offsets zu den Bitmap-Daten-"Strips"
85 sal_uLong nNumStripOffsets; // Groesse obigen Feldes
86 sal_uLong nOrientation; //
87 sal_uLong nSamplesPerPixel; // Anzahl der Ebenen
88 sal_uLong nRowsPerStrip; // Wenn nicht komprimiert: Zahl der Zeilen pro Strip
89 sal_uLong* pStripByteCounts; // Wenn komprimiert (bestimmte Art): Groesse der Strips
90 sal_uLong nNumStripByteCounts; // Anzahl der Eintraege in obiges Feld
91 sal_uLong nMinSampleValue; //
92 sal_uLong nMaxSampleValue; //
95 sal_uLong nPlanarConfiguration; //
96 sal_uLong nGroup3Options; //
97 sal_uLong nGroup4Options; //
98 sal_uLong nResolutionUnit; // Einheit von fX/YResolution: 1=unbekannt, 2(default)=Zoll, 3=cm
99 sal_uLong nPredictor; //
100 sal_uLong* pColorMap; // Farb-Palette
101 sal_uLong nNumColors; // Anzahl Farben in der Farbpalette
103 sal_uLong nPlanes; // Anzahl der Ebenen in der Tiff-Datei
104 sal_uLong nStripsPerPlane; // Anzahl der Strips pro Ebene
105 sal_uLong nBytesPerRow; // Bytes pro Zeile pro Ebene in der Tiff-Datei ( unkomprimiert )
109 void MayCallback( sal_uLong nPercent );
111 sal_uLong DataTypeSize();
112 sal_uLong ReadIntData();
118 sal_Bool ReadMap( sal_uLong nMinPercent, sal_uLong nMaxPercent );
121 sal_uLong GetBits( const sal_uInt8 * pSrc, sal_uLong nBitsPos, sal_uLong nBitsCount );
127 sal_Bool ConvertScanline( sal_uLong nY );
140 void TIFFReader::MayCallback( sal_uLong /*nPercent*/ ) in MayCallback() argument
157 sal_uLong TIFFReader::DataTypeSize() in DataTypeSize()
159 sal_uLong nSize; in DataTypeSize()
191 sal_uLong TIFFReader::ReadIntData() in ReadIntData()
209 nUINT32a = (sal_uLong)nBYTE; in ReadIntData()
213 nUINT32a = (sal_uLong)nUINT16; in ReadIntData()
335 sal_uLong nOldNumSO, i, * pOldSO; in ReadTagData()
346 pStripOffsets = new sal_uLong[ nNumStripOffsets ]; in ReadTagData()
381 sal_uLong nOldNumSBC, i, * pOldSBC; in ReadTagData()
392 pStripByteCounts = new sal_uLong[ nNumStripByteCounts ]; in ReadTagData()
455 sal_uLong i; in ReadTagData()
459 pColorMap = new sal_uLong[ 256 ]; in ReadTagData()
465 pColorMap[ i ] |= ( ( (sal_uLong)nVal ) << 8 ) & 0x00ff0000; in ReadTagData()
470 pColorMap[ i ] |= ( (sal_uLong)nVal ) & 0x0000ff00; in ReadTagData()
475 pColorMap[ i ] |= ( ( (sal_uLong)nVal ) >> 8 ) & 0x000000ff; in ReadTagData()
491 sal_Bool TIFFReader::ReadMap( sal_uLong nMinPercent, sal_uLong nMaxPercent ) in ReadMap()
495 sal_uLong ny, np, nStrip, nStripBytesPerRow; in ReadMap()
520 sal_uLong ny, np, nStrip, nOptions; in ReadMap()
580 sal_uLong ny, np, nStrip; in ReadMap()
608 sal_uLong nStrip,nRecCount,nRowBytesLeft,ny,np,i; in ReadMap()
632 nRecCount=0x00000001+((sal_uLong)nRecHeader); in ReadMap()
641 nRecCount = 0x000000101 - ( (sal_uLong)nRecHeader ); in ReadMap()
669 sal_uLong TIFFReader::GetBits( const sal_uInt8 * pSrc, sal_uLong nBitsPos, sal_uLong nBitsCount ) in GetBits()
671 sal_uLong nRes; in GetBits()
677 nRes = (sal_uLong)( BYTESWAP( nDat ) & ( 0xff >> nBitsPos ) ); in GetBits()
690 nRes = ( nRes << 8 ) | ((sal_uLong)BYTESWAP( nDat ) ); in GetBits()
696 nRes = ( nRes << nBitsCount ) | (((sal_uLong)BYTESWAP(nDat))>>(8-nBitsCount)); in GetBits()
704 nRes = (sal_uLong)((*pSrc)&(0xff>>nBitsPos)); in GetBits()
715 nRes = ( nRes << 8 ) | ((sal_uLong)*(pSrc++)); in GetBits()
719 nRes = ( nRes << nBitsCount ) | (((sal_uLong)*pSrc)>>(8-nBitsCount)); in GetBits()
727 sal_Bool TIFFReader::ConvertScanline( sal_uLong nY ) in ConvertScanline()
765 sal_uLong nMinMax = nMinSampleValue * 255 / ( nMaxSampleValue - nMinSampleValue ); in ConvertScanline()
788 sal_uLong nMinMax = nMinSampleValue * 255 / ( nMaxSampleValue - nMinSampleValue ); in ConvertScanline()
858 sal_uLong nMinMax = ( ( 1 << nDstBitsPerPixel ) - 1 ) / ( nMaxSampleValue - nMinSampleValue ); in ConvertScanline()
883 …pAcc->SetPixelIndex( nY, nx, static_cast<sal_uInt8>( (BYTESWAP((sal_uLong)nLast) - nMinSampleValue… in ConvertScanline()
902 …pAcc->SetPixelIndex( nY, nx, static_cast<sal_uInt8>( ((sal_uLong)*pt++ - nMinSampleValue) * nMinMa… in ConvertScanline()
1008sal_uLong nMinMax = ( ( 1 << 8 /*nDstBitsPerPixel*/ ) - 1 ) / ( nMaxSampleValue - nMinSampleValue … in ConvertScanline()
1014 …pAcc->SetPixelIndex( nY, nx, static_cast<sal_uInt8>( ((sal_uLong)*pt - nMinSampleValue) * nMinMax)… in ConvertScanline()
1029 sal_uLong i, nVal, n0RGB; in MakePalCol()
1031 pColorMap = new sal_uLong[ 256 ]; in MakePalCol()
1057 sal_uLong nRX,nRY; in MakePalCol()
1060 nRX=(sal_uLong)(fXResolution+0.5); in MakePalCol()
1061 nRY=(sal_uLong)(fYResolution+0.5); in MakePalCol()
1065 nRX=(sal_uLong)(fXResolution*2.54+0.5); in MakePalCol()
1066 nRY=(sal_uLong)(fYResolution*2.54+0.5); in MakePalCol()
1097 sal_uLong nMaxPos; in ReadTIFF()
1098 sal_uLong nPos; in ReadTIFF()
1255 for ( sal_uLong j = 0; j < 4; j++ ) in ReadTIFF()