HomeSort by relevance Sort by last modified time
    Searched refs:NewExifSize (Results 1 - 2 of 2) sorted by null

  /external/jhead/
jpgfile.c 591 int NewExifSize;
627 NewExifSize = ImageInfo.ThumbnailOffset+8+ThumbLen;
628 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
640 ExifSection->Data[0] = (uchar)(NewExifSize >> 8);
641 ExifSection->Data[1] = (uchar)NewExifSize;
642 ExifSection->Size = NewExifSize;
656 int ThumbLen, NewExifSize;
707 NewExifSize = ImageInfo.ThumbnailOffset+8+ThumbLen;
708 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
721 ExifSection->Data[0] = (uchar)(NewExifSize >> 8)
    [all...]
main.c 177 int NewExifSize = ImageInfo.ThumbnailOffset+8+thumbnailLen;
178 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
190 ExifSection->Data[0] = (uchar)(NewExifSize >> 8);
191 ExifSection->Data[1] = (uchar)NewExifSize;
192 ExifSection->Size = NewExifSize;

Completed in 22 milliseconds