Home
last modified time | relevance | path

Searched refs:howmany32 (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/third_party/libtiff/
Dtif_write.c386 uint32 howmany32; in TIFFWriteEncodedTile() local
432 howmany32=TIFFhowmany_32(td->td_imagelength, td->td_tilelength); in TIFFWriteEncodedTile()
433 if (howmany32 == 0) { in TIFFWriteEncodedTile()
437 tif->tif_row = (tile % howmany32) * td->td_tilelength; in TIFFWriteEncodedTile()
438 howmany32=TIFFhowmany_32(td->td_imagewidth, td->td_tilewidth); in TIFFWriteEncodedTile()
439 if (howmany32 == 0) { in TIFFWriteEncodedTile()
443 tif->tif_col = (tile % howmany32) * td->td_tilewidth; in TIFFWriteEncodedTile()
Dtif_read.c1413 uint32 howmany32; in TIFFStartTile() local
1424 howmany32=TIFFhowmany_32(td->td_imagewidth, td->td_tilewidth); in TIFFStartTile()
1425 if (howmany32 == 0) { in TIFFStartTile()
1429 tif->tif_row = (tile % howmany32) * td->td_tilelength; in TIFFStartTile()
1430 howmany32=TIFFhowmany_32(td->td_imagelength, td->td_tilelength); in TIFFStartTile()
1431 if (howmany32 == 0) { in TIFFStartTile()
1435 tif->tif_col = (tile % howmany32) * td->td_tilewidth; in TIFFStartTile()