TIFFDirEntry     1201 3rdparty/libtiff/tif_dir.c         _TIFFmemset( &(td->td_stripoffset_entry), 0, sizeof(TIFFDirEntry));
TIFFDirEntry     1202 3rdparty/libtiff/tif_dir.c         _TIFFmemset( &(td->td_stripbytecount_entry), 0, sizeof(TIFFDirEntry));
TIFFDirEntry      102 3rdparty/libtiff/tif_dir.h         TIFFDirEntry td_stripoffset_entry;    /* for deferred loading */
TIFFDirEntry      103 3rdparty/libtiff/tif_dir.h         TIFFDirEntry td_stripbytecount_entry; /* for deferred loading */
TIFFDirEntry       66 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryByte(TIFF* tif, TIFFDirEntry* direntry, uint8* value);
TIFFDirEntry       67 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryShort(TIFF* tif, TIFFDirEntry* direntry, uint16* value);
TIFFDirEntry       68 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryLong(TIFF* tif, TIFFDirEntry* direntry, uint32* value);
TIFFDirEntry       69 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryLong8(TIFF* tif, TIFFDirEntry* direntry, uint64* value);
TIFFDirEntry       70 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryFloat(TIFF* tif, TIFFDirEntry* direntry, float* value);
TIFFDirEntry       71 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryDouble(TIFF* tif, TIFFDirEntry* direntry, double* value);
TIFFDirEntry       72 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryIfd8(TIFF* tif, TIFFDirEntry* direntry, uint64* value);
TIFFDirEntry       74 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryArray(TIFF* tif, TIFFDirEntry* direntry, uint32* count, uint32 desttypesize, void** value);
TIFFDirEntry       75 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryByteArray(TIFF* tif, TIFFDirEntry* direntry, uint8** value);
TIFFDirEntry       76 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntrySbyteArray(TIFF* tif, TIFFDirEntry* direntry, int8** value);
TIFFDirEntry       77 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryShortArray(TIFF* tif, TIFFDirEntry* direntry, uint16** value);
TIFFDirEntry       78 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntrySshortArray(TIFF* tif, TIFFDirEntry* direntry, int16** value);
TIFFDirEntry       79 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryLongArray(TIFF* tif, TIFFDirEntry* direntry, uint32** value);
TIFFDirEntry       80 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntrySlongArray(TIFF* tif, TIFFDirEntry* direntry, int32** value);
TIFFDirEntry       81 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryLong8Array(TIFF* tif, TIFFDirEntry* direntry, uint64** value);
TIFFDirEntry       82 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntrySlong8Array(TIFF* tif, TIFFDirEntry* direntry, int64** value);
TIFFDirEntry       83 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryFloatArray(TIFF* tif, TIFFDirEntry* direntry, float** value);
TIFFDirEntry       84 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryDoubleArray(TIFF* tif, TIFFDirEntry* direntry, double** value);
TIFFDirEntry       85 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryIfd8Array(TIFF* tif, TIFFDirEntry* direntry, uint64** value);
TIFFDirEntry       87 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryPersampleShort(TIFF* tif, TIFFDirEntry* direntry, uint16* value);
TIFFDirEntry       89 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryPersampleDouble(TIFF* tif, TIFFDirEntry* direntry, double* value);
TIFFDirEntry       92 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedByte(TIFF* tif, TIFFDirEntry* direntry, uint8* value);
TIFFDirEntry       93 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedSbyte(TIFF* tif, TIFFDirEntry* direntry, int8* value);
TIFFDirEntry       94 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedShort(TIFF* tif, TIFFDirEntry* direntry, uint16* value);
TIFFDirEntry       95 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedSshort(TIFF* tif, TIFFDirEntry* direntry, int16* value);
TIFFDirEntry       96 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedLong(TIFF* tif, TIFFDirEntry* direntry, uint32* value);
TIFFDirEntry       97 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedSlong(TIFF* tif, TIFFDirEntry* direntry, int32* value);
TIFFDirEntry       98 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryCheckedLong8(TIFF* tif, TIFFDirEntry* direntry, uint64* value);
TIFFDirEntry       99 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryCheckedSlong8(TIFF* tif, TIFFDirEntry* direntry, int64* value);
TIFFDirEntry      100 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryCheckedRational(TIFF* tif, TIFFDirEntry* direntry, double* value);
TIFFDirEntry      101 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryCheckedSrational(TIFF* tif, TIFFDirEntry* direntry, double* value);
TIFFDirEntry      102 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedFloat(TIFF* tif, TIFFDirEntry* direntry, float* value);
TIFFDirEntry      103 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryCheckedDouble(TIFF* tif, TIFFDirEntry* direntry, double* value);
TIFFDirEntry      154 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirectoryCheckOrder(TIFF* tif, TIFFDirEntry* dir, uint16 dircount);
TIFFDirEntry      155 3rdparty/libtiff/tif_dirread.c static TIFFDirEntry* TIFFReadDirectoryFindEntry(TIFF* tif, TIFFDirEntry* dir, uint16 dircount, uint16 tagid);
TIFFDirEntry      158 3rdparty/libtiff/tif_dirread.c static int EstimateStripByteCounts(TIFF* tif, TIFFDirEntry* dir, uint16 dircount);
TIFFDirEntry      161 3rdparty/libtiff/tif_dirread.c static int CheckDirCount(TIFF*, TIFFDirEntry*, uint32);
TIFFDirEntry      162 3rdparty/libtiff/tif_dirread.c static uint16 TIFFFetchDirectory(TIFF* tif, uint64 diroff, TIFFDirEntry** pdir, uint64* nextdiroff);
TIFFDirEntry      163 3rdparty/libtiff/tif_dirread.c static int TIFFFetchNormalTag(TIFF*, TIFFDirEntry*, int recover);
TIFFDirEntry      164 3rdparty/libtiff/tif_dirread.c static int TIFFFetchStripThing(TIFF* tif, TIFFDirEntry* dir, uint32 nstrips, uint64** lpp);
TIFFDirEntry      165 3rdparty/libtiff/tif_dirread.c static int TIFFFetchSubjectDistance(TIFF*, TIFFDirEntry*);
TIFFDirEntry      197 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryByte(TIFF* tif, TIFFDirEntry* direntry, uint8* value)
TIFFDirEntry      286 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryShort(TIFF* tif, TIFFDirEntry* direntry, uint16* value)
TIFFDirEntry      372 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryLong(TIFF* tif, TIFFDirEntry* direntry, uint32* value)
TIFFDirEntry      455 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryLong8(TIFF* tif, TIFFDirEntry* direntry, uint64* value)
TIFFDirEntry      533 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryFloat(TIFF* tif, TIFFDirEntry* direntry, float* value)
TIFFDirEntry      644 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryDouble(TIFF* tif, TIFFDirEntry* direntry, double* value)
TIFFDirEntry      741 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryIfd8(TIFF* tif, TIFFDirEntry* direntry, uint64* value)
TIFFDirEntry      765 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryArray(TIFF* tif, TIFFDirEntry* direntry, uint32* count, uint32 desttypesize, void** value)
TIFFDirEntry      834 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryByteArray(TIFF* tif, TIFFDirEntry* direntry, uint8** value)
TIFFDirEntry     1015 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntrySbyteArray(TIFF* tif, TIFFDirEntry* direntry, int8** value)
TIFFDirEntry     1194 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryShortArray(TIFF* tif, TIFFDirEntry* direntry, uint16** value)
TIFFDirEntry     1366 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntrySshortArray(TIFF* tif, TIFFDirEntry* direntry, int16** value)
TIFFDirEntry     1533 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryLongArray(TIFF* tif, TIFFDirEntry* direntry, uint32** value)
TIFFDirEntry     1702 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntrySlongArray(TIFF* tif, TIFFDirEntry* direntry, int32** value)
TIFFDirEntry     1863 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryLong8Array(TIFF* tif, TIFFDirEntry* direntry, uint64** value)
TIFFDirEntry     2029 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntrySlong8Array(TIFF* tif, TIFFDirEntry* direntry, int64** value)
TIFFDirEntry     2184 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryFloatArray(TIFF* tif, TIFFDirEntry* direntry, float** value)
TIFFDirEntry     2427 3rdparty/libtiff/tif_dirread.c TIFFReadDirEntryDoubleArray(TIFF* tif, TIFFDirEntry* direntry, double** value)
TIFFDirEntry     2669 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryIfd8Array(TIFF* tif, TIFFDirEntry* direntry, uint64** value)
TIFFDirEntry     2735 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryPersampleShort(TIFF* tif, TIFFDirEntry* direntry, uint16* value)
TIFFDirEntry     2764 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryPersampleDouble(TIFF* tif, TIFFDirEntry* direntry, double* value)
TIFFDirEntry     2793 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedByte(TIFF* tif, TIFFDirEntry* direntry, uint8* value)
TIFFDirEntry     2799 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedSbyte(TIFF* tif, TIFFDirEntry* direntry, int8* value)
TIFFDirEntry     2805 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedShort(TIFF* tif, TIFFDirEntry* direntry, uint16* value)
TIFFDirEntry     2813 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedSshort(TIFF* tif, TIFFDirEntry* direntry, int16* value)
TIFFDirEntry     2820 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedLong(TIFF* tif, TIFFDirEntry* direntry, uint32* value)
TIFFDirEntry     2827 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedSlong(TIFF* tif, TIFFDirEntry* direntry, int32* value)
TIFFDirEntry     2834 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryCheckedLong8(TIFF* tif, TIFFDirEntry* direntry, uint64* value)
TIFFDirEntry     2853 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryCheckedSlong8(TIFF* tif, TIFFDirEntry* direntry, int64* value)
TIFFDirEntry     2872 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryCheckedRational(TIFF* tif, TIFFDirEntry* direntry, double* value)
TIFFDirEntry     2900 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryCheckedSrational(TIFF* tif, TIFFDirEntry* direntry, double* value)
TIFFDirEntry     2928 3rdparty/libtiff/tif_dirread.c static void TIFFReadDirEntryCheckedFloat(TIFF* tif, TIFFDirEntry* direntry, float* value)
TIFFDirEntry     2944 3rdparty/libtiff/tif_dirread.c static enum TIFFReadDirEntryErr TIFFReadDirEntryCheckedDouble(TIFF* tif, TIFFDirEntry* direntry, double* value)
TIFFDirEntry     3421 3rdparty/libtiff/tif_dirread.c     TIFFDirEntry* dir;
TIFFDirEntry     3423 3rdparty/libtiff/tif_dirread.c     TIFFDirEntry* dp;
TIFFDirEntry     3448 3rdparty/libtiff/tif_dirread.c         TIFFDirEntry* ma;
TIFFDirEntry     3452 3rdparty/libtiff/tif_dirread.c             TIFFDirEntry* na;
TIFFDirEntry     3737 3rdparty/libtiff/tif_dirread.c                                              dp, sizeof(TIFFDirEntry) );
TIFFDirEntry     3747 3rdparty/libtiff/tif_dirread.c                                              dp, sizeof(TIFFDirEntry) );
TIFFDirEntry     4083 3rdparty/libtiff/tif_dirread.c TIFFReadDirectoryCheckOrder(TIFF* tif, TIFFDirEntry* dir, uint16 dircount)
TIFFDirEntry     4088 3rdparty/libtiff/tif_dirread.c     TIFFDirEntry* o;
TIFFDirEntry     4102 3rdparty/libtiff/tif_dirread.c static TIFFDirEntry*
TIFFDirEntry     4103 3rdparty/libtiff/tif_dirread.c TIFFReadDirectoryFindEntry(TIFF* tif, TIFFDirEntry* dir, uint16 dircount, uint16 tagid)
TIFFDirEntry     4105 3rdparty/libtiff/tif_dirread.c     TIFFDirEntry* m;
TIFFDirEntry     4157 3rdparty/libtiff/tif_dirread.c     TIFFDirEntry* dir;
TIFFDirEntry     4159 3rdparty/libtiff/tif_dirread.c     TIFFDirEntry* dp;
TIFFDirEntry     4268 3rdparty/libtiff/tif_dirread.c EstimateStripByteCounts(TIFF* tif, TIFFDirEntry* dir, uint16 dircount)
TIFFDirEntry     4272 3rdparty/libtiff/tif_dirread.c     TIFFDirEntry *dp;
TIFFDirEntry     4408 3rdparty/libtiff/tif_dirread.c CheckDirCount(TIFF* tif, TIFFDirEntry* dir, uint32 count)
TIFFDirEntry     4435 3rdparty/libtiff/tif_dirread.c TIFFFetchDirectory(TIFF* tif, uint64 diroff, TIFFDirEntry** pdir,
TIFFDirEntry     4443 3rdparty/libtiff/tif_dirread.c     TIFFDirEntry* dir;
TIFFDirEntry     4445 3rdparty/libtiff/tif_dirread.c     TIFFDirEntry* mb;
TIFFDirEntry     4642 3rdparty/libtiff/tif_dirread.c     dir = (TIFFDirEntry*)_TIFFCheckMalloc(tif, dircount16,
TIFFDirEntry     4643 3rdparty/libtiff/tif_dirread.c                         sizeof(TIFFDirEntry),
TIFFDirEntry     4691 3rdparty/libtiff/tif_dirread.c TIFFFetchNormalTag(TIFF* tif, TIFFDirEntry* dp, int recover)
TIFFDirEntry     5356 3rdparty/libtiff/tif_dirread.c TIFFFetchStripThing(TIFF* tif, TIFFDirEntry* dir, uint32 nstrips, uint64** lpp)
TIFFDirEntry     5394 3rdparty/libtiff/tif_dirread.c TIFFFetchSubjectDistance(TIFF* tif, TIFFDirEntry* dir)
TIFFDirEntry     5569 3rdparty/libtiff/tif_dirread.c         _TIFFmemset( &(td->td_stripoffset_entry), 0, sizeof(TIFFDirEntry));
TIFFDirEntry     5570 3rdparty/libtiff/tif_dirread.c         _TIFFmemset( &(td->td_stripbytecount_entry), 0, sizeof(TIFFDirEntry));
TIFFDirEntry       44 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSampleformatArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, double* value);
TIFFDirEntry       46 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSampleformatPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value);
TIFFDirEntry       49 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagAscii(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, char* value);
TIFFDirEntry       50 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagUndefinedArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint8* value);
TIFFDirEntry       52 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagByte(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint8 value);
TIFFDirEntry       54 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagByteArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint8* value);
TIFFDirEntry       56 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagBytePerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint8 value);
TIFFDirEntry       59 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSbyte(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int8 value);
TIFFDirEntry       61 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSbyteArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int8* value);
TIFFDirEntry       63 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSbytePerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int8 value);
TIFFDirEntry       65 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagShort(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint16 value);
TIFFDirEntry       66 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagShortArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint16* value);
TIFFDirEntry       67 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagShortPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint16 value);
TIFFDirEntry       69 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSshort(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int16 value);
TIFFDirEntry       71 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSshortArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int16* value);
TIFFDirEntry       73 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSshortPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int16 value);
TIFFDirEntry       75 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagLong(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 value);
TIFFDirEntry       76 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagLongArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint32* value);
TIFFDirEntry       78 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagLongPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 value);
TIFFDirEntry       81 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSlong(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int32 value);
TIFFDirEntry       83 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSlongArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int32* value);
TIFFDirEntry       85 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSlongPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int32 value);
TIFFDirEntry       88 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagLong8(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint64 value);
TIFFDirEntry       90 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagLong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value);
TIFFDirEntry       92 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSlong8(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int64 value);
TIFFDirEntry       94 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSlong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int64* value);
TIFFDirEntry       95 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagRational(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value);
TIFFDirEntry       96 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagRationalArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value);
TIFFDirEntry       97 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSrationalArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value);
TIFFDirEntry       99 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagFloat(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, float value);
TIFFDirEntry      101 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagFloatArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value);
TIFFDirEntry      103 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagFloatPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, float value);
TIFFDirEntry      106 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagDouble(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value);
TIFFDirEntry      108 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagDoubleArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, double* value);
TIFFDirEntry      110 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagDoublePerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value);
TIFFDirEntry      112 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagIfdArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint32* value);
TIFFDirEntry      114 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagIfd8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value);
TIFFDirEntry      116 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagShortLong(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 value);
TIFFDirEntry      117 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagLongLong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value);
TIFFDirEntry      118 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagIfdIfd8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value);
TIFFDirEntry      120 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagShortLongLong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value);
TIFFDirEntry      122 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagColormap(TIFF* tif, uint32* ndir, TIFFDirEntry* dir);
TIFFDirEntry      123 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagTransferfunction(TIFF* tif, uint32* ndir, TIFFDirEntry* dir);
TIFFDirEntry      124 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagSubifd(TIFF* tif, uint32* ndir, TIFFDirEntry* dir);
TIFFDirEntry      126 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedAscii(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, char* value);
TIFFDirEntry      127 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedUndefinedArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint8* value);
TIFFDirEntry      129 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedByte(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint8 value);
TIFFDirEntry      131 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedByteArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint8* value);
TIFFDirEntry      133 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedSbyte(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int8 value);
TIFFDirEntry      135 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedSbyteArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int8* value);
TIFFDirEntry      136 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedShort(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint16 value);
TIFFDirEntry      137 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedShortArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint16* value);
TIFFDirEntry      139 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedSshort(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int16 value);
TIFFDirEntry      141 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedSshortArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int16* value);
TIFFDirEntry      142 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedLong(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 value);
TIFFDirEntry      143 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedLongArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint32* value);
TIFFDirEntry      145 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedSlong(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int32 value);
TIFFDirEntry      147 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedSlongArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int32* value);
TIFFDirEntry      149 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedLong8(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint64 value);
TIFFDirEntry      151 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedLong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value);
TIFFDirEntry      153 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedSlong8(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int64 value);
TIFFDirEntry      155 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedSlong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int64* value);
TIFFDirEntry      156 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedRational(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value);
TIFFDirEntry      157 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedRationalArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value);
TIFFDirEntry      158 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedSrationalArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value);
TIFFDirEntry      160 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedFloat(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, float value);
TIFFDirEntry      162 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedFloatArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value);
TIFFDirEntry      164 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedDouble(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value);
TIFFDirEntry      166 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedDoubleArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, double* value);
TIFFDirEntry      167 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedIfdArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint32* value);
TIFFDirEntry      168 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagCheckedIfd8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value);
TIFFDirEntry      170 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagData(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint16 datatype, uint32 count, uint32 datalength, void* data);
TIFFDirEntry      367 3rdparty/libtiff/tif_dirwrite.c     TIFFDirEntry* dir;
TIFFDirEntry      769 3rdparty/libtiff/tif_dirwrite.c         dir=_TIFFmalloc(ndir*sizeof(TIFFDirEntry));
TIFFDirEntry      806 3rdparty/libtiff/tif_dirwrite.c             TIFFDirEntry* nb;
TIFFDirEntry      829 3rdparty/libtiff/tif_dirwrite.c         TIFFDirEntry* o;
TIFFDirEntry      865 3rdparty/libtiff/tif_dirwrite.c         TIFFDirEntry* o;
TIFFDirEntry      929 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSampleformatArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, double* value)
TIFFDirEntry     1006 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSampleformatPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value)
TIFFDirEntry     1036 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagAscii(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, char* value)
TIFFDirEntry     1047 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagUndefinedArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint8* value)
TIFFDirEntry     1059 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagByte(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint8 value)
TIFFDirEntry     1071 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagByteArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint8* value)
TIFFDirEntry     1083 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagBytePerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint8 value)
TIFFDirEntry     1111 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSbyte(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int8 value)
TIFFDirEntry     1123 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSbyteArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int8* value)
TIFFDirEntry     1135 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSbytePerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int8 value)
TIFFDirEntry     1162 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagShort(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint16 value)
TIFFDirEntry     1173 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagShortArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint16* value)
TIFFDirEntry     1184 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagShortPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint16 value)
TIFFDirEntry     1211 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSshort(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int16 value)
TIFFDirEntry     1223 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSshortArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int16* value)
TIFFDirEntry     1235 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSshortPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int16 value)
TIFFDirEntry     1262 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagLong(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 value)
TIFFDirEntry     1273 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagLongArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint32* value)
TIFFDirEntry     1285 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagLongPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 value)
TIFFDirEntry     1313 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSlong(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int32 value)
TIFFDirEntry     1325 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSlongArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int32* value)
TIFFDirEntry     1337 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSlongPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int32 value)
TIFFDirEntry     1365 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagLong8(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint64 value)
TIFFDirEntry     1377 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagLong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value)
TIFFDirEntry     1389 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSlong8(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int64 value)
TIFFDirEntry     1401 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSlong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int64* value)
TIFFDirEntry     1412 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagRational(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value)
TIFFDirEntry     1423 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagRationalArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value)
TIFFDirEntry     1434 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSrationalArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value)
TIFFDirEntry     1445 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagFloat(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, float value)
TIFFDirEntry     1456 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagFloatArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value)
TIFFDirEntry     1467 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagFloatPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, float value)
TIFFDirEntry     1494 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagDouble(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value)
TIFFDirEntry     1505 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagDoubleArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, double* value)
TIFFDirEntry     1516 3rdparty/libtiff/tif_dirwrite.c static int TIFFWriteDirectoryTagDoublePerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value)
TIFFDirEntry     1543 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagIfdArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint32* value)
TIFFDirEntry     1555 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagIfd8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value)
TIFFDirEntry     1567 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagShortLong(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 value)
TIFFDirEntry     1588 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagLongLong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value)
TIFFDirEntry     1646 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagIfdIfd8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value)
TIFFDirEntry     1699 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagShortLongLong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value)
TIFFDirEntry     1761 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagColormap(TIFF* tif, uint32* ndir, TIFFDirEntry* dir)
TIFFDirEntry     1788 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagTransferfunction(TIFF* tif, uint32* ndir, TIFFDirEntry* dir)
TIFFDirEntry     1839 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagSubifd(TIFF* tif, uint32* ndir, TIFFDirEntry* dir)
TIFFDirEntry     1897 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedAscii(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, char* value)
TIFFDirEntry     1904 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedUndefinedArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint8* value)
TIFFDirEntry     1912 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedByte(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint8 value)
TIFFDirEntry     1920 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedByteArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint8* value)
TIFFDirEntry     1928 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedSbyte(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int8 value)
TIFFDirEntry     1936 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedSbyteArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int8* value)
TIFFDirEntry     1943 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedShort(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint16 value)
TIFFDirEntry     1954 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedShortArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint16* value)
TIFFDirEntry     1965 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedSshort(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int16 value)
TIFFDirEntry     1977 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedSshortArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int16* value)
TIFFDirEntry     1987 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedLong(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 value)
TIFFDirEntry     1998 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedLongArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint32* value)
TIFFDirEntry     2009 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedSlong(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int32 value)
TIFFDirEntry     2021 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedSlongArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int32* value)
TIFFDirEntry     2032 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedLong8(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint64 value)
TIFFDirEntry     2045 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedLong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value)
TIFFDirEntry     2057 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedSlong8(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, int64 value)
TIFFDirEntry     2070 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedSlong8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, int64* value)
TIFFDirEntry     2081 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedRational(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value)
TIFFDirEntry     2115 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedRationalArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value)
TIFFDirEntry     2161 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedSrationalArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value)
TIFFDirEntry     2224 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedFloat(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, float value)
TIFFDirEntry     2237 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedFloatArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, float* value)
TIFFDirEntry     2249 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedDouble(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, double value)
TIFFDirEntry     2262 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedDoubleArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, double* value)
TIFFDirEntry     2273 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedIfdArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint32* value)
TIFFDirEntry     2283 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagCheckedIfd8Array(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint32 count, uint64* value)
TIFFDirEntry     2294 3rdparty/libtiff/tif_dirwrite.c TIFFWriteDirectoryTagData(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint16 datatype, uint32 count, uint32 datalength, void* data)