Searched refs:d1_in (Results 1 – 1 of 1) sorted by relevance
/external/rust/crates/uuid/src/ |
D | lib.rs | 913 let d1_in: u32 = 0xa1a2a3a4; in test_fields_roundtrip() localVariable 918 let u = Uuid::from_fields(d1_in, d2_in, d3_in, d4_in).unwrap(); in test_fields_roundtrip() 921 assert_eq!(d1_in, d1_out); in test_fields_roundtrip() 929 let d1_in: u32 = 0xa4a3a2a1; 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() 937 assert_eq!(d1_in, d1_out); in test_fields_le_roundtrip() 945 let d1_in: u32 = 0xa1a2a3a4; 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() 953 assert_eq!(d1_in, d1_out.swap_bytes()); in test_fields_le_are_actually_le()
|