Searched refs:xl (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-11-stable/contrib/gcc/config/arm/
H A Dieee754-df.S47 #define xl r0 define
53 #define xl r1 define
97 teqeq xl, yl
98 orrnes ip, r4, xl
105 @ corresponding arg in xh-xl, and positive exponent difference in r5.
111 eor yl, xl, yl
113 eor xl, yl, xl
115 eor yl, xl, yl
119 @ already in xh-xl
[all...]
/freebsd-11-stable/sys/modules/xl/
H A DMakefile1 # $FreeBSD: stable/11/sys/modules/xl/Makefile 319182 2017-05-30 04:11:12Z ngie $
3 .PATH: ${SRCTOP}/sys/dev/xl
/freebsd-11-stable/usr.bin/netstat/
H A Dsctp.c213 struct xladdr_entry *prev_xl = NULL, *xl = NULL, *xl_tmp; local
229 prev_xl = xl;
230 xl = malloc(sizeof(struct xladdr_entry));
231 if (xl == NULL) {
236 xl->xladdr = xladdr;
238 LIST_INSERT_HEAD(&xladdr_head, xl, xladdr_entries);
240 LIST_INSERT_AFTER(prev_xl, xl, xladdr_entries);
269 xl = LIST_FIRST(&xladdr_head);
278 if (xl != NULL) {
279 sctp_print_address("local", &(xl
[all...]
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dby_dir.c99 static int get_cert_by_subject(X509_LOOKUP *xl, int type, X509_NAME *name,
254 static int get_cert_by_subject(X509_LOOKUP *xl, int type, X509_NAME *name, argument
299 ctx = (BY_DIR *)xl->method_data;
367 if ((X509_load_cert_file(xl, b->data, ent->dir_type)) == 0)
370 if ((X509_load_crl_file(xl, b->data, ent->dir_type)) == 0)
381 j = sk_X509_OBJECT_find(xl->store_ctx->objs, &stmp);
383 tmp = sk_X509_OBJECT_value(xl->store_ctx->objs, j);
/freebsd-11-stable/contrib/gcc/config/soft-fp/
H A Dop-2.h154 #define __FP_CLZ_2(R, xh, xl) \
160 __FP_CLZ(R,xl); \
168 #define __FP_FRAC_ADDI_2(xh, xl, i) \
169 (xh += ((xl += i) < i))
172 #define __FP_FRAC_ADD_2(rh, rl, xh, xl, yh, yl) \
173 (rh = xh + yh + ((rl = xl + yl) < xl))
176 #define __FP_FRAC_SUB_2(rh, rl, xh, xl, yh, yl) \
177 (rh = xh - yh - ((rl = xl - yl) > xl))
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dlonglong.h206 #define umul_ppmm(xh, xl, a, b) \
222 "=r" ((USItype) (xl)), \
291 #define smul_ppmm(xh, xl, m0, m1) \
299 (xh) = __x.__i.__h; (xl) = __x.__i.__l; \
444 #define umul_ppmm(xh, xl, a, b) \
472 "=g" ((USItype) (xl)) \
480 #define umul_ppmm(xh, xl, a, b) \
508 "=g" ((USItype) (xl)) \
703 #define smul_ppmm(xh, xl, m0, m1) \
704 __asm__ ("mul %0,%2,%3" : "=r" (xh), "=q" (xl)
[all...]
H A Dsimplify-rtx.c1301 HOST_WIDE_INT xh, xl, th, tl;
1326 xl = tl;
1345 xl = tl;
1348 REAL_VALUE_TO_INT (&xl, &xh, x);
1376 xl = tl;
1380 REAL_VALUE_TO_INT (&xl, &xh, x);
1386 return immed_double_const (xl, xh, mode);
1295 HOST_WIDE_INT xh, xl, th, tl; local
/freebsd-11-stable/gnu/usr.bin/rcs/lib/
H A Drcsfnms.c552 size_t nl, xl; local
558 if ((xl = suffixlen(x))) {
559 if (xl <= nl && memcmp(p = nz-xl, x, xl) == 0)
569 x += xl;
/freebsd-11-stable/contrib/amd/libamu/
H A Dxutil.c711 u_int xl = xlog_level; local
712 int rc = cmdoption(opt, xlog_opt, &xl);
721 if ((xl & XLOG_MANDATORY) != XLOG_MANDATORY) {
723 xl |= XLOG_MANDATORY;
725 if (xlog_level != xl)
726 xlog_level = xl; /* set new flags */
/freebsd-11-stable/usr.sbin/apm/
H A Dapm.c38 #define xl(a) ((a) & 0xff) macro
266 * xl(SI) - day of month (1-31)
274 tm.tm_min = bcd2int(xl(args.edx));
276 tm.tm_mday = bcd2int(xl(args.esi));
/freebsd-11-stable/contrib/dialog/
H A Ddialog.h309 #define auto_size(t,s,h,w,xl,mc) dlg_auto_size(t,s,h,w,xl,mc)
310 #define auto_sizefile(t,f,h,w,xl,mc) dlg_auto_sizefile(t,f,h,w,xl,mc)
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dblowfish.c74 Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) argument
81 Xl = *xl;
94 *xl = Xr ^ p[17];
99 Blowfish_decipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) argument
106 Xl = *xl;
119 *xl = Xr ^ p[0];
/freebsd-11-stable/sys/dev/mn/
H A Dif_mn.c214 struct trxd *x1, *xl; member in struct:schan
606 dp2 = sc->ch[chan]->xl;
613 sc->ch[chan]->xl = dp2;
620 sc->ch[chan]->xl->vnext = NULL;
629 sc->ch[chan]->xl->next = vtophys(dp);
630 sc->ch[chan]->xl->vnext = dp;
631 sc->ch[chan]->xl = dp;
705 sc->ch[chan]->xl = dp;
/freebsd-11-stable/secure/lib/libcrypt/
H A Dblowfish.c66 Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) argument
73 Xl = *xl;
86 *xl = Xr ^ p[17];
/freebsd-11-stable/sys/crypto/camellia/
H A Dcamellia.c108 #define CAMELLIA_F(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \
110 il = xl ^ kl; \
144 #define CAMELLIA_ROUNDSM(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \
147 il = CAMELLIA_SP1110((xl>>24) & 0xff); \
149 il ^= CAMELLIA_SP0222((xl>>16) & 0xff); \
151 il ^= CAMELLIA_SP3033((xl>>8) & 0xff); \
153 il ^= CAMELLIA_SP4404(xl & 0xff); \
/freebsd-11-stable/sys/dev/xl/
H A Dif_xl.c34 __FBSDID("$FreeBSD: stable/11/sys/dev/xl/if_xl.c 331722 2018-03-29 02:50:57Z eadler $");
138 MODULE_DEPEND(xl, pci, 1, 1, 1);
139 MODULE_DEPEND(xl, ether, 1, 1, 1);
140 MODULE_DEPEND(xl, miibus, 1, 1, 1);
145 #include <dev/xl/if_xlreg.h>
325 "xl",
332 DRIVER_MODULE_ORDERED(xl, pci, xl_driver, xl_devclass, NULL, NULL,
334 DRIVER_MODULE(miibus, xl, miibus_driver, miibus_devclass, NULL, NULL);
1563 KASSERT(mtx_initialized(&sc->xl_mtx), ("xl mutex not initialized"));
/freebsd-11-stable/share/man/man4/
H A DMakefile604 xl.4 \
788 MLINKS+=xl.4 if_xl.4
/freebsd-11-stable/sys/modules/
H A DMakefile435 xl \
/freebsd-11-stable/contrib/openbsm/
H A Dconfigure7845 xl* | bgxl* | bgf* | mpixl*)
8461 xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)
/freebsd-11-stable/contrib/openpam/
H A Dconfigure9021 xl* | bgxl* | bgf* | mpixl*)
9667 xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)
/freebsd-11-stable/contrib/file/
H A Dconfigure9512 xl* | bgxl* | bgf* | mpixl*)
10158 xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)
/freebsd-11-stable/contrib/sqlite3/
H A Dconfigure9443 xl* | bgxl* | bgf* | mpixl*)
10092 xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)
/freebsd-11-stable/contrib/subversion/
H A Dconfigure11683 xl* | bgxl* | bgf* | mpixl*)
12329 xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)
16299 xl* | mpixl* | bgxl*)
/freebsd-11-stable/contrib/ldns/
H A Dconfigure7822 xl* | bgxl* | bgf* | mpixl*)
8441 xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Dconfigure9205 xl* | bgxl* | bgf* | mpixl*)
9851 xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)

Completed in 618 milliseconds

12