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

  /external/jhead/
makernote.c 17 NumDirEntries = Get16u(DirStart);
44 Tag = Get16u(DirEntry);
45 Format = Get16u(DirEntry+2);
120 int IsoCode = Get16u(ValuePtr + 16*sizeof(unsigned short));
128 int WhiteBalance = Get16u(ValuePtr + 7*sizeof(unsigned short));
141 int temp_dist = Get16u(ValuePtr + 19*sizeof(unsigned short));
gpsinfo.c 130 NumDirEntries = Get16u(DirStart);
155 Tag = Get16u(DirEntry);
156 Format = Get16u(DirEntry+2);
exif.c 336 int Get16u(void * Short)
396 case FMT_USHORT: printf("%d",Get16u(ValuePtr)); s=2; break;
399 case FMT_SSHORT: printf("%hd",(signed short)Get16u(ValuePtr)); s=2; break;
434 case FMT_USHORT: Value = Get16u(ValuePtr); break;
451 case FMT_SSHORT: Value = (signed short)Get16u(ValuePtr); break;
563 NumDirEntries = Get16u(DirStart);
596 Tag = Get16u(DirEntry);
597 Format = Get16u(DirEntry+2);
    [all...]
jhead.h 194 int Get16u(void * Short);
  /external/piex/src/tiff_directory/
tiff_directory.cc 29 using binary_parse::Get16u;
91 my_value[c] = Get16u(value_ptr + c * 2, is_big_endian, &err);
131 my_value[c].numerator = Get16u(value_ptr + c * 2, is_big_endian, &err);
  /external/piex/src/
tiff_parser.cc 290 bool Get16u(StreamInterface* stream, const std::uint32_t offset,
438 if (!Get16u(stream, offset, endian, &segment)) {
447 return Get16u(stream, offset + 3, endian, height) &&
448 Get16u(stream, offset + 5, endian, width);
451 if (!Get16u(stream, offset, endian, &length)) {
473 if (!Get16u(stream, ifd_offset, endian, &number_of_entries)) {
482 if (Get16u(stream, ifd_offset + 2 + i, endian, &tag) &&
483 Get16u(stream, ifd_offset + 4 + i, endian, &type) &&
piex.cc 362 if (!Get16u(stream, cfa_header_index, endian, &id) ||
363 !Get16u(stream, cfa_header_index + 2, endian, &length)) {
370 Get16u(stream, cfa_header_index + 4, endian, &tmp_height) &&
371 Get16u(stream, cfa_header_index + 6, endian, &tmp_width)) {
tiff_parser.h 111 bool Get16u(StreamInterface* stream, const std::uint32_t offset,
  /external/piex/src/binary_parse/
range_checked_byte_ptr.cc 299 const uint16 unsigned_value = Get16u(input, big_endian, status);
319 uint16 Get16u(const RangeCheckedBytePtr &input, const bool big_endian,
range_checked_byte_ptr.h 429 // These functions read signed (Get16s, Get32s) or unsigned (Get16u, Get32u)
461 uint16 Get16u(const RangeCheckedBytePtr &input, const bool big_endian,
  /external/piex/src/image_type_recognition/
image_type_recognition_lite.cc 78 const unsigned short value = binary_parse::Get16u( // NOLINT

Completed in 106 milliseconds