Searched refs:d3_in (Results 1 – 1 of 1) sorted by relevance
/external/rust/crates/uuid/src/ |
D | lib.rs | 915 let d3_in: u16 = 0xc1c2; in test_fields_roundtrip() localVariable 918 let u = Uuid::from_fields(d1_in, d2_in, d3_in, d4_in).unwrap(); in test_fields_roundtrip() 923 assert_eq!(d3_in, d3_out); in test_fields_roundtrip() 931 let d3_in: u16 = 0xc2c1; 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() 939 assert_eq!(d3_in, d3_out); in test_fields_le_roundtrip() 947 let d3_in: u16 = 0xc1c2; 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() 955 assert_eq!(d3_in, d3_out.swap_bytes()); in test_fields_le_are_actually_le()
|