Home
last modified time | relevance | path

Searched refs:new_byte (Results 1 – 6 of 6) sorted by relevance

/external/pigweed/pw_hdlc/
Ddecoder.cc40 Result<Frame> Decoder::Process(const byte new_byte) { in Process() argument
43 if (new_byte == kFlag) { in Process()
58 if (new_byte == kFlag) { in Process()
70 if (new_byte == kEscape) { in Process()
73 AppendByte(new_byte); in Process()
79 if (new_byte == kFlag) { in Process()
85 if (new_byte == kEscape) { in Process()
94 AppendByte(Escape(new_byte)); in Process()
102 void Decoder::AppendByte(byte new_byte) { in AppendByte() argument
104 buffer_[current_frame_size_] = new_byte; in AppendByte()
[all …]
/external/deqp-deps/SPIRV-Tools/source/util/
Dstring_utils.h55 const auto new_byte = in MakeVector() local
57 word |= (new_byte << (8 * (byte_index % sizeof(uint32_t)))); in MakeVector()
/external/swiftshader/third_party/SPIRV-Tools/source/util/
Dstring_utils.h55 const auto new_byte = in MakeVector() local
57 word |= (new_byte << (8 * (byte_index % sizeof(uint32_t)))); in MakeVector()
/external/rust/crates/aho-corasick/src/packed/
Drabinkarp.rs180 fn update_hash(&self, prev: Hash, old_byte: u8, new_byte: u8) -> Hash { in update_hash()
183 .wrapping_add(new_byte as usize) in update_hash()
/external/pigweed/pw_hdlc/public/pw_hdlc/
Ddecoder.h134 void AppendByte(std::byte new_byte);
/external/tensorflow/tensorflow/core/lib/io/
Drecordio_test.cc165 void SetByte(int offset, char new_byte) { contents_[offset] = new_byte; } in SetByte() argument