OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NewExifSize
(Results
1 - 2
of
2
) sorted by null
/external/jhead/
jpgfile.c
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)
[
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 1522 milliseconds