Home
last modified time | relevance | path

Searched refs:ValuePtr (Results 1 – 4 of 4) sorted by relevance

/external/jhead/
Dgpsinfo.c146 unsigned char * ValuePtr; in ProcessGpsInfo() local
184 ValuePtr = OffsetBase+OffsetVal; in ProcessGpsInfo()
187 ValuePtr = DirEntry+8; in ProcessGpsInfo()
196 ImageInfo.GpsLat[0] = ValuePtr[0]; in ProcessGpsInfo()
197 ImageInfo.GpsLatRef[0] = ValuePtr[0]; in ProcessGpsInfo()
202 ImageInfo.GpsLong[0] = ValuePtr[0]; in ProcessGpsInfo()
203 ImageInfo.GpsLongRef[0] = ValuePtr[0]; in ProcessGpsInfo()
216 den = Get32s(ValuePtr+4+a*ComponentSize); in ProcessGpsInfo()
226 Values[a] = ConvertAnyFormat(ValuePtr+a*ComponentSize, Format); in ProcessGpsInfo()
238 Get32s(ValuePtr), Get32s(4+(char*)ValuePtr), in ProcessGpsInfo()
[all …]
Dexif.c383 void PrintFormatNumber(void * ValuePtr, int Format, int ByteCount) in PrintFormatNumber() argument
390 case FMT_BYTE: printf("%02x",*(uchar *)ValuePtr); s=1; break; in PrintFormatNumber()
391 case FMT_USHORT: printf("%d",Get16u(ValuePtr)); s=2; break; in PrintFormatNumber()
393 case FMT_SLONG: printf("%d",Get32s(ValuePtr)); s=4; break; in PrintFormatNumber()
394 case FMT_SSHORT: printf("%hd",(signed short)Get16u(ValuePtr)); s=2; break; in PrintFormatNumber()
397 printf("%d/%d",Get32s(ValuePtr), Get32s(4+(char *)ValuePtr)); in PrintFormatNumber()
401 case FMT_SINGLE: printf("%f",(double)*(float *)ValuePtr); s=8; break; in PrintFormatNumber()
402 case FMT_DOUBLE: printf("%f",*(double *)ValuePtr); s=8; break; in PrintFormatNumber()
410 ValuePtr = (void *)((char *)ValuePtr + s); in PrintFormatNumber()
420 double ConvertAnyFormat(void * ValuePtr, int Format) in ConvertAnyFormat() argument
[all …]
Dmakernote.c39 unsigned char * ValuePtr; in ProcessCanonMakerNoteDir() local
70 ValuePtr = OffsetBase+OffsetVal; in ProcessCanonMakerNoteDir()
77 ValuePtr = DirEntry+8; in ProcessCanonMakerNoteDir()
97 if (ValuePtr[a] >= 32){ in ProcessCanonMakerNoteDir()
102 putchar(ValuePtr[a]); in ProcessCanonMakerNoteDir()
104 if (ValuePtr[a] == 0){ in ProcessCanonMakerNoteDir()
115 PrintFormatNumber(ValuePtr, Format, ByteCount); in ProcessCanonMakerNoteDir()
120 int IsoCode = Get16u(ValuePtr + 16*sizeof(unsigned short)); in ProcessCanonMakerNoteDir()
128 int WhiteBalance = Get16u(ValuePtr + 7*sizeof(unsigned short)); in ProcessCanonMakerNoteDir()
141 int temp_dist = Get16u(ValuePtr + 19*sizeof(unsigned short)); in ProcessCanonMakerNoteDir()
[all …]
Djhead.h173 void PrintFormatNumber(void * ValuePtr, int Format, int ByteCount);
174 double ConvertAnyFormat(void * ValuePtr, int Format);
206 void ProcessGpsInfo(unsigned char * ValuePtr, int ByteCount,