Home
last modified time | relevance | path

Searched refs:cur_seg (Results 1 – 7 of 7) sorted by relevance

/third_party/f2fs-tools/mkfs/
Df2fs_format.c45 #define prev_zone(cur) (c.cur_seg[cur] - c.segs_per_zone)
46 #define next_zone(cur) (c.cur_seg[cur] + c.segs_per_zone)
197 if (c.cur_seg[i] == c.cur_seg[j]) { in verify_cur_segs()
207 c.cur_seg[0] = 0; in verify_cur_segs()
209 c.cur_seg[i] = next_zone(i - 1); in verify_cur_segs()
549 c.cur_seg[CURSEG_HOT_NODE] = 0; in f2fs_prepare_super_block()
550 c.cur_seg[CURSEG_WARM_NODE] = 0; in f2fs_prepare_super_block()
551 c.cur_seg[CURSEG_COLD_NODE] = 0; in f2fs_prepare_super_block()
552 c.cur_seg[CURSEG_HOT_DATA] = 1; in f2fs_prepare_super_block()
553 c.cur_seg[CURSEG_COLD_DATA] = 0; in f2fs_prepare_super_block()
[all …]
/third_party/lwip/
D0056-fix-tso-small-packet-drop-in-kernel-server.patch30 - struct tcp_seg **cur_seg = &(pcb->unacked);
31 - while (*cur_seg &&
32 - TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) {
33 - cur_seg = &((*cur_seg)->next );
35 - seg->next = (*cur_seg);
36 - (*cur_seg) = seg;
273 + struct tcp_seg **cur_seg = &(pcb->unacked);
274 + while (*cur_seg &&
275 + TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(tmp_seg->…
276 + cur_seg = &((*cur_seg)->next );
[all …]
D0041-optimite-pcb-list-limit-send-size-and-ack-now.patch290 - cur_seg = &(pcb->unsent);
291 - while (*cur_seg &&
292 - TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) {
293 - cur_seg = &((*cur_seg)->next );
295 - seg->next = *cur_seg;
296 - *cur_seg = seg;
297 + cur_seg = &(pcb->unsent);
298 + while (*cur_seg &&
299 + TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) {
300 + cur_seg = &((*cur_seg)->next);
[all …]
D0038-add-tso.patch170 + struct tcp_seg **cur_seg = &(pcb->unacked);
171 + while (*cur_seg &&
172 + TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) {
173 + cur_seg = &((*cur_seg)->next );
175 + seg->next = (*cur_seg);
176 + (*cur_seg) = seg;
/third_party/lwip/src/core/
Dtcp_out.c1404 struct tcp_seg **cur_seg = &(pcb->unacked); in tcp_output() local
1405 while (*cur_seg && in tcp_output()
1406 … TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { in tcp_output()
1407 cur_seg = &((*cur_seg)->next ); in tcp_output()
1409 seg->next = (*cur_seg); in tcp_output()
1410 (*cur_seg) = seg; in tcp_output()
1740 struct tcp_seg **cur_seg; in tcp_rexmit() local
1761 cur_seg = &(pcb->unsent); in tcp_rexmit()
1762 while (*cur_seg && in tcp_rexmit()
1763 TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { in tcp_rexmit()
[all …]
/third_party/ffmpeg/libavformat/
Ddashdec.c109 struct fragment *cur_seg; member
352 free_fragment(&pls->cur_seg); in free_representation()
1780 free_fragment(&v->cur_seg); in read_data()
1781 v->cur_seg = get_current_fragment(v); in read_data()
1782 if (!v->cur_seg) { in read_data()
1792 ret = open_input(c, v, v->cur_seg); in read_data()
1814 if (!v->cur_seg) { in read_data()
1815 v->cur_seg = get_current_fragment(v); in read_data()
1817 if (!v->cur_seg) { in read_data()
1821 ret = read_from_url(v, v->cur_seg, buf, buf_size); in read_data()
/third_party/f2fs-tools/include/
Df2fs_fs.h469 uint32_t cur_seg[6]; member