Home
last modified time | relevance | path

Searched refs:k (Results 1 – 15 of 15) sorted by relevance

/webrtc/webrtc/src/peer_connection/operation/
H A Doperation_test.rs11 for k in 0..16 { in test_operations_enqueue()
18 r3[k] += k * k; in test_operations_enqueue()
19 r3[k] == 225 in test_operations_enqueue()
/webrtc/webrtc/src/rtp_transceiver/fmtp/generic/
H A Dmod.rs9 for (k, v) in a { in fmtp_consist()
10 if let Some(vb) = b.get(k) { in fmtp_consist()
16 for (k, v) in b { in fmtp_consist()
17 if let Some(va) = a.get(k) { in fmtp_consist()
/webrtc/rtp/src/codecs/vp8/
H A Dvp8_test.rs35 assert_eq!(pck.k, 0, "K must be 0"); in test_vp8_unmarshal()
45 assert_eq!(pck.k, 0, "K must be 0"); in test_vp8_unmarshal()
55 assert_eq!(pck.k, 0, "K must be 0"); in test_vp8_unmarshal()
65 assert_eq!(pck.k, 0, "K must be 0"); in test_vp8_unmarshal()
75 assert_eq!(pck.k, 1, "K must be 1"); in test_vp8_unmarshal()
87 assert_eq!(pck.k, 1, "K must be 1"); in test_vp8_unmarshal()
99 assert_eq!(pck.k, 1, "K must be 1"); in test_vp8_unmarshal()
H A Dmod.rs134 pub k: u8, field
188 self.k = (b & 0x10) >> 4; in depacketize()
217 if self.t == 1 || self.k == 1 { in depacketize()
223 if self.k == 1 { in depacketize()
/webrtc/util/src/replay_detector/
H A Dreplay_detector_test.rs258 for k in 0..2 { in test_replay_detector()
259 let mut det: Box<dyn ReplayDetector> = if k == 0 { in test_replay_detector()
264 let exp = if k == 0 { &expected } else { &expected_wrap }; in test_replay_detector()
/webrtc/examples/examples/rtp-forwarder/
H A DREADME.md52 … -c:v libx264 -preset veryfast -b:v 3000k -maxrate 3000k -bufsize 6000k -pix_fmt yuv420p -g 50 -c:…
/webrtc/turn/src/client/
H A Dpermission.rs64 for k in self.perm_map.keys() { in addrs()
65 if let Ok(ip) = k.parse() { in addrs()
/webrtc/sdp/src/lexer/
H A Dmod.rs52 for (k, &v) in data.iter().enumerate() { in index_of()
54 return k as i32; in index_of()
/webrtc/util/src/buffer/
H A Dmod.rs220 let k = b.data.len() - b.head; in read() localVariable
221 packet[..k].copy_from_slice(&b.data[b.head..]); in read()
222 packet[k..copied].copy_from_slice(&b.data[..copied - k]); in read()
/webrtc/constraints/src/settings/
H A Dtrack.rs69 Self::new(iter.into_iter().map(|(k, v)| (k.into(), v)).collect()) in from_iter()
/webrtc/constraints/src/capabilities/
H A Dtrack.rs67 Self::new(iter.into_iter().map(|(k, v)| (k.into(), v)).collect()) in from_iter()
/webrtc/constraints/src/constraints/
H A Dconstraint_set.rs81 Self::new(iter.into_iter().map(|(k, v)| (k.into(), v)).collect()) in from_iter()
H A Dmandatory.rs132 Self::new(iter.into_iter().map(|(k, v)| (k.into(), v)).collect()) in from_iter()
/webrtc/stun/src/message/
H A Dmessage_test.rs285 for k in v { in test_message_class_string()
286 if k.to_string() == *"unknown message class" { in test_message_class_string()
313 for k in v { in test_attr_type_string()
314 assert!(!k.to_string().starts_with("0x"), "bad stringer"); in test_attr_type_string()
/webrtc/dtls/src/conn/
H A Dconn_test.rs468 for k in INVALID_KEYING_LABELS.iter() { in test_export_keying_material()
470 if let Err(err) = state.export_keying_material(k, &[], 0).await { in test_export_keying_material()