Home
last modified time | relevance | path

Searched refs:seq2 (Results 1 – 9 of 9) sorted by relevance

/src/sys/sys/
H A Dmsgbuf.h59 #define MSGBUF_SEQADD(mbp, seq1, seq2) (((seq1) + (seq2)) % (mbp)->msg_seqmod) argument
60 #define MSGBUF_SEQSUB(mbp, seq1, seq2) ((seq1) >= (seq2) ? (seq1) - (seq2) : \ argument
61 (seq1) + (mbp)->msg_seqmod - (seq2))
/src/sys/netpfil/ipfilter/netinet/
H A Dip_proxy.c1120 u_32_t seq1, seq2; in ipf_proxy_fixseqack() local
1150 seq2 = aps->aps_seqmin[sel] - aps->aps_seqoff[sel]; in ipf_proxy_fixseqack()
1151 if (seq1 > seq2) { in ipf_proxy_fixseqack()
1152 seq2 = aps->aps_seqoff[sel]; in ipf_proxy_fixseqack()
1153 seq1 += seq2; in ipf_proxy_fixseqack()
1184 seq2 = aps->aps_ackoff[sel]; in ipf_proxy_fixseqack()
1185 tcp->th_ack = htonl(seq1 - seq2); in ipf_proxy_fixseqack()
1202 seq2 = aps->aps_ackmin[sel] - aps->aps_ackoff[sel]; in ipf_proxy_fixseqack()
1203 if (seq1 > seq2) { in ipf_proxy_fixseqack()
1204 seq2 = aps->aps_ackoff[sel]; in ipf_proxy_fixseqack()
[all …]
/src/contrib/jemalloc/include/jemalloc/internal/
H A Dseq.h47 size_t seq2 = atomic_load_zu(&src->seq, ATOMIC_RELAXED); \
48 if (seq1 != seq2) { \
/src/usr.sbin/ppp/
H A Dmp.c122 isbefore(unsigned is12bit, u_int32_t seq1, u_int32_t seq2) in isbefore() argument
127 if (seq2 < 0x200 || seq2 > seq1) in isbefore()
129 } else if ((seq1 > 0x200 || seq2 <= max) && seq1 < seq2) in isbefore()
/src/sys/contrib/openzfs/module/zfs/
H A Dvdev_label.c1518 unsigned int seq2 = 0; in vdev_uberblock_compare() local
1524 seq2 = MMP_SEQ(ub2); in vdev_uberblock_compare()
1526 return (TREE_CMP(seq1, seq2)); in vdev_uberblock_compare()
/src/sys/netinet/
H A Dsctp_cc_functions.c1848 between(uint32_t seq1, uint32_t seq2, uint32_t seq3) in between() argument
1850 return (seq3 - seq2 >= seq1 - seq2); in between()
/src/stand/libsa/zfs/
H A Dzfsimpl.c1614 unsigned int seq2 = 0; in vdev_uberblock_compare() local
1628 seq2 = MMP_SEQ(ub2); in vdev_uberblock_compare()
1630 return (AVL_CMP(seq1, seq2)); in vdev_uberblock_compare()
/src/sys/contrib/dev/rtw89/
H A Dpci.h1460 __le16 seq2; member
H A Dpci.c1531 txwp_info->seq2 = 0; in rtw89_pci_txwd_submit()