Home
last modified time | relevance | path

Searched refs:last (Results 1 – 12 of 12) sorted by relevance

/webrtc/stun/src/
H A Duattrs.rs55 let last = first + ATTR_TYPE_SIZE; in get_from() localVariable
58 first = last; in get_from()
H A Dmessage.rs182 let mut last = first + alloc_size; // last byte number in add() localVariable
183 self.grow(last, true); // growing cap(Raw) to fit TLV in add()
187 let buf = &mut self.raw[first..last]; in add()
204 last += bytes_to_add; in add()
205 self.grow(last, true); in add()
209 let buf = &mut self.raw[last - bytes_to_add..last]; in add()
/webrtc/util/src/fixed_big_int/
H A Dmod.rs73 let last = self.bits.len() - 1; in lsh() localVariable
74 self.bits[last] &= self.msb_mask; in lsh()
/webrtc/examples/examples/broadcast/
H A DREADME.md29 …localhost:8080/sdp -d "$BROWSER_OFFER"`. `$BROWSER_OFFER` is the value you copied in the last step.
38 …localhost:8080/sdp -d "$BROWSER_OFFER"`. `$BROWSER_OFFER` is the value you copied in the last step.
/webrtc/webrtc/src/rtp_transceiver/rtp_sender/
H A Drtp_sender_test.rs75 let last = pkt.payload[pkt.payload.len() - 1]; in test_rtp_sender_replace_track() localVariable
76 if last == 0xAA { in test_rtp_sender_replace_track()
79 } else if last == 0xBB { in test_rtp_sender_replace_track()
/webrtc/interceptor/src/mock/
H A Dmock_stream.rs203 let mut last = None; in last_written_rtcp() localVariable
207 last = Some(v); in last_written_rtcp()
210 last in last_written_rtcp()
/webrtc/dtls/src/crypto/
H A Dpadding.rs22 let padding_length = data.last().copied().unwrap_or(1) as usize; in unpad()
/webrtc/turn/src/allocation/allocation_manager/
H A Dallocation_manager_test.rs517 .last() in test_get_allocations_info_bytes_count()
536 .last() in test_get_allocations_info_bytes_count()
555 .last() in test_get_allocations_info_bytes_count()
/webrtc/webrtc/src/peer_connection/
H A Dpeer_connection_test.rs312 let last = pkt.payload[pkt.payload.len() - 1]; in test_get_stats() localVariable
314 if last == 0xAA { in test_get_stats()
/webrtc/interceptor/src/stats/
H A Dinterceptor.rs487 .last() in read()
517 .last() in read()
/webrtc/
H A DREADME.md110 …n(MSRV) policy is to support versions of the compiler released within the last six months. We don'…
/webrtc/sdp/src/description/
H A Dsession.rs1352 let (num, factor) = match val.last() { in parse_time_units()