OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetValidatedByte
(Results
1 - 9
of
9
) sorted by null
/external/image_io/includes/image_io/jpeg/
jpeg_segment.h
74
ValidatedByte
GetValidatedByte
(size_t location) const {
75
return DataSegment::
GetValidatedByte
(location, begin_segment_,
144
return JpegMarker(
GetValidatedByte
(marker_type_location).value);
jpeg_scanner.h
64
ValidatedByte
GetValidatedByte
(size_t location);
66
/// Calls
GetValidatedByte
() and returns its value if the byte is valid, else
/external/image_io/src/jpeg/
jpeg_scanner.cc
88
ValidatedByte JpegScanner::
GetValidatedByte
(size_t location) {
90
return current_segment_->
GetValidatedByte
(location);
94
return next_segment_->
GetValidatedByte
(location);
106
ValidatedByte validated_byte =
GetValidatedByte
(location);
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_xmp_data_extractor.cc
88
Byte value = data_segment.
GetValidatedByte
(i + j).value;
jpeg_info_builder.cc
193
ValidatedByte validated_byte = segment.
GetValidatedByte
(location);
/external/image_io/includes/image_io/base/
data_segment.h
75
ValidatedByte
GetValidatedByte
(size_t location) const {
132
static ValidatedByte
GetValidatedByte
(size_t location,
/external/image_io/src/base/
data_line_map.cc
46
segment.
GetValidatedByte
(line_end).value == '\n') {
55
line_end == range_end || segment.
GetValidatedByte
(line_end).value != '\n';
data_segment.cc
50
ValidatedByte DataSegment::
GetValidatedByte
(size_t location,
55
return segment->
GetValidatedByte
(location);
Completed in 403 milliseconds