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

  /external/image_io/src/jpeg/
jpeg_segment_builder.cc 37 if (byte_datum.GetType() == ByteData::kAscii0) {
48 hex_string += ByteData::Byte2Hex((size >> 8) & 0xFF);
49 hex_string += ByteData::Byte2Hex(size & 0xFF);
51 byte_data_.emplace_back(ByteData::kHex, hex_string);
60 byte_data_.emplace_back(ByteData::kHex, hex_string);
68 const ByteData& byte_datum = byte_data_[index];
69 if (byte_datum.GetType() != ByteData::kHex) {
77 if (!ByteData::Hex2Byte(value[0], value[1], &flag) ||
78 !ByteData::Hex2Byte(value[2], value[3], &type)) {
86 value.replace(2, 2, ByteData::Byte2Hex((size >> 8) & 0xFF))
    [all...]
jpeg_apple_depth_builder.cc 212 vector<ByteData> mpf_bytes;
214 mpf_bytes.emplace_back(ByteData::kHex, kMpfHex0);
215 mpf_bytes.emplace_back(ByteData::kHex,
216 ByteData::Size2BigEndianHex(primary_image_length));
217 mpf_bytes.emplace_back(ByteData::kHex, kMpfHex1);
218 mpf_bytes.emplace_back(ByteData::kHex,
219 ByteData::Size2BigEndianHex(depth_image_length));
220 mpf_bytes.emplace_back(ByteData::kHex,
221 ByteData::Size2BigEndianHex(depth_image_offset));
222 mpf_bytes.emplace_back(ByteData::kHex, kMpfHex2)
    [all...]
  /external/ImageMagick/MagickCore/
mime-private.h 29 ByteData,
mime.c 291 case ByteData:
    [all...]
option.c     [all...]
  /external/image_io/includes/image_io/jpeg/
jpeg_segment_builder.h 26 /// @return The vector of ByteData.
27 const std::vector<ByteData>& GetByteData() const { return byte_data_; }
37 void AddByteData(const ByteData& byte_data) {
52 /// @return The index in the vector of ByteData where the marker was added.
57 /// ByteData at the given index must represent a valid JpegMarker that has
59 /// @param index The index in the vector of ByteData set the size of.
134 std::vector<ByteData> byte_data_;
  /external/image_io/src/base/
byte_buffer.cc 14 static size_t WriteBytes(const ByteData& byte_data, Byte* pos) {
19 if (byte_data.GetType() == ByteData::kHex) {
22 if (!ByteData::Hex2Byte(value[2 * index], value[2 * index + 1], pos++)) {
42 ByteBuffer::ByteBuffer(const std::vector<ByteData>& byte_data_vector) {
data_context.cc 154 ss << "\\x" << ByteData::Byte2Hex(cbyte);
  /external/v8/src/parsing/
preparsed-scope-data.h 69 class ByteData : public ZoneObject {
71 explicit ByteData(Zone* zone)
171 ByteData* byte_data_;
186 class ByteData {
188 ByteData()
191 // Reading from the ByteData is only allowed when a ReadingScope is on the
193 // whenever ByteData holds a raw pointer into the heap.
196 ReadingScope(ByteData* consumed_data, PodArray<uint8_t>* data)
204 ByteData* consumed_data_;
246 std::unique_ptr<ByteData> scope_data_
    [all...]
preparsed-scope-data.cc 94 void ProducedPreParsedScopeData::ByteData::WriteUint32(uint32_t data) {
107 void ProducedPreParsedScopeData::ByteData::OverwriteFirstUint32(uint32_t data) {
120 void ProducedPreParsedScopeData::ByteData::WriteUint8(uint8_t data) {
129 void ProducedPreParsedScopeData::ByteData::WriteQuarter(uint8_t data) {
147 Handle<PodArray<uint8_t>> ProducedPreParsedScopeData::ByteData::Serialize(
165 byte_data_(new (zone) ByteData(zone)),
434 ConsumedPreParsedScopeData::ByteData::ReadingScope::ReadingScope(
438 int32_t ConsumedPreParsedScopeData::ByteData::ReadUint32() {
454 uint8_t ConsumedPreParsedScopeData::ByteData::ReadUint8() {
465 uint8_t ConsumedPreParsedScopeData::ByteData::ReadQuarter()
    [all...]
  /external/image_io/includes/image_io/base/
byte_buffer.h 13 /// data specified in a vector of ByteData objects, and then to release that
25 /// the buffer. If any ByteData in the vector is of kHex type, and it
29 explicit ByteBuffer(const std::vector<ByteData>& byte_data_vector);
byte_data.h 14 class ByteData {
32 ByteData(Type type, const std::string& value) : type_(type), value_(value) {}
  /external/u-boot/drivers/fpga/
ivm_core.c 1357 void ispVMData(unsigned char *ByteData)
1410 ByteData[index] = 0x00;
1418 ByteData[index] = compr_char;
1427 ByteData[index] |=
1435 ByteData[index] = 0x00;
1445 ByteData[j/2] |=
1448 ByteData[j/2] |=
1452 ByteData[j/2] |=
1455 ByteData[j/2] |=
1477 ByteData[index] = cDataByte
    [all...]

Completed in 1112 milliseconds