Searched refs:xh (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/sys/netipsec/
H A Dipsec_input.c282 struct xform_history *xh; local
381 xh = (struct xform_history *)(mtag + 1);
382 bcopy(&saidx->dst, &xh->dst, saidx->dst.sa.sa_len);
383 xh->spi = sav->spi;
384 xh->proto = sproto;
385 xh->mode = saidx->mode;
496 struct xform_history *xh; local
582 xh = (struct xform_history *)(mtag + 1);
583 bcopy(&saidx->dst, &xh->dst, saidx->dst.sa.sa_len);
584 xh
[all...]
H A Dipsec.c977 struct xform_history *xh; local
983 xh = (struct xform_history *)(mtag + 1);
987 kdebug_secasindex_mode(xh->mode), xh->proto,
988 ipsec_address(&xh->dst, buf, sizeof(buf))));
989 if (xh->proto != sp->req[idx]->saidx.proto)
992 if (xh->mode != sp->req[idx]->saidx.mode &&
993 xh->mode != IPSEC_MODE_ANY)
1000 if (key_sockaddrcmp_withmask(&xh->dst.sa,
1004 if (key_sockaddrcmp(&xh
[all...]
H A Dipsec_output.c717 struct xform_history *xh; local
756 mtag = m_tag_get(PACKET_TAG_IPSEC_OUT_DONE, sizeof(*xh), M_NOWAIT);
763 xh = (struct xform_history *)(mtag + 1);
764 xh->dst = saidx->dst;
765 xh->proto = saidx->proto;
766 xh->mode = saidx->mode;
767 xh->spi = sav->spi;
/freebsd-13-stable/usr.sbin/apm/
H A Dapm.c37 #define xh(a) (((a) & 0xff00) >> 8) macro
39 #define APMERR(a) xh(a)
265 * xh(SI) - month (1-12)
273 tm.tm_sec = bcd2int(xh(args.ecx));
275 tm.tm_hour = bcd2int(xh(args.edx));
277 tm.tm_mon = bcd2int(xh(args.esi)) - 1;
/freebsd-13-stable/contrib/bearssl/src/
H A Dinner.h955 uint32_t xl, xh; local
959 xh = (x >> 16) | (uint32_t)0x80000000;
962 return (xl * yl + ((xl * yh + xh * yl) << 16)) & (uint32_t)0x7FFFFFFF;

Completed in 158 milliseconds