Home
last modified time | relevance | path

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

/external/pdfium/third_party/libtiff/
Dtif_tile.c51 dy = td->td_imagelength; in TIFFComputeTile()
56 uint32 ypt = TIFFhowmany_32(td->td_imagelength, dy); in TIFFComputeTile()
86 if (y >= td->td_imagelength) { in TIFFCheckTile()
90 (unsigned long) (td->td_imagelength - 1)); in TIFFCheckTile()
126 dy = td->td_imagelength; in TIFFNumberOfTiles()
131 TIFFhowmany_32(td->td_imagelength, dy), in TIFFNumberOfTiles()
Dtif_strip.c67 TIFFhowmany_32(td->td_imagelength, td->td_rowsperstrip)); in TIFFNumberOfStrips()
83 nrows=td->td_imagelength; in TIFFVStripSize64()
207 if (rps > td->td_imagelength) in TIFFStripSize64()
208 rps = td->td_imagelength; in TIFFStripSize64()
Dtif_write.c72 if (row >= td->td_imagelength) { /* extend image */ in TIFFWriteScanline()
78 td->td_imagelength = row+1; in TIFFWriteScanline()
117 TIFFhowmany_32(td->td_imagelength,td->td_rowsperstrip); in TIFFWriteScanline()
214 TIFFhowmany_32(td->td_imagelength, td->td_rowsperstrip); in TIFFWriteEncodedStrip()
335 TIFFhowmany_32(td->td_imagelength,td->td_rowsperstrip); in TIFFWriteRawStrip()
432 howmany32=TIFFhowmany_32(td->td_imagelength, td->td_tilelength); in TIFFWriteEncodedTile()
524 (TIFFFieldSet(tif,f) && (tif)->tif_dir.td_imagelength == 0)
Dtif_read.c305 if (row >= td->td_imagelength) { /* out of range */ in TIFFSeek()
309 (unsigned long) td->td_imagelength); in TIFFSeek()
469 if (rowsperstrip>td->td_imagelength) in TIFFReadEncodedStripGetStripSize()
470 rowsperstrip=td->td_imagelength; in TIFFReadEncodedStripGetStripSize()
471 stripsperplane= TIFFhowmany_32_maxuint_compat(td->td_imagelength, rowsperstrip); in TIFFReadEncodedStripGetStripSize()
474 rows=td->td_imagelength-stripinplane*rowsperstrip; in TIFFReadEncodedStripGetStripSize()
1430 howmany32=TIFFhowmany_32(td->td_imagelength, td->td_tilelength); in TIFFStartTile()
D0025-upstream-OOM-gtTileContig.patch273 if (rowsperstrip>td->td_imagelength)
274 rowsperstrip=td->td_imagelength;
275 stripsperplane= TIFFhowmany_32_maxuint_compat(td->td_imagelength, rowsperstrip);
279 rows=td->td_imagelength-stripinplane*rowsperstrip;
Dtif_dir.h69 uint32 td_imagewidth, td_imagelength, td_imagedepth; member
Dtif_jpeg.c1055 segment_height = td->td_imagelength - tif->tif_row; in JPEGPreDecode()
1724 if (td->td_rowsperstrip < td->td_imagelength && in JPEGSetupEncode()
1786 segment_height = td->td_imagelength - tif->tif_row; in JPEGPreEncode()
1915 if( !isTiled(tif) && tif->tif_row+nrows > tif->tif_dir.td_imagelength ) in JPEGEncode()
1916 nrows = tif->tif_dir.td_imagelength - tif->tif_row; in JPEGEncode()
2255 if (s < td->td_imagelength) in JPEGDefaultStripSize()
Dtif_print.c269 (unsigned long) td->td_imagewidth, (unsigned long) td->td_imagelength); in TIFFPrintDirectory()
Dtif_dir.c199 td->td_imagelength = (uint32) va_arg(ap, uint32); in _TIFFVSetField()
911 *va_arg(ap, uint32*) = td->td_imagelength; in _TIFFVGetField()
Dtif_dirread.c3993 … tif->tif_dir.td_stripbytecount[0] < TIFFScanlineSize64(tif) * tif->tif_dir.td_imagelength) ) in TIFFReadDirectory()
4395 uint32 rowsperstrip = td->td_imagelength/td->td_stripsperimage; in EstimateStripByteCounts()
4401 td->td_rowsperstrip = td->td_imagelength; in EstimateStripByteCounts()
5578 nstrips = TIFFhowmany_32(td->td_imagelength, rowsperstrip); in ChopUpSingleUncompressedStrip()
Dtif_luv.c1320 sp->tbuflen = multiply_ms(td->td_imagewidth, td->td_imagelength); in LogL16InitState()
Dtif_ojpeg.c1059 sp->image_length=tif->tif_dir.td_imagelength; in OJPEGReadHeaderInfo()
Dtif_dirwrite.c435 …if (!TIFFWriteDirectoryTagShortLong(tif,&ndir,dir,TIFFTAG_IMAGELENGTH,tif->tif_dir.td_imagelength)) in TIFFWriteDirectorySec()