| /netbsd/src/games/larn/ |
| D | movem.c | 133 static int tmpitem, xl, xh, yl, yh; variable 150 if ((xl = i + rnd(3) - 2) < 0) in movemt() 151 xl = 0; in movemt() 152 if (xl >= MAXX) in movemt() 153 xl = MAXX - 1; in movemt() 158 if ((tmp = item[xl][yl]) != OWALL) in movemt() 159 if (mitem[xl][yl] == 0) in movemt() 162 mmove(i, j, xl, yl); in movemt() 167 xl = tmp3 - 2; in movemt() 171 vxy(&xl, &yl); in movemt() [all …]
|
| D | monster.c | 292 int xl, xh, yl, yh; in speldamage() local 362 xl = playerx - 15; in speldamage() 364 vxy(&xl, &yl); in speldamage() 367 for (j = xl; j <= xh; j++) in speldamage() 369 draws(xl, xh + 1, yl, yh + 1); in speldamage() 542 xl = playerx; in speldamage() 545 i = dirsub(&xl, &yl); /* get direction of sphere */ in speldamage() 546 newsphere(xl, yl, i, rnd(20) + 11); /* make a sphere */ in speldamage() 585 xl = item[i][j]; in speldamage() 586 if (xl && xl != OWALL && xl != OANNIHILATION) { in speldamage()
|
| D | object.c | 906 static int xh, yh, yl, xl; variable 965 xl = max(playerx - 25, 0); in read_scroll() 967 for (j = xl; j < xh; j++) in read_scroll() 970 draws(xl, xh, yl, yh); in read_scroll()
|
| /netbsd/src/external/lgpl3/gmp/dist/mpn/generic/ |
| D | addmul_1.c | 81 mp_limb_t shifted_v0, u0, r0, p0, p1, prev_p1, crec, xl, c1, c2, c3; in mpn_addmul_1() local 98 ADDC_LIMB (c1, xl, prev_p1, p0); in mpn_addmul_1() 99 ADDC_LIMB (c2, xl, xl, r0); in mpn_addmul_1() 100 ADDC_LIMB (c3, xl, xl, crec); in mpn_addmul_1() 102 *rp++ = xl; in mpn_addmul_1() 117 mp_limb_t shifted_v0, u0, r0, p0, p1, prev_p1, xw, crec, xl; in mpn_addmul_1() local 136 xl = xw & GMP_NUMB_MASK; in mpn_addmul_1() 137 *rp++ = xl; in mpn_addmul_1()
|
| D | submul_1.c | 80 mp_limb_t shifted_v0, u0, r0, p0, p1, prev_p1, cl, xl, c1, c2, c3; in mpn_submul_1() local 97 SUBC_LIMB (c1, xl, r0, prev_p1); in mpn_submul_1() 98 SUBC_LIMB (c2, xl, xl, p0); in mpn_submul_1() 99 SUBC_LIMB (c3, xl, xl, cl); in mpn_submul_1() 101 *rp++ = xl; in mpn_submul_1() 116 mp_limb_t shifted_v0, u0, r0, p0, p1, prev_p1, xw, cl, xl; in mpn_submul_1() local 135 xl = xw & GMP_NUMB_MASK; in mpn_submul_1() 136 *rp++ = xl; in mpn_submul_1()
|
| D | mul_1.c | 69 mp_limb_t shifted_vl, ul, lpl, hpl, prev_hpl, xw, cl, xl; in mpn_mul_1() local 87 xl = xw & GMP_NUMB_MASK; in mpn_mul_1() 88 *rp++ = xl; in mpn_mul_1()
|
| /netbsd/src/sys/dev/xmi/ |
| D | xmi.c | 66 const struct xmi_list *xl; in xmi_print() local 68 for (xl = &xmi_list[0]; xl->xl_nr; xl++) in xmi_print() 69 if (xl->xl_nr == bus_space_read_2(xa->xa_iot, xa->xa_ioh, 0)) in xmi_print() 73 if (xl->xl_nr == 0) in xmi_print() 77 aprint_normal(xl->xl_name); in xmi_print() 81 return xl->xl_havedriver ? UNCONF : UNSUPP; in xmi_print()
|
| /netbsd/src/games/hack/ |
| D | hack.save.c | 248 int xl; in restobjchn() local 250 mread(fd, &xl, sizeof(xl)); in restobjchn() 251 if (xl == -1) in restobjchn() 253 otmp = newobj(xl); in restobjchn() 258 mread(fd, otmp, (unsigned) xl + sizeof(struct obj)); in restobjchn() 275 int xl; in restmonchn() local 288 mread(fd, &xl, sizeof(xl)); in restmonchn() 289 if (xl == -1) in restmonchn() 291 mtmp = newmonst(xl); in restmonchn() 296 mread(fd, mtmp, (unsigned) xl + sizeof(struct monst)); in restmonchn()
|
| D | hack.lev.c | 145 unsigned xl; in saveobjchn() local 150 xl = otmp->onamelth; in saveobjchn() 151 bwrite(fd, &xl, sizeof(int)); in saveobjchn() 152 bwrite(fd, otmp, xl + sizeof(struct obj)); in saveobjchn() 163 unsigned xl; in savemonchn() local 171 xl = mtmp->mxlth + mtmp->mnamelth; in savemonchn() 172 bwrite(fd, &xl, sizeof(int)); in savemonchn() 173 bwrite(fd, mtmp, xl + sizeof(struct monst)); in savemonchn()
|
| D | def.obj.h | 108 #define newobj(xl) ((struct obj *) alloc((xl) + sizeof(struct obj))) argument
|
| D | def.monst.h | 110 #define newmonst(xl) ((struct monst *) alloc((xl) + sizeof(struct monst))) argument
|
| D | hack.mklev.c | 379 finddpos(int xl, int yl, int xh, int yh) in finddpos() argument 384 x = (xl == xh) ? xl : (xl + rn2(xh - xl + 1)); in finddpos() 389 for (x = xl; x <= xh; x++) in finddpos() 394 for (x = xl; x <= xh; x++) in finddpos() 399 x = xl; in finddpos()
|
| /netbsd/src/external/lgpl3/gmp/dist/mpn/cray/ieee/ |
| D | invert_limb.c | 83 mp_limb_t xh, xl; in mpn_invert_limb() local 107 umul_ppmm (xh, xl, z2l, d); in mpn_invert_limb() 114 umul_ppmm (xh, xl, d, zh); in mpn_invert_limb() 118 add_ssaaaa (xh, xl, xh, xl, 0, d); in mpn_invert_limb() 122 add_ssaaaa (xh, xl, xh, xl, 0, d); in mpn_invert_limb()
|
| /netbsd/src/crypto/external/bsd/openssl/dist/crypto/x509/ |
| D | by_dir.c | 57 static int get_cert_by_subject(X509_LOOKUP *xl, X509_LOOKUP_TYPE type, 59 static int get_cert_by_subject_ex(X509_LOOKUP *xl, X509_LOOKUP_TYPE type, 226 static int get_cert_by_subject_ex(X509_LOOKUP *xl, X509_LOOKUP_TYPE type, in get_cert_by_subject_ex() argument 263 ctx = (BY_DIR *)xl->method_data; in get_cert_by_subject_ex() 337 if ((X509_load_cert_file_ex(xl, b->data, ent->dir_type, libctx, in get_cert_by_subject_ex() 341 if ((X509_load_crl_file(xl, b->data, ent->dir_type)) == 0) in get_cert_by_subject_ex() 351 if (!X509_STORE_lock(xl->store_ctx)) in get_cert_by_subject_ex() 353 j = sk_X509_OBJECT_find(xl->store_ctx->objs, &stmp); in get_cert_by_subject_ex() 354 tmp = sk_X509_OBJECT_value(xl->store_ctx->objs, j); in get_cert_by_subject_ex() 355 X509_STORE_unlock(xl->store_ctx); in get_cert_by_subject_ex() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libgcc/config/rs6000/ |
| D | ibm-ldouble.c | 124 double xh, xl, z, q, zz; in ldouble_qadd_internal() local 138 xl = a - z + c + zz; in ldouble_qadd_internal() 140 xl = c - z + a + zz; in ldouble_qadd_internal() 155 xl = z - xh + zz; in ldouble_qadd_internal() 157 return pack_ldouble (xh, xl); in ldouble_qadd_internal() 179 double xh, xl, t, tau, u, v, w; in __gcc_qmul() local 204 xl = (t - u) + tau; in __gcc_qmul() 205 return pack_ldouble (xh, xl); in __gcc_qmul() 211 double xh, xl, s, sigma, t, tau, u, v, w; in __gcc_qdiv() local 249 xl = (t - u) + tau; in __gcc_qdiv() [all …]
|
| /netbsd/src/external/lgpl3/mpfr/dist/src/ |
| D | mpfr-gmp.h | 417 #define invert_limb(invxl,xl) \ argument 420 MPFR_ASSERTD ((xl) != 0); \ 421 _num = (unsigned long) (mp_limb_t) ~(xl); \ 423 (invxl) = _num / (xl); \ 447 #define invert_limb(invxl,xl) \ argument 449 invxl = __gmpn_invert_limb (xl); \ 452 #define invert_limb(invxl,xl) \ 455 MPFR_ASSERTD ((xl) != 0); \ 456 udiv_qrnnd (invxl, dummy, ~(xl), MPFR_LIMB_MAX, xl); \
|
| D | mpfr-longlong.h | 401 #define umul_ppmm(xh, xl, m0, m1) \ argument 405 : "=r" (xl) \ 513 #define umul_ppmm(xh, xl, a, b) \ argument 529 : "=&r" ((USItype) (xh)), "=r" ((USItype) (xl)), \ 542 #define umul_ppmm(xh, xl, a, b) \ argument 543 __asm__ ("umull %0,%1,%2,%3" : "=&r" (xl), "=&r" (xh) : "r" (a), "r" (b)) 544 #define smul_ppmm(xh, xl, a, b) \ argument 545 __asm__ ("smull %0,%1,%2,%3" : "=&r" (xl), "=&r" (xh) : "r" (a), "r" (b)) 760 #define umul_ppmm(xh, xl, m0, m1) \ argument 766 (xh) = __x.__i.__h; (xl) = __x.__i.__l; \ [all …]
|
| /netbsd/src/external/lgpl3/gmp/dist/ |
| D | longlong.h | 395 #define umul_ppmm(xh, xl, m0, m1) \ argument 399 : "=r" (xl) \ 515 #define umul_ppmm(xh, xl, a, b) \ argument 531 : "=&r" ((USItype) (xh)), "=r" ((USItype) (xl)), \ 544 #define umul_ppmm(xh, xl, a, b) \ argument 545 __asm__ ("umull %0,%1,%2,%3" : "=&r" (xl), "=&r" (xh) : "r" (a), "r" (b)) 546 #define smul_ppmm(xh, xl, a, b) \ argument 547 __asm__ ("smull %0,%1,%2,%3" : "=&r" (xl), "=&r" (xh) : "r" (a), "r" (b)) 762 #define umul_ppmm(xh, xl, m0, m1) \ argument 768 (xh) = __x.__i.__h; (xl) = __x.__i.__l; \ [all …]
|
| /netbsd/src/crypto/external/bsd/openssh/dist/ |
| D | blowfish.c | 73 Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) in Blowfish_encipher() argument 80 Xl = *xl; in Blowfish_encipher() 93 *xl = Xr ^ p[17]; in Blowfish_encipher() 98 Blowfish_decipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) in Blowfish_decipher() argument 105 Xl = *xl; in Blowfish_decipher() 118 *xl = Xr ^ p[0]; in Blowfish_decipher()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | wide-int.h | 1948 unsigned HOST_WIDE_INT xl = xi.to_uhwi (); 1950 return xl < yl; 2064 HOST_WIDE_INT xl = xi.to_shwi (); 2066 return xl < yl ? -1 : xl > yl; 2100 unsigned HOST_WIDE_INT xl = xi.to_uhwi (); 2102 return xl < yl ? -1 : xl > yl; 2110 unsigned HOST_WIDE_INT xl = xi.val[0]; 2112 return xl < yl ? -1 : xl > yl; 2119 unsigned HOST_WIDE_INT xl = xi.to_uhwi (); 2121 return xl < yl ? -1 : xl > yl; [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/include/ |
| D | longlong.h | 249 # define umul_ppmm(xh, xl, a, b) \ argument 266 "=r" ((USItype) (xl)), \ 273 # define umul_ppmm(xh, xl, a, b) \ argument 277 (xl) = (USItype)__t0; \ 410 #define smul_ppmm(xh, xl, m0, m1) \ argument 418 (xh) = __x.__i.__h; (xl) = __x.__i.__l; \ 432 #define smul_ppmm(xh, xl, m0, m1) \ argument 440 (xh) = __r0; (xl) = __r1; \ 664 #define umul_ppmm(xh, xl, a, b) \ argument 692 "=g" ((USItype) (xl)) \ [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/include/ |
| D | longlong.h | 249 # define umul_ppmm(xh, xl, a, b) \ argument 266 "=r" ((USItype) (xl)), \ 273 # define umul_ppmm(xh, xl, a, b) \ argument 277 (xl) = (USItype)__t0; \ 410 #define smul_ppmm(xh, xl, m0, m1) \ argument 418 (xh) = __x.__i.__h; (xl) = __x.__i.__l; \ 432 #define smul_ppmm(xh, xl, m0, m1) \ argument 440 (xh) = __r0; (xl) = __r1; \ 676 #define umul_ppmm(xh, xl, a, b) \ argument 704 "=g" ((USItype) (xl)) \ [all …]
|
| /netbsd/src/external/gpl3/binutils/dist/include/ |
| D | longlong.h | 249 # define umul_ppmm(xh, xl, a, b) \ argument 266 "=r" ((USItype) (xl)), \ 273 # define umul_ppmm(xh, xl, a, b) \ argument 277 (xl) = (USItype)__t0; \ 410 #define smul_ppmm(xh, xl, m0, m1) \ argument 418 (xh) = __x.__i.__h; (xl) = __x.__i.__l; \ 432 #define smul_ppmm(xh, xl, m0, m1) \ argument 440 (xh) = __r0; (xl) = __r1; \ 676 #define umul_ppmm(xh, xl, a, b) \ argument 704 "=g" ((USItype) (xl)) \ [all …]
|
| /netbsd/src/external/bsd/am-utils/dist/libamu/ |
| D | xutil.c | 713 u_int xl = xlog_level; in switch_option() local 714 int rc = cmdoption(opt, xlog_opt, &xl); in switch_option() 723 if ((xl & XLOG_MANDATORY) != XLOG_MANDATORY) { in switch_option() 725 xl |= XLOG_MANDATORY; in switch_option() 727 if (xlog_level != xl) in switch_option() 728 xlog_level = xl; /* set new flags */ in switch_option()
|
| /netbsd/src/lib/libcrypt/ |
| D | blowfish.c | 80 Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) in Blowfish_encipher() argument 87 Xl = *xl; in Blowfish_encipher() 100 *xl = Xr ^ p[17]; in Blowfish_encipher()
|