Home | History | Annotate | Download | only in jhead

Lines Matching refs:NewExifSize

595     int NewExifSize;
631 NewExifSize = ImageInfo.ThumbnailOffset+8+ThumbLen;
632 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
644 ExifSection->Data[0] = (uchar)(NewExifSize >> 8);
645 ExifSection->Data[1] = (uchar)NewExifSize;
646 ExifSection->Size = NewExifSize;
660 int ThumbLen, NewExifSize;
711 NewExifSize = ImageInfo.ThumbnailOffset+8+ThumbLen;
712 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
725 ExifSection->Data[0] = (uchar)(NewExifSize >> 8);
726 ExifSection->Data[1] = (uchar)NewExifSize;
727 ExifSection->Size = NewExifSize;