Home
last modified time | relevance | path

Searched refs:field_type (Results 1 – 9 of 9) sorted by relevance

/libtiff-4.0.7/libtiff/
H A Dtif_print.c77 if(fip->field_type == TIFF_BYTE) in _TIFFPrintField()
82 else if(fip->field_type == TIFF_SBYTE) in _TIFFPrintField()
84 else if(fip->field_type == TIFF_SHORT) in _TIFFPrintField()
88 else if(fip->field_type == TIFF_LONG) in _TIFFPrintField()
91 else if(fip->field_type == TIFF_SLONG) in _TIFFPrintField()
93 else if(fip->field_type == TIFF_IFD) in _TIFFPrintField()
97 || fip->field_type == TIFF_SRATIONAL in _TIFFPrintField()
98 || fip->field_type == TIFF_FLOAT) in _TIFFPrintField()
100 else if(fip->field_type == TIFF_LONG8) in _TIFFPrintField()
114 else if(fip->field_type == TIFF_IFD8) in _TIFFPrintField()
[all …]
H A Dtif_dirinfo.c352 return (ta->field_type == TIFF_ANY) ? in tagCompare()
353 0 : ((int)tb->field_type - (int)ta->field_type); in tagCompare()
366 return (ta->field_type == TIFF_ANY) ? in tagNameCompare()
367 0 : ((int)tb->field_type - (int)ta->field_type); in tagNameCompare()
427 , fip->field_type in _TIFFPrintFieldInfo()
524 key.field_type = dt; in TIFFFindField()
550 key.field_type = dt; in _TIFFFindFieldByName()
598 return fip->field_type; in TIFFFieldDataType()
649 fld->field_type = field_type; in _TIFFCreateAnonField()
651 switch (field_type) in _TIFFCreateAnonField()
[all …]
H A Dtif_dir.c537 tv_size = _TIFFDataSize(fip->field_type); in _TIFFVSetField()
542 tif->tif_name, fip->field_type, in _TIFFVSetField()
547 if (fip->field_type == TIFF_ASCII) in _TIFFVSetField()
587 fip->field_type, in _TIFFVSetField()
623 switch (fip->field_type) { in _TIFFVSetField()
1092 if (fip->field_type == TIFF_ASCII in _TIFFVGetField()
1102 switch (fip->field_type) { in _TIFFVGetField()
H A Dtif_dir.h280 TIFFDataType field_type; /* type of associated data */ member
H A Dtif_dirwrite.c655 assert(o->field_type==TIFF_ASCII); in TIFFWriteDirectorySec()
667 assert(o->field_type==TIFF_SHORT); in TIFFWriteDirectorySec()
678 assert(o->field_type==TIFF_LONG); in TIFFWriteDirectorySec()
690 assert(o->field_type==TIFF_UNDEFINED); in TIFFWriteDirectorySec()
710 switch (tif->tif_dir.td_customValues[m].info->field_type) in TIFFWriteDirectorySec()
H A Dtiffio.h535 TIFFDataType field_type; /* type of associated data */ member
H A Dtif_dirread.c4216 while ((fip->field_type!=TIFF_ANY)&&(fip->field_type!=dp->tdir_type)) in TIFFReadCustomDirectory()
/libtiff-4.0.7/contrib/pds/
H A Dtif_pdsdirwrite.c326 dir->tdir_type = (u_short) fip->field_type; in TIFFWriteNormalSubTag()
328 #define WRITEF(x,y) x(tif, fip->field_type, fip->field_tag, dir, wc, y) in TIFFWriteNormalSubTag()
329 switch (fip->field_type) { in TIFFWriteNormalSubTag()
H A Dtif_pdsdirread.c250 while (dp->tdir_type != (u_short)fip->field_type) { in TIFFReadPrivateDataSubDirectory()
251 if (fip->field_type == TIFF_ANY) /* wildcard */ in TIFFReadPrivateDataSubDirectory()
820 { TIFFDataType type = fip->field_type; in TIFFFetchNormalSubTag()