Searched refs:TIFFhowmany_32 (Results 1 – 6 of 6) sorted by relevance
/external/pdfium/third_party/libtiff/ |
D | tif_tile.c | 55 uint32 xpt = TIFFhowmany_32(td->td_imagewidth, dx); in TIFFComputeTile() 56 uint32 ypt = TIFFhowmany_32(td->td_imagelength, dy); in TIFFComputeTile() 57 uint32 zpt = TIFFhowmany_32(td->td_imagedepth, dz); in TIFFComputeTile() 130 _TIFFMultiply32(tif, _TIFFMultiply32(tif, TIFFhowmany_32(td->td_imagewidth, dx), in TIFFNumberOfTiles() 131 TIFFhowmany_32(td->td_imagelength, dy), in TIFFNumberOfTiles() 133 TIFFhowmany_32(td->td_imagedepth, dz), "TIFFNumberOfTiles"); in TIFFNumberOfTiles() 239 samplingblocks_hor=TIFFhowmany_32(td->td_tilewidth,ycbcrsubsampling[0]); in TIFFVTileSize64() 240 samplingblocks_ver=TIFFhowmany_32(nrows,ycbcrsubsampling[1]); in TIFFVTileSize64()
|
D | tif_strip.c | 67 TIFFhowmany_32(td->td_imagelength, td->td_rowsperstrip)); in TIFFNumberOfStrips() 120 samplingblocks_hor=TIFFhowmany_32(td->td_imagewidth,ycbcrsubsampling[0]); in TIFFVStripSize64() 121 samplingblocks_ver=TIFFhowmany_32(nrows,ycbcrsubsampling[1]); in TIFFVStripSize64() 307 samplingblocks_hor = TIFFhowmany_32(td->td_imagewidth,ycbcrsubsampling[0]); in TIFFScanlineSize64()
|
D | tif_write.c | 117 TIFFhowmany_32(td->td_imagelength,td->td_rowsperstrip); in TIFFWriteScanline() 214 TIFFhowmany_32(td->td_imagelength, td->td_rowsperstrip); in TIFFWriteEncodedStrip() 318 TIFFhowmany_32(td->td_imagelength,td->td_rowsperstrip); in TIFFWriteRawStrip() 415 howmany32=TIFFhowmany_32(td->td_imagelength, td->td_tilelength); in TIFFWriteEncodedTile() 421 howmany32=TIFFhowmany_32(td->td_imagewidth, td->td_tilewidth); in TIFFWriteEncodedTile()
|
D | tiffiop.h | 249 #define TIFFhowmany_32(x, y) (((uint32)x < (0xffffffff - (uint32)(y-1))) ? \ macro 253 #define TIFFroundup_32(x, y) (TIFFhowmany_32(x,y)*(y))
|
D | tif_read.c | 1009 howmany32=TIFFhowmany_32(td->td_imagewidth, td->td_tilewidth); in TIFFStartTile() 1015 howmany32=TIFFhowmany_32(td->td_imagelength, td->td_tilelength); in TIFFStartTile()
|
D | tif_jpeg.c | 1068 segment_width = TIFFhowmany_32(segment_width, sp->h_sampling); in JPEGPreDecode() 1069 segment_height = TIFFhowmany_32(segment_height, sp->v_sampling); in JPEGPreDecode() 1779 segment_width = TIFFhowmany_32(segment_width, sp->h_sampling); in JPEGPreEncode() 1780 segment_height = TIFFhowmany_32(segment_height, sp->v_sampling); in JPEGPreEncode()
|