Searched refs:d2_in (Results 1 – 1 of 1) sorted by relevance
/external/rust/crates/uuid/src/ |
D | lib.rs | 914 let d2_in: u16 = 0xb1b2; in test_fields_roundtrip() localVariable 918 let u = Uuid::from_fields(d1_in, d2_in, d3_in, d4_in).unwrap(); in test_fields_roundtrip() 922 assert_eq!(d2_in, d2_out); in test_fields_roundtrip() 930 let d2_in: u16 = 0xb2b1; in test_fields_le_roundtrip() localVariable 934 let u = Uuid::from_fields_le(d1_in, d2_in, d3_in, d4_in).unwrap(); in test_fields_le_roundtrip() 938 assert_eq!(d2_in, d2_out); in test_fields_le_roundtrip() 946 let d2_in: u16 = 0xb1b2; in test_fields_le_are_actually_le() localVariable 950 let u = Uuid::from_fields(d1_in, d2_in, d3_in, d4_in).unwrap(); in test_fields_le_are_actually_le() 954 assert_eq!(d2_in, d2_out.swap_bytes()); in test_fields_le_are_actually_le()
|