Home
last modified time | relevance | path

Searched refs:max_off (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/quiche/src/
Dstream.rs638 if buf.max_off() > self.max_data { in push()
644 if buf.max_off() > fin_off { in push()
649 if buf.fin() && fin_off != buf.max_off() { in push()
655 if buf.fin() && buf.max_off() < self.len { in push()
672 self.fin_off = Some(buf.max_off()); in push()
682 if self.off >= buf.max_off() { in push()
713 if buf.off() >= b.off() && buf.max_off() <= b.max_off() { in push()
718 if buf.off() >= b.off() && buf.off() < b.max_off() { in push()
719 buf = buf.split_off((b.max_off() - buf.off()) as usize); in push()
723 if buf.off() < b.off() && buf.max_off() > b.off() { in push()
[all …]
Dlib.rs2793 let max_off = stream.send.max_off(); in stream_send() localVariable
2795 self.streams.mark_blocked(stream_id, true, max_off); in stream_send()
3777 data.max_off().saturating_sub(stream.recv.max_off()); in process_frame()
7089 frame::Frame::Stream { data, .. } => data.max_off(), in stream_priority()
7111 frame::Frame::Stream { data, .. } => data.max_off(), in stream_priority()
7133 frame::Frame::Stream { data, .. } => data.max_off(), in stream_priority()
7169 frame::Frame::Stream { data, .. } => data.max_off(), in stream_priority()
7191 frame::Frame::Stream { data, .. } => data.max_off(), in stream_priority()
/external/elfutils/src/
Dunstrip.c1409 int64_t max_off = -1; in copy_elided_sections() local
1413 max_off = elf_update (stripped, ELF_C_NULL); in copy_elided_sections()
1716 if (max_off > 0 && sec->shdr.sh_offset > (Elf64_Off) max_off) in copy_elided_sections()
DChangeLog276 * unstrip.c (copy_elided_sections): Set and check max_off.