Searched refs:ADDCARRY (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/sys/arm/arm/
H A Din_cksum_machdep.c57 #define ADDCARRY(x) (x > 65535 ? x -= 65535 : x) macro
68 ADDCARRY(sum); \
86 ADDCARRY(sum);
/freebsd-current/sys/netpfil/pf/
H A Din4_cksum.c76 #define ADDCARRY(x) (x > 65535 ? x -= 65535 : x) macro
77 #define REDUCE {l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; (void)ADDCARRY(sum);}
/freebsd-current/sys/i386/i386/
H A Din_cksum_machdep.c53 #undef ADDCARRY macro
54 #define ADDCARRY(x) if ((x) > 0xffff) (x) -= 0xffff macro
55 #define REDUCE {sum = (sum & 0xffff) + (sum >> 16); ADDCARRY(sum);}
/freebsd-current/contrib/tcpdump/
H A Din_cksum.c4 * Tahoe/CGI version of ADDCARRY(x) macro instead of from portable version.
53 #define ADDCARRY(x) {if ((x) > 65535) (x) -= 65535;} macro
54 #define REDUCE {l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; ADDCARRY(sum);}
/freebsd-current/sys/netinet/
H A Din_cksum.c61 #define ADDCARRY(x) (x > 65535 ? x -= 65535 : x) macro
72 ADDCARRY(sum); \
187 ADDCARRY(sum);
/freebsd-current/sys/netinet6/
H A Din6_cksum.c77 #define ADDCARRY(x) (x > 65535 ? x -= 65535 : x) macro
78 #define REDUCE {l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; (void)ADDCARRY(sum);}
/freebsd-current/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h101 SADDO, SSUBO, UADDO, USUBO, ADDCARRY, SUBCARRY,
H A DSystemZISelLowering.cpp4386 BaseOp = SystemZISD::ADDCARRY;
6339 OPCODE(ADDCARRY);

Completed in 145 milliseconds