Lines Matching refs:nstrips
166 static int TIFFFetchStripThing(TIFF* tif, TIFFDirEntry* dir, uint32 nstrips, uint64** lpp);
5435 TIFFFetchStripThing(TIFF* tif, TIFFDirEntry* dir, uint32 nstrips, uint64** lpp) in TIFFFetchStripThing() argument
5447 if (dir->tdir_count!=(uint64)nstrips) in TIFFFetchStripThing()
5450 resizeddata=(uint64*)_TIFFCheckMalloc(tif,nstrips,sizeof(uint64),"for strip array"); in TIFFFetchStripThing()
5455 if (dir->tdir_count<(uint64)nstrips) in TIFFFetchStripThing()
5458 …_TIFFmemset(resizeddata+(uint32)dir->tdir_count,0,(nstrips-(uint32)dir->tdir_count)*sizeof(uint64)… in TIFFFetchStripThing()
5461 _TIFFmemcpy(resizeddata,data,nstrips*sizeof(uint64)); in TIFFFetchStripThing()
5543 uint32 nstrips; in ChopUpSingleUncompressedStrip() local
5578 nstrips = TIFFhowmany_32(td->td_imagelength, rowsperstrip); in ChopUpSingleUncompressedStrip()
5579 if( nstrips == 0 ) in ChopUpSingleUncompressedStrip()
5582 newcounts = (uint64*) _TIFFCheckMalloc(tif, nstrips, sizeof (uint64), in ChopUpSingleUncompressedStrip()
5584 newoffsets = (uint64*) _TIFFCheckMalloc(tif, nstrips, sizeof (uint64), in ChopUpSingleUncompressedStrip()
5601 for (strip = 0; strip < nstrips; strip++) { in ChopUpSingleUncompressedStrip()
5612 td->td_stripsperimage = td->td_nstrips = nstrips; in ChopUpSingleUncompressedStrip()