Searched refs:Get16u (Results 1 - 7 of 7) sorted by relevance
/external/piex/src/tiff_directory/ |
H A D | 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/binary_parse/ |
H A D | 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, function in namespace:piex::binary_parse
|
H A D | 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/ |
H A D | tiff_parser.cc | 290 bool Get16u(StreamInterface* stream, const std::uint32_t offset, function in namespace:piex 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) &&
|
H A D | 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)) {
|
H A D | tiff_parser.h | 111 bool Get16u(StreamInterface* stream, const std::uint32_t offset,
|
/external/piex/src/image_type_recognition/ |
H A D | image_type_recognition_lite.cc | 78 const unsigned short value = binary_parse::Get16u( // NOLINT
|
Completed in 124 milliseconds