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

  /external/image_io/includes/image_io/base/
types.h 20 struct ValidatedByte {
21 explicit ValidatedByte(Byte value_arg) : value(value_arg), is_valid(true) {}
22 ValidatedByte(const ValidatedByte&) = default;
23 ValidatedByte& operator=(const ValidatedByte&) = default;
28 /// Equality operator for ValidatedByte
29 inline bool operator==(const ValidatedByte& lhs, const ValidatedByte& rhs) {
33 /// Inquality operator for ValidatedByte
    [all...]
data_segment.h 75 ValidatedByte GetValidatedByte(size_t location) const {
76 return Contains(location) ? ValidatedByte(buffer_[location - GetBegin()])
132 static ValidatedByte GetValidatedByte(size_t location,
  /external/image_io/includes/image_io/jpeg/
jpeg_scanner.h 64 ValidatedByte GetValidatedByte(size_t location);
jpeg_segment.h 74 ValidatedByte GetValidatedByte(size_t location) const {
142 // An invalid ValidatedByte has a value of 0, and a JpegMarker with a 0
143 // type value is invalid, so its ok to just grab the ValidatedByte's value.
  /external/image_io/src/jpeg/
jpeg_segment.cc 24 ValidatedByte validated_byte = segment.GetValidatedByte(location);
43 ValidatedByte hi = GetValidatedByte(payload_location);
44 ValidatedByte lo = GetValidatedByte(payload_location + 1);
54 ValidatedByte validated_byte = GetValidatedByte(location++);
134 ValidatedByte validated_byte = GetValidatedByte(start_location + index);
156 ValidatedByte payload_byte = GetValidatedByte(GetPayloadLocation() + index);
jpeg_scanner.cc 88 ValidatedByte JpegScanner::GetValidatedByte(size_t location) {
106 ValidatedByte validated_byte = GetValidatedByte(location);
jpeg_info_builder.cc 193 ValidatedByte validated_byte = segment.GetValidatedByte(location);
  /external/image_io/src/base/
data_segment.cc 50 ValidatedByte DataSegment::GetValidatedByte(size_t location,

Completed in 378 milliseconds