Home
last modified time | relevance | path

Searched refs:TIFFhowmany_32 (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/third_party/libtiff/
Dtif_tile.c55 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()
Dtif_strip.c67 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()
Dtif_write.c117 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()
438 howmany32=TIFFhowmany_32(td->td_imagewidth, td->td_tilewidth); in TIFFWriteEncodedTile()
Dtiffiop.h249 #define TIFFhowmany_32(x, y) (((uint32)x < (0xffffffff - (uint32)(y-1))) ? \ macro
257 #define TIFFroundup_32(x, y) (TIFFhowmany_32(x,y)*(y))
Dtif_jpeg.c1070 segment_width = TIFFhowmany_32(segment_width, sp->h_sampling); in JPEGPreDecode()
1071 segment_height = TIFFhowmany_32(segment_height, sp->v_sampling); in JPEGPreDecode()
1795 segment_width = TIFFhowmany_32(segment_width, sp->h_sampling); in JPEGPreEncode()
1796 segment_height = TIFFhowmany_32(segment_height, sp->v_sampling); in JPEGPreEncode()
Dtif_read.c1424 howmany32=TIFFhowmany_32(td->td_imagewidth, td->td_tilewidth); in TIFFStartTile()
1430 howmany32=TIFFhowmany_32(td->td_imagelength, td->td_tilelength); in TIFFStartTile()
Dtif_dirread.c5578 nstrips = TIFFhowmany_32(td->td_imagelength, rowsperstrip); in ChopUpSingleUncompressedStrip()