Searched refs:b2 (Results 1 – 3 of 3) sorted by relevance
11 let mut b2 = vec![133; 100]; in test_pipe() localVariable12 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()
40 let b2 = m.find_by_number(b0.number); in test_binding_manager_method() localVariable41 assert!(b2.is_some(), "should succeed"); in test_binding_manager_method()44 assert_eq!(b0, *b2.unwrap(), "should match"); in test_binding_manager_method()
32 let b2 = raw_packet.get_u8(); in unmarshal() localVariable33 let timestamp = (b0 as u64) << 16 | (b1 as u64) << 8 | b2 as u64; in unmarshal()