Searched refs:seq2 (Results 1 – 9 of 9) sorted by relevance
/freebsd/sys/sys/ |
H A D | msgbuf.h | 59 #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))
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ip_proxy.c | 1122 u_32_t seq1, seq2; in ipf_proxy_fixseqack() local 1152 seq2 = aps->aps_seqmin[sel] - aps->aps_seqoff[sel]; in ipf_proxy_fixseqack() 1153 if (seq1 > seq2) { in ipf_proxy_fixseqack() 1154 seq2 = aps->aps_seqoff[sel]; in ipf_proxy_fixseqack() 1155 seq1 += seq2; in ipf_proxy_fixseqack() 1186 seq2 = aps->aps_ackoff[sel]; in ipf_proxy_fixseqack() 1187 tcp->th_ack = htonl(seq1 - seq2); in ipf_proxy_fixseqack() 1204 seq2 = aps->aps_ackmin[sel] - aps->aps_ackoff[sel]; in ipf_proxy_fixseqack() 1205 if (seq1 > seq2) { in ipf_proxy_fixseqack() 1206 seq2 = aps->aps_ackoff[sel]; in ipf_proxy_fixseqack() [all …]
|
/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | seq.h | 47 size_t seq2 = atomic_load_zu(&src->seq, ATOMIC_RELAXED); \ 48 if (seq1 != seq2) { \
|
/freebsd/usr.sbin/ppp/ |
H A D | mp.c | 122 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()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | vdev_label.c | 1524 unsigned int seq2 = 0; in vdev_uberblock_compare() local 1530 seq2 = MMP_SEQ(ub2); in vdev_uberblock_compare() 1532 return (TREE_CMP(seq1, seq2)); in vdev_uberblock_compare()
|
/freebsd/sys/netinet/ |
H A D | sctp_cc_functions.c | 1854 between(uint32_t seq1, uint32_t seq2, uint32_t seq3) in between() argument 1856 return (seq3 - seq2 >= seq1 - seq2); in between()
|
/freebsd/sys/contrib/dev/rtw89/ |
H A D | pci.h | 1358 __le16 seq2; 831 __le16 seq2; global() member
|
H A D | pci.c | 1404 txwp_info->seq2 = 0;
|
/freebsd/stand/libsa/zfs/ |
H A D | zfsimpl.c | 1561 unsigned int seq2 = 0; in vdev_uberblock_compare() local 1575 seq2 = MMP_SEQ(ub2); in vdev_uberblock_compare() 1577 return (AVL_CMP(seq1, seq2)); in vdev_uberblock_compare()
|