Home
last modified time | relevance | path

Searched refs:rseg (Results 1 – 3 of 3) sorted by relevance

/third_party/musl/src/internal/
Dfdpic_crt.h17 int nsegs = lm->nsegs, rseg = 0, vseg = 0; in __fdpic_fixup() local
19 while (*a-lm->segs[rseg].p_vaddr >= lm->segs[rseg].p_memsz) in __fdpic_fixup()
20 if (++rseg == nsegs) rseg = 0; in __fdpic_fixup()
22 (*a + lm->segs[rseg].addr - lm->segs[rseg].p_vaddr); in __fdpic_fixup()
/third_party/lwip/
D0041-optimite-pcb-list-limit-send-size-and-ack-now.patch32 rseg = pcb->unsent;
33 LWIP_ASSERT("no segment to free", rseg != NULL);
34 pcb->unsent = rseg->next;
35 + if (pcb->last_unsent == rseg) {
36 + pcb->last_unsent = rseg->next;
39 pcb->unacked = rseg->next;
40 + if (pcb->last_unacked == rseg) {
41 + pcb->last_unacked = rseg->next;
44 tcp_seg_free(rseg);
/third_party/lwip/src/core/
Dtcp_in.c817 struct tcp_seg *rseg; local
914 rseg = pcb->unacked;
915 if (rseg == NULL) {
918 rseg = pcb->unsent;
919 LWIP_ASSERT("no segment to free", rseg != NULL);
920 pcb->unsent = rseg->next;
922 pcb->unacked = rseg->next;
924 tcp_seg_free(rseg);