Lines Matching refs:type
383 uint16 type; in ReadDirectory() local
397 type = *(uint16*)dp; in ReadDirectory()
400 TIFFSwabShort(&type); in ReadDirectory()
403 PrintType(stdout, type); in ReadDirectory()
426 if (type >= NWIDTHS) in ReadDirectory()
429 typewidth = datawidth[type]; in ReadDirectory()
500 switch (type) in ReadDirectory()
529 PrintData(stdout,type,(uint32)count,datamem); in ReadDirectory()
658 PrintType(FILE* fd, uint16 type) in PrintType() argument
683 if (type < NTYPES) in PrintType()
684 fprintf(fd, "%s (%u)", typenames[type], type); in PrintType()
686 fprintf(fd, "%u (%#x)", type, type); in PrintType()
715 PrintData(FILE* fd, uint16 type, uint32 count, unsigned char* data) in PrintData() argument
719 switch (type) { in PrintData()