Home
last modified time | relevance | path

Searched refs:set_nbits_of_uint16 (Results 1 – 2 of 2) sorted by relevance

/webrtc/rtcp/src/
H A Dutil.rs26 pub(crate) fn set_nbits_of_uint16( in set_nbits_of_uint16() function
106 let res = set_nbits_of_uint16(source, size, index, value); in test_set_nbits_of_uint16()
/webrtc/rtcp/src/transport_feedbacks/transport_layer_cc/
H A Dmod.rs159 let mut dst = set_nbits_of_uint16(0, 1, 0, 0)?; in marshal_to()
162 dst = set_nbits_of_uint16(dst, 2, 1, self.packet_status_symbol as u16)?; in marshal_to()
165 dst = set_nbits_of_uint16(dst, 13, 3, self.run_length)?; in marshal_to()
236 let mut dst = set_nbits_of_uint16(0, 1, 0, 1)?; in marshal_to()
239 dst = set_nbits_of_uint16(dst, 1, 1, self.symbol_size as u16)?; in marshal_to()
245 dst = set_nbits_of_uint16(dst, num_of_bits, index, *s as u16)?; in marshal_to()