Searched refs:b (Results 1 – 9 of 9) sorted by relevance
| /xiu/library/container/mpegts/src/ |
| H A D | crc32.rs | 43 let b = CRC32_TABLE[(a & 0xff) as usize]; in gen_crc32() localVariable 45 result = b ^ c; in gen_crc32()
|
| /xiu/protocol/webrtc/src/ |
| H A D | whip.rs | 113 let mut b = vec![0u8; 3000]; in handle_whip() localVariable 115 while let Ok((rtp_packet, _)) = track.read(&mut b).await { in handle_whip() 121 let n = rtp_packet.marshal_to(&mut b)?; in handle_whip() 128 data: BytesMut::from(&b[..n]), in handle_whip() 138 data: BytesMut::from(&b[..n]), in handle_whip()
|
| /xiu/library/bytesio/src/ |
| H A D | bits_writer.rs | 29 pub fn write_bit(&mut self, b: u8) -> Result<(), BitError> { in write_bit() 30 self.cur_byte |= b << (7 - self.cur_bit_num); in write_bit() 42 pub fn write_8bit(&mut self, b: u8) -> Result<(), BitError> { in write_8bit() 49 self.writer.write_u8(b)?; in write_8bit()
|
| /xiu/protocol/rtsp/src/sdp/ |
| H A D | mod.rs | 148 .map(|b| b.to_string()) in marshal() 385 .map(|b| b.to_string()) in test_str()
|
| H A D | fmtp.rs | 338 let b = BytesMut::from(&ss[..]); in test_string() localVariable 340 rtsp_utils::print("test", b); in test_string()
|
| /xiu/protocol/rtsp/src/ |
| H A D | rtsp_utils.rs | 32 if let (Some(a), Some(b), Some(c), _) = in test_scanf()
|
| /xiu/library/container/flv/src/ |
| H A D | mpeg4_avc.rs | 344 let mut b = BytesMut::new(); in test_bytes_to_bigend() localVariable 345 b.extend_from_slice(b"\0\0\x03\xe8"); in test_bytes_to_bigend() 346 let mut bytes_reader = BytesReader::new(b); in test_bytes_to_bigend()
|
| /xiu/protocol/rtmp/src/chunk/ |
| H A D | unpacketizer.rs | 681 let b = aa.wrapping_add(5); in test_overflow_add() localVariable 683 println!("{}", b); in test_overflow_add()
|
| /xiu/ |
| H A D | README_CN.md | 97 git checkout tags/<tag_name> -b <branch_name>
|