Lines Matching refs:bits_reader
2 use bytesio::bits_reader::BitsReader;
39 use bytesio::bits_reader::BitsReader;
65 let mut bits_reader = BitsReader::new(bytes_reader); in test_read_uev() localVariable
67 bits_reader.read_n_bits(7).unwrap(); in test_read_uev()
68 let v1 = read_uev(&mut bits_reader).unwrap(); in test_read_uev()
72 bits_reader.read_n_bits(5).unwrap(); in test_read_uev()
73 let v2 = read_uev(&mut bits_reader).unwrap(); in test_read_uev()
77 bits_reader.read_n_bits(5).unwrap(); in test_read_uev()
78 let v3 = read_uev(&mut bits_reader).unwrap(); in test_read_uev()
82 bits_reader.read_n_bits(3).unwrap(); in test_read_uev()
83 let v4 = read_uev(&mut bits_reader).unwrap(); in test_read_uev()
87 bits_reader.read_n_bits(3).unwrap(); in test_read_uev()
88 let v5 = read_uev(&mut bits_reader).unwrap(); in test_read_uev()
92 bits_reader.read_n_bits(3).unwrap(); in test_read_uev()
93 let v6 = read_uev(&mut bits_reader).unwrap(); in test_read_uev()
97 bits_reader.read_n_bits(3).unwrap(); in test_read_uev()
98 let v7 = read_uev(&mut bits_reader).unwrap(); in test_read_uev()
102 bits_reader.read_n_bits(1).unwrap(); in test_read_uev()
103 let v8 = read_uev(&mut bits_reader).unwrap(); in test_read_uev()
107 bits_reader.read_n_bits(1).unwrap(); in test_read_uev()
108 let v9 = read_uev(&mut bits_reader).unwrap(); in test_read_uev()