Home
last modified time | relevance | path

Searched refs:Get16u (Results 1 – 11 of 11) sorted by relevance

/external/jhead/
Dmakernote.c17 NumDirEntries = Get16u(DirStart); in ProcessCanonMakerNoteDir()
44 Tag = Get16u(DirEntry); in ProcessCanonMakerNoteDir()
45 Format = Get16u(DirEntry+2); 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()
Dexif.c336 int Get16u(void * Short) in Get16u() function
396 case FMT_USHORT: printf("%d",Get16u(ValuePtr)); s=2; break; in PrintFormatNumber()
399 case FMT_SSHORT: printf("%hd",(signed short)Get16u(ValuePtr)); s=2; break; in PrintFormatNumber()
434 case FMT_USHORT: Value = Get16u(ValuePtr); break; in ConvertAnyFormat()
451 case FMT_SSHORT: Value = (signed short)Get16u(ValuePtr); break; in ConvertAnyFormat()
563 NumDirEntries = Get16u(DirStart); in ProcessExifDir()
596 Tag = Get16u(DirEntry); in ProcessExifDir()
597 Format = Get16u(DirEntry+2); in ProcessExifDir()
1117 if (Get16u(ExifSection+10) != 0x2a){ in process_EXIF()
1620 NumDirEntries = Get16u(DirWithThumbnailPtrs); in RemoveThumbnail()
[all …]
Dgpsinfo.c130 NumDirEntries = Get16u(DirStart); in ProcessGpsInfo()
155 Tag = Get16u(DirEntry); in ProcessGpsInfo()
156 Format = Get16u(DirEntry+2); in ProcessGpsInfo()
Djhead.h194 int Get16u(void * Short);
/external/piex/src/
Dtiff_parser.cc290 bool Get16u(StreamInterface* stream, const std::uint32_t offset, in Get16u() function
438 if (!Get16u(stream, offset, endian, &segment)) { in GetJpegDimensions()
447 return Get16u(stream, offset + 3, endian, height) && in GetJpegDimensions()
448 Get16u(stream, offset + 5, endian, width); in GetJpegDimensions()
451 if (!Get16u(stream, offset, endian, &length)) { in GetJpegDimensions()
473 if (!Get16u(stream, ifd_offset, endian, &number_of_entries)) { in ParseDirectory()
482 if (Get16u(stream, ifd_offset + 2 + i, endian, &tag) && in ParseDirectory()
483 Get16u(stream, ifd_offset + 4 + i, endian, &type) && in ParseDirectory()
Dpiex.cc362 if (!Get16u(stream, cfa_header_index, endian, &id) || in RafGetDimension()
363 !Get16u(stream, cfa_header_index + 2, endian, &length)) { in RafGetDimension()
370 Get16u(stream, cfa_header_index + 4, endian, &tmp_height) && in RafGetDimension()
371 Get16u(stream, cfa_header_index + 6, endian, &tmp_width)) { in RafGetDimension()
Dtiff_parser.h111 bool Get16u(StreamInterface* stream, const std::uint32_t offset,
/external/piex/src/tiff_directory/
Dtiff_directory.cc29 using binary_parse::Get16u;
91 my_value[c] = Get16u(value_ptr + c * 2, is_big_endian, &err); in Get()
131 my_value[c].numerator = Get16u(value_ptr + c * 2, is_big_endian, &err); in Get()
/external/piex/src/binary_parse/
Drange_checked_byte_ptr.cc299 const uint16 unsigned_value = Get16u(input, big_endian, status); in Get16s()
319 uint16 Get16u(const RangeCheckedBytePtr &input, const bool big_endian, in Get16u() function
Drange_checked_byte_ptr.h461 uint16 Get16u(const RangeCheckedBytePtr &input, const bool big_endian,
/external/piex/src/image_type_recognition/
Dimage_type_recognition_lite.cc78 const unsigned short value = binary_parse::Get16u( // NOLINT in CheckUInt16Value()