Home
last modified time | relevance | path

Searched refs:write_u8 (Results 1 – 9 of 9) sorted by relevance

/external/rust/crates/syn/src/gen/
Dhash.rs52 state.write_u8(0u8); in hash()
55 state.write_u8(1u8); in hash()
93 state.write_u8(0u8); in hash()
96 state.write_u8(1u8); in hash()
99 state.write_u8(2u8); in hash()
102 state.write_u8(3u8); in hash()
105 state.write_u8(4u8); in hash()
108 state.write_u8(5u8); in hash()
111 state.write_u8(6u8); in hash()
114 state.write_u8(7u8); in hash()
[all …]
/external/rust/crates/serde_cbor/src/
Dser.rs141 fn write_u8(&mut self, major: u8, value: u8) -> Result<()> { in write_u8() function
154 self.write_u8(major, value as u8) in write_u16()
234 self.write_u8(1, -(value + 1) as u8) in serialize_i8()
236 self.write_u8(0, value as u8) in serialize_i8()
284 self.write_u8(0, value) in serialize_u8()
/external/rust/crates/rustc-hash/src/
Dlib.rs112 fn write_u8(&mut self, i: u8) { in write_u8() method
/external/rust/crates/tokio/src/io/util/
Dasync_write_ext.rs312 fn write_u8(&mut self, n: u8) -> WriteU8;
/external/rust/crates/ahash/src/
Dfallback_hash.rs128 fn write_u8(&mut self, i: u8) { in write_u8() method
Daes_hash.rs116 fn write_u8(&mut self, i: u8) { in write_u8() method
/external/rust/crates/byteorder/src/
Dio.rs1098 fn write_u8(&mut self, n: u8) -> Result<()> { in write_u8() method
/external/rust/crates/serde_json/src/
Dser.rs130 .write_u8(&mut self.writer, value) in serialize_u8()
1008 .write_u8(&mut self.ser.writer, value) in serialize_u8()
1670 fn write_u8<W>(&mut self, writer: &mut W, value: u8) -> io::Result<()> in write_u8() method
/external/rust/crates/tokio/tests/
Dasync_send_sync.rs349 async_assert_fn!(tokio::io::AsyncWriteExt::write_u8(&mut BoxAsyncWrite, u8): !Unpin);