Home
last modified time | relevance | path

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

/libtiff-4.0.7/tools/
H A Dtiffdump.c384 uint16 typewidth; in ReadDirectory() local
427 typewidth = 0; in ReadDirectory()
429 typewidth = datawidth[type]; in ReadDirectory()
430 datasize = TIFFSafeMultiply(tmsize_t,count,typewidth); in ReadDirectory()
431 datasizeoverflow = (typewidth > 0 && datasize / typewidth != count); in ReadDirectory()
465 count = 0x10000/typewidth; in ReadDirectory()
466 datasize = TIFFSafeMultiply(tmsize_t,count,typewidth); in ReadDirectory()
472 datasize = TIFFSafeMultiply(tmsize_t,count,typewidth); in ReadDirectory()
/libtiff-4.0.7/libtiff/
H A Dtif_dirread.c4313 uint32 typewidth; in EstimateStripByteCounts() local
4315 typewidth = TIFFDataWidth((TIFFDataType) dp->tdir_type); in EstimateStripByteCounts()
4316 if (typewidth == 0) { in EstimateStripByteCounts()
4322 datasize=(uint64)typewidth*dp->tdir_count; in EstimateStripByteCounts()