Lines Matching refs:depth
95 int16 depth = 1; /* bytes per pixel in input image */ in main() local
154 depth = TIFFDataWidth(dtype); in main()
228 TIFFSetField(out, TIFFTAG_BITSPERSAMPLE, depth * 8); in main()
270 linebytes = width * depth; in main()
275 linebytes = width * nbands * depth; in main()
278 bufsize = width * nbands * depth; in main()
311 memcpy(buf1 + (col*nbands+band)*depth, in main()
312 buf + col * depth, depth); in main()
375 uint32 depth = TIFFDataWidth(dtype); in guessSize() local
388 imagesize = (filestat.st_size - hdr_size) / nbands / depth; in guessSize()
416 scanlinesize = w * depth; in guessSize()
466 if (filestat.st_size<(_TIFF_off_t)(hdr_size+(*width)*(*length)*nbands*depth)) { in guessSize()