Lines Matching +full:0 +full:x99
16 serialize_and_compare(12.3f64, b"\xfb@(\x99\x99\x99\x99\x99\x9a"); in test_float()
34 let mut slice = [0u8; 64]; in serialize_and_compare()
79 object.insert(vec![0i64], ()); in test_object_list_keys()
83 object.insert(vec![0i64, 0i64], ()); in test_object_list_keys()
84 object.insert(vec![0i64, -1i64], ()); in test_object_list_keys()
88 166, 129, 0, 246, 129, 24, 100, 246, 129, 32, 246, 129, 33, 246, 130, 0, 0, 246, in test_object_list_keys()
89 130, 0, 32, 246 in test_object_list_keys()
130 assert_eq!(vec, b"\xfb@(\x99\x99\x99\x99\x99\x9a"); in test_float()
203 let short = vec![0, 1, 2, 255]; in test_byte_string()
208 assert_eq!(&short_s[..], [0x44, 0, 1, 2, 255]); in test_byte_string()
212 0u8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 255, in test_byte_string()
221 0x58, 24, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, in test_byte_string()
227 let long_vec = (0..256).map(|i| (i & 0xFF) as u8).collect::<Vec<_>>(); in test_byte_string()
232 assert_eq!(&long_s[0..3], [0x59, 1, 0]); in test_byte_string()
236 let very_long_vec = (0..65536).map(|i| (i & 0xFF) as u8).collect::<Vec<_>>(); in test_byte_string()
241 assert_eq!(&very_long_s[0..5], [0x5a, 0, 1, 0, 0]); in test_byte_string()