Searched refs:xu (Results 1 - 12 of 12) sorted by relevance

/freebsd-12-stable/contrib/bearssl/src/int/
H A Di15_montmul.c40 uint32_t f, xu, r, zh; local
42 xu = x[u + 1];
53 @ multipliers: xu=r3 f=r4 \n\
58 ldr r3, %[xu] \n\
130 : [xu] "m" (xu), [f] "m" (f), [d] "m" (d), [y] "m" (y),
142 z = d[v + 1] + MUL15(xu, y[v + 1])
146 z = d[v + 2] + MUL15(xu, y[v + 2])
150 z = d[v + 3] + MUL15(xu, y[v + 3])
154 z = d[v + 4] + MUL15(xu,
[all...]
H A Di31_montmul.c34 * d <- (d + xu*y + f*m) / 2^31
35 * We have xu <= 2^31-1 and f <= 2^31-1.
54 * xu*y[v+1] <= (2^31-1)*(2^31-1)
65 uint32_t f, xu; local
72 xu = x[u + 1];
79 z = (uint64_t)d[v + 1] + MUL31(xu, y[v + 1])
83 z = (uint64_t)d[v + 2] + MUL31(xu, y[v + 2])
87 z = (uint64_t)d[v + 3] + MUL31(xu, y[v + 3])
91 z = (uint64_t)d[v + 4] + MUL31(xu, y[v + 4])
99 z = (uint64_t)d[v + 1] + MUL31(xu,
[all...]
H A Di32_montmul.c39 uint32_t f, xu; local
42 xu = x[u + 1];
50 z = (uint64_t)d[v + 1] + MUL(xu, y[v + 1]) + r1;
H A Di62_modpow2.c161 uint64_t f, xu; local
165 xu = x[u] << 2;
168 FMA2(hi, lo, xu, y[0], f, m[0], d[0] << 2, 0);
172 FMA2(hi, lo, xu, y[v + 0],
176 FMA2(hi, lo, xu, y[v + 1],
180 FMA2(hi, lo, xu, y[v + 2],
184 FMA2(hi, lo, xu, y[v + 3],
190 FMA2(hi, lo, xu, y[v], f, m[v], d[v] << 2, r << 2);
/freebsd-12-stable/usr.bin/netstat/
H A Dunix.c111 struct xunpcb xu; local
122 len = 2 * sizeof(xug) + (unp_count + unp_count / 8) * sizeof(xu);
153 xu.xu_len = sizeof xu;
156 xu.xu_unpp = (uintptr_t)unp;
164 KREAD(unp->unp_addr, &xu.xu_addr, sun_len);
171 KREAD(unp_conn.unp_addr, &xu.xu_caddr, sun_len);
175 if (sotoxsocket(&so, &xu.xu_socket) != 0)
177 COPYOUT(&xu, sizeof(xu));
[all...]
/freebsd-12-stable/sys/kern/
H A Duipc_usrreq.c1372 struct xucred xu; local
1387 xu = unp->unp_peercred;
1396 error = sooptcopyout(sopt, &xu, sizeof(xu));
1772 struct xunpcb *xu; local
1847 xu = malloc(sizeof(*xu), M_TEMP, M_WAITOK | M_ZERO);
1855 xu->xu_len = sizeof *xu;
1856 xu
2810 db_print_xucred(int indent, struct xucred *xu) argument
[all...]
/freebsd-12-stable/gnu/usr.bin/binutils/ld/
H A DMakefile3 ELF_SCR_EXT= x xbn xc xd xdc xdw xn xr xs xsc xsw xu xw
H A Dgenscripts.sh10 # produces sun3.x sun3.xbn sun3.xn sun3.xr sun3.xu em_sun3.c
80 # A .xu script is like .xr, but *do* create constructors (-Ur flag).
123 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xu
/freebsd-12-stable/sys/contrib/ipfilter/netinet/
H A Dip_rpcb_pxy.c652 /* xu(I) - pointer to universal address structure */
655 /* Decode the IP address / port at p and record them in xu. */
658 ipf_p_rpcb_getuaddr(rm, xu, p)
660 xdr_uaddr_t *xu;
671 xu->xu_xslen = (*p)++;
672 xu->xu_xsstr = (char *)*p;
675 l = B(xu->xu_xslen);
683 bcopy(xu->xu_xsstr, uastr, l);
686 i = (char *)&xu->xu_ip;
687 pp = (char *)&xu
[all...]
/freebsd-12-stable/contrib/ncurses/
H A Ddist.mk114 xu=`echo $$x | dd conv=ucase 2>/dev/null` ;\
115 if [ "$${x}" != "$${xu}" ]; then \
116 echo "s/$${xu}/$${x}/g" >> subst.tmp ;\
/freebsd-12-stable/sys/compat/linux/
H A Dlinux_socket.c1506 struct xucred xu; local
1536 xulen = sizeof(xu);
1538 name, &xu, UIO_SYSSPACE, &xulen);
1541 lxu.pid = xu.cr_pid;
1542 lxu.uid = xu.cr_uid;
1543 lxu.gid = xu.cr_gid;
/freebsd-12-stable/contrib/binutils/ld/
H A Dgenscripts.sh43 # sun3.xu [used when the linker is invoked with "-Ur"]
219 # A .xu script is like .xr, but *do* create constructors (-Ur flag).
262 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xu

Completed in 156 milliseconds