Home
last modified time | relevance | path

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

/libtiff-4.0.7/tools/
H A Dtiffdump.c359 uint32 nextdiroff32; in ReadDirectory() local
360 if (read(fd, (char*) &nextdiroff32, sizeof (uint32)) != sizeof (uint32)) in ReadDirectory()
361 nextdiroff32 = 0; in ReadDirectory()
363 TIFFSwabLong(&nextdiroff32); in ReadDirectory()
364 nextdiroff = nextdiroff32; in ReadDirectory()
/libtiff-4.0.7/libtiff/
H A Dtif_dirread.c4538 uint32 nextdiroff32; in TIFFFetchDirectory() local
4539 if (!ReadOK(tif, &nextdiroff32, sizeof(uint32))) in TIFFFetchDirectory()
4540 nextdiroff32 = 0; in TIFFFetchDirectory()
4542 TIFFSwabLong(&nextdiroff32); in TIFFFetchDirectory()
4543 *nextdiroff=nextdiroff32; in TIFFFetchDirectory()
4640 uint32 nextdiroff32; in TIFFFetchDirectory() local
4643 nextdiroff32 = 0; in TIFFFetchDirectory()
4645 _TIFFmemcpy(&nextdiroff32, tif->tif_base + off, in TIFFFetchDirectory()
4648 TIFFSwabLong(&nextdiroff32); in TIFFFetchDirectory()
4649 *nextdiroff = nextdiroff32; in TIFFFetchDirectory()