Searched refs:bytes_ (Results 1 - 9 of 9) sorted by relevance

/fuchsia/zircon/system/ulib/fidl/
H A Dmessage.cpp18 : bytes_(static_cast<BytePart&&>(bytes)),
27 : bytes_(static_cast<BytePart&&>(other.bytes_)),
31 bytes_ = static_cast<BytePart&&>(other.bytes_);
39 zx_status_t status = fidl_encode(type, bytes_.data(), bytes_.actual(),
49 zx_status_t status = fidl_decode(type, bytes_.data(), bytes_.actual(),
58 return fidl_validate(type, bytes_
[all...]
H A Dencoding.cpp31 : type_(type), bytes_(static_cast<uint8_t*>(bytes)), num_bytes_(num_bytes),
55 return reinterpret_cast<T*>(bytes_ + offset);
80 // the requested claim is too large for bytes_.
88 if (&bytes_[out_of_line_offset_] != static_cast<const uint8_t*>(storage)) {
214 // A byte offset into bytes_;
281 uint8_t* const bytes_; member in namespace:__anon1079
308 if (bytes_ == nullptr) {
H A Ddecoding.cpp31 : type_(type), bytes_(static_cast<uint8_t*>(bytes)), num_bytes_(num_bytes),
49 return reinterpret_cast<T*>(bytes_ + offset);
64 // the requested claim is too large for bytes_.
194 // A byte offset into bytes_;
261 uint8_t* const bytes_; member in namespace:__anon1059
285 if (bytes_ == nullptr) {
H A Dvalidating.cpp30 : type_(type), bytes_(static_cast<const uint8_t*>(bytes)), num_bytes_(num_bytes),
46 return reinterpret_cast<const T*>(bytes_ + offset);
60 // the requested claim is too large for bytes_.
193 // A byte offset into bytes_;
260 const uint8_t* const bytes_; member in namespace:__anon1102
283 if (bytes_ == nullptr) {
/fuchsia/zircon/system/ulib/fidl/include/lib/fidl/cpp/
H A Dmessage.h42 return bytes_.actual() >= sizeof(fidl_message_header_t);
49 return *reinterpret_cast<fidl_message_header_t*>(bytes_.data());
52 return *reinterpret_cast<fidl_message_header_t*>(bytes_.data());
76 return BytePart(bytes_.data() + n, bytes_.capacity() - n, bytes_.actual() - n);
82 return reinterpret_cast<T*>(bytes_.data());
90 return reinterpret_cast<T*>(bytes_.data() + sizeof(fidl_message_header_t));
94 BytePart& bytes() { return bytes_; }
95 const BytePart& bytes() const { return bytes_; }
165 BytePart bytes_; member in class:fidl::Message
[all...]
/fuchsia/zircon/system/ulib/digest/
H A Ddigest.cpp27 Digest::Digest() : ctx_{nullptr}, bytes_{0}, ref_count_(0) {}
29 Digest::Digest(const uint8_t* other) : ctx_{nullptr}, bytes_{0}, ref_count_(0) {
39 memcpy(bytes_, o.bytes_, kLength);
45 memcpy(bytes_, o.bytes_, kLength);
51 memcpy(bytes_, rhs, kLength);
74 SHA256_Final(bytes_, &ctx_->impl);
75 return bytes_;
86 if (len < sizeof(bytes_) *
[all...]
/fuchsia/zircon/system/ulib/digest/include/digest/
H A Ddigest.h101 uint8_t bytes_[kLength]; member in class:digest::final
/fuchsia/zircon/system/ulib/edid/
H A Dedid.cpp110 bytes_ = bytes;
126 if (bytes_[i * kBlockSize] == CeaEdidTimingExtension::kTag) {
177 const uint8_t* bytes = bytes_ + block_num * kBlockSize;
/fuchsia/zircon/system/ulib/edid/include/lib/edid/
H A Dedid.h305 const uint8_t* edid_bytes() const { return bytes_; }
368 const uint8_t* bytes_; member in class:edid::Edid
371 // Ptr to base edid structure in bytes_
374 // Contains the edid bytes if they are owned by this object. |bytes_| should generally

Completed in 36 milliseconds