Lines Matching defs:bytes

34     let bytes: Vec<u8> = vec![0x00];  in test_integer_objects()  localVariable
37 let bytes = vec![0x01]; in test_integer_objects() localVariable
40 let bytes = vec![0x0A]; in test_integer_objects() localVariable
43 let bytes = vec![0x17]; in test_integer_objects() localVariable
46 let bytes = vec![0x18, 0x18]; in test_integer_objects() localVariable
49 let bytes = vec![0x18, 0x19]; in test_integer_objects() localVariable
52 let bytes = vec![0x18, 0x64]; in test_integer_objects() localVariable
55 let bytes = vec![0x19, 0x03, 0xe8]; in test_integer_objects() localVariable
58 let bytes = vec![0x1a, 0x00, 0x0f, 0x42, 0x40]; in test_integer_objects() localVariable
61 let bytes = vec![0x1b, 0x00, 0x00, 0x00, 0xe8, 0xd4, 0xa5, 0x10, 0x00]; in test_integer_objects() localVariable
64 let bytes = vec![0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff]; in test_integer_objects() localVariable
82 let bytes: Vec<u8> = vec![0xD2, 0x02]; in test_tagged_objects() localVariable
94 let bytes: Vec<u8> = vec![0x80]; in test_arrays() localVariable
99 let bytes: Vec<u8> = vec![0x83, 0x01, 0x02, 0x03]; in test_arrays() localVariable
109 let bytes: Vec<u8> = vec![0x83, 0x01, 0x82, 0x02, 0x03, 0x82, 0x04, 0x05]; in test_arrays() localVariable
121 let bytes: Vec<u8> = vec![0x83, 0x01, 0x81, 0x81, 0x81, 0x81, 0x01, 0x81, 0x02]; in test_arrays() localVariable
134 let bytes: Vec<u8> = vec![0x98, 0x1A, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, in test_arrays() localVariable
180 let bytes: Vec<u8> = vec![0x20]; in test_signed_integer() localVariable
184 let bytes = vec![0x29]; in test_signed_integer() localVariable
188 let bytes = vec![0x38, 0x63]; in test_signed_integer() localVariable
192 let bytes = vec![0x39, 0x03, 0xe7]; in test_signed_integer() localVariable
196 let bytes = vec![0x39, 0x27, 0x0F]; in test_signed_integer() localVariable
200 let bytes = vec![0x3A, 0x00, 0x01, 0x86, 0x9F]; in test_signed_integer() localVariable
204 let bytes = vec![0x3B, 0x00, 0x00, 0x00, 0xE8, 0xD4, 0xA5, 0x0F, 0xFF]; in test_signed_integer() localVariable
211 let bytes: Vec<u8> = vec![0x40]; in test_byte_strings() localVariable
216 let bytes: Vec<u8> = vec![0x44, 0x01, 0x02, 0x03, 0x04]; in test_byte_strings() localVariable
221 let bytes: Vec<u8> = vec![ in test_byte_strings() localVariable
231 let bytes: Vec<u8> = vec![ in test_byte_strings() localVariable
278 let bytes: Vec<u8> = vec![0xa0]; in test_maps() localVariable
283 let bytes: Vec<u8> = vec![0xa2, 0x01, 0x02, 0x03, 0x04]; in test_maps() localVariable
309 let bytes: Vec<u8> = vec![0xa4, 0x01, 0x02, 0x02, 0x03, 0x01, 0x03, 0x04, 0x04]; in test_map_duplicate_keys() localVariable
315 let bytes: Vec<u8> = vec![0xc0]; in test_tag_with_no_value() localVariable
321 let bytes: Vec<u8> = vec![0x19, 0x03]; in test_truncated_int() localVariable
327 let bytes: Vec<u8> = vec![0x83, 0x01, 0x02]; in test_truncated_array() localVariable
333 let bytes: Vec<u8> = vec![0xa2, 0x01, 0x02, 0x00]; in test_truncated_map() localVariable
339 let bytes: Vec<u8> = vec![0x1c]; in test_malformed_integer() localVariable
345 let bytes = vec![0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff]; in test_signed_integer_too_large() localVariable
351 let bytes = vec![0xf6]; in test_null() localVariable
357 let bytes = vec![0x82, 0xf6, 0xf6]; in test_null_in_array() localVariable
365 let bytes = vec![0xe0 | i]; in test_major_type_7() localVariable
375 let mut bytes = vec![0x5A, 0x08, 0x00, 0x00, 0x00]; in test_large_input() localVariable
383 let mut bytes = vec![0x5A, 0x08, 0x00, 0x00, 0x01]; in test_too_large_input() localVariable
391 let bytes = vec![0x60]; in test_invalid_input() localVariable
397 let mut bytes: Vec<u8> = Vec::new(); in test_avoid_stack_exhaustion_with_arrays() localVariable
409 let mut bytes: Vec<u8> = Vec::new(); in test_avoid_stack_exhaustion_with_maps_1() localVariable
422 let mut bytes: Vec<u8> = Vec::new(); in test_avoid_stack_exhaustion_with_maps_2() localVariable
437 let mut bytes: Vec<u8> = Vec::new(); in test_avoid_stack_exhaustion_with_tags() localVariable