Searched refs:Get32u (Results 1 – 11 of 11) sorted by relevance
/external/piex/src/tiff_directory/ |
D | tiff_directory.cc | 31 using binary_parse::Get32u; 93 my_value[c] = Get32u(value_ptr + c * 4, is_big_endian, &err); in Get() 136 my_value[c].numerator = Get32u(value_ptr + c * 4, is_big_endian, &err); in Get() 141 my_value[c].numerator = Get32u(value_ptr + c * 8, is_big_endian, &err); in Get() 143 Get32u(value_ptr + c * 8 + 4, is_big_endian, &err); in Get()
|
/external/jhead/ |
D | gpsinfo.c | 157 Components = Get32u(DirEntry+4); in ProcessGpsInfo() 175 OffsetVal = Get32u(DirEntry+8); in ProcessGpsInfo() 254 ImageInfo.GpsAltRaw.num = Get32u(ValuePtr); in ProcessGpsInfo() 255 ImageInfo.GpsAltRaw.denom = Get32u(4+(char *)ValuePtr); in ProcessGpsInfo()
|
D | makernote.c | 46 Components = Get32u(DirEntry+4); in ProcessCanonMakerNoteDir() 63 OffsetVal = Get32u(DirEntry+8); in ProcessCanonMakerNoteDir()
|
D | exif.c | 380 unsigned Get32u(void * Long) in Get32u() function 435 case FMT_ULONG: Value = Get32u(ValuePtr); break; in ConvertAnyFormat() 598 Components = Get32u(DirEntry+4); in ProcessExifDir() 615 OffsetVal = Get32u(DirEntry+8); in ProcessExifDir() 836 ImageInfo.FocalLength.num = Get32u(ValuePtr); in ProcessExifDir() 837 ImageInfo.FocalLength.denom = Get32u(4+(char *)ValuePtr); in ProcessExifDir() 971 SubdirStart = OffsetBase + Get32u(ValuePtr); in ProcessExifDir() 985 SubdirStart = OffsetBase + Get32u(ValuePtr); in ProcessExifDir() 1020 Offset = Get32u(DirStart+2+12*NumDirEntries); in ProcessExifDir() 1122 FirstOffset = Get32u(ExifSection+12); in process_EXIF()
|
D | jhead.h | 195 unsigned Get32u(void * Long);
|
/external/piex/src/ |
D | piex.cc | 141 if (!Get32u(stream, sizeof(offset_to_ifd), endian, &offset_to_ifd)) { in GetExifIfd() 193 if (!Get32u(stream, camera_settings_offset, endian, in GetCameraSettingsIfd() 217 if (!Get32u(stream, raw_processing_offset, endian, &raw_processing_offset)) { in GetRawProcessingIfd() 337 if (!Get32u(stream, kRafOffsetToPreviewOffset, endian, &preview_offset)) { in RafGetOrientation() 351 if (!Get32u(stream, 92 /* cfa header offset */, endian, &cfa_header_index) || in RafGetDimension() 352 !Get32u(stream, cfa_header_index, endian, &cfa_header_entries)) { in RafGetDimension() 549 if (!Get32u(stream, kRafOffsetToPreviewOffset, endian, &preview_offset) || in RafGetPreviewData() 550 !Get32u(stream, kRafOffsetToPreviewOffset + 4, endian, &preview_length)) { in RafGetPreviewData()
|
D | tiff_parser.cc | 271 if (!Get32u(stream, offset + 4 * j, endian, &sub_offset)) { in ParseSubIfds() 305 bool Get32u(StreamInterface* stream, const std::uint32_t offset, in Get32u() function 484 Get32u(stream, ifd_offset + 6 + i, endian, &number_of_elements)) { in ParseDirectory() 504 Get32u(stream, ifd_offset + 10 + i, endian, &value_offset)) { in ParseDirectory() 522 return Get32u(stream, ifd_offset + 2u + number_of_entries * 12u, endian, in ParseDirectory() 646 !Get32u(stream_, tiff_offset_ + kTiffIdentifierSize, endian_, in Parse()
|
D | tiff_parser.h | 117 bool Get32u(StreamInterface* stream, const std::uint32_t offset,
|
/external/piex/src/binary_parse/ |
D | range_checked_byte_ptr.cc | 337 const uint32 unsigned_value = Get32u(input, big_endian, status); in Get32s() 379 uint32 Get32u(const RangeCheckedBytePtr &input, const bool big_endian, in Get32u() function
|
D | range_checked_byte_ptr.h | 465 uint32 Get32u(const RangeCheckedBytePtr &input, const bool big_endian,
|
/external/piex/src/image_type_recognition/ |
D | image_type_recognition_lite.cc | 92 binary_parse::Get32u(source + source_offset, use_big_endian, &status); in CheckUInt32Value()
|