Home
last modified time | relevance | path

Searched refs:b2 (Results 1 – 3 of 3) sorted by relevance

/webrtc/util/src/conn/
H A Dconn_pipe_test.rs11 let mut b2 = vec![133; 100]; in test_pipe() localVariable
12 let n = c2.recv(&mut b2).await?; in test_pipe()
14 assert_eq!(&b2[..n], &b1[..]); in test_pipe()
16 let n = c2.send(&b2[..10]).await?; in test_pipe()
18 let n = c2.send(&b2[..5]).await?; in test_pipe()
/webrtc/turn/src/client/binding/
H A Dbinding_test.rs40 let b2 = m.find_by_number(b0.number); in test_binding_manager_method() localVariable
41 assert!(b2.is_some(), "should succeed"); in test_binding_manager_method()
44 assert_eq!(b0, *b2.unwrap(), "should match"); in test_binding_manager_method()
/webrtc/rtp/src/extension/abs_send_time_extension/
H A Dmod.rs32 let b2 = raw_packet.get_u8(); in unmarshal() localVariable
33 let timestamp = (b0 as u64) << 16 | (b1 as u64) << 8 | b2 as u64; in unmarshal()