| /netbsd-src/external/lgpl3/gmp/dist/tests/ |
| H A D | refmpf.c | 31 mp_ptr ut, vt, wt; in refmpf_add() local 42 wt = TMP_ALLOC_LIMBS (size + 1); in refmpf_add() 43 MPN_COPY (wt, PTR (v), size); in refmpf_add() 51 wt = TMP_ALLOC_LIMBS (size + 1); in refmpf_add() 52 MPN_COPY (wt, PTR (u), size); in refmpf_add() 74 wt = TMP_ALLOC_LIMBS (size + 1); in refmpf_add() 84 cy = mpn_add_n (wt, ut, vt, size); in refmpf_add() 85 wt[size] = cy; in refmpf_add() 92 wt += size - PREC (w); in refmpf_add() 95 MPN_COPY (PTR (w), wt, size); in refmpf_add() [all …]
|
| /netbsd-src/usr.sbin/wiconfig/ |
| H A D | wiconfig.c | 622 struct wi_table *wt; in wi_optlookup() local 624 for (wt = table; wt->wi_type != 0; wt++) in wi_optlookup() 625 if (wt->wi_opt == opt) in wi_optlookup() 626 return (wt); in wi_optlookup() 821 struct wi_table *wt, **table; in main() local 850 wt = NULL; /* XXXGCC -Wuninitialized */ in main() 852 if ((wt = wi_optlookup(*table, ch)) != NULL) { in main() 853 SET_OPERAND(wt->wi_optval, wt->wi_desc); in main() 856 if (wt == NULL) in main() 884 for (wt = *table; wt->wi_code != WI_NONE; wt++) in main() [all …]
|
| /netbsd-src/external/bsd/ipf/dist/iplang/ |
| H A D | iplang_l.l | 227 struct lwordtab *wt; 237 for (wt = words; wt->word; wt++) 238 if (!strcasecmp(wt->word, (char *)yytext)) 239 return next_state(wt->state, wt->next);
|
| /netbsd-src/games/dab/ |
| H A D | main.cc | 104 size_t ny, nx, nn = 1, wt = 0; in main() local 115 wt++; in main() 181 if (wt) in main() 185 if (wt == 0) in main()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsMSAInstrFormats.td | 127 bits<5> wt; 133 let Inst{20-16} = wt; 140 bits<5> wt; 146 let Inst{20-16} = wt; 399 bits<5> wt; 404 let Inst{20-16} = wt; 412 bits<5> wt; 416 let Inst{20-16} = wt; 422 bits<5> wt; 425 let Inst{20-16} = wt;
|
| H A D | MSA.txt | 72 bmz.v wd, ws, wt/i8 -> (vselect wt/i8, wd, ws) 73 bmnz.v wd, ws, wt/i8 -> (vselect wt/i8, ws, wd) 74 bsel.v wd, ws, wt/i8 -> (vselect wd, wt/i8, ws)
|
| H A D | MipsMSAInstrInfo.td | 367 def vbclr_b : PatFrag<(ops node:$ws, node:$wt), 368 (and node:$ws, (vnot (shl vsplat_imm_eq_1, node:$wt)))>; 369 def vbclr_h : PatFrag<(ops node:$ws, node:$wt), 370 (and node:$ws, (vnot (shl vsplat_imm_eq_1, node:$wt)))>; 371 def vbclr_w : PatFrag<(ops node:$ws, node:$wt), 372 (and node:$ws, (vnot (shl vsplat_imm_eq_1, node:$wt)))>; 373 def vbclr_d : PatFrag<(ops node:$ws, node:$wt), 375 node:$wt)))>; 377 def vbneg_b : PatFrag<(ops node:$ws, node:$wt), 378 (xor node:$ws, (shl vsplat_imm_eq_1, node:$wt))>; [all …]
|
| /netbsd-src/external/bsd/unbound/dist/util/ |
| H A D | log.c | 246 WORD wt = EVENTLOG_ERROR_TYPE; in log_vmsg() local 249 wt=EVENTLOG_INFORMATION_TYPE; in log_vmsg() 252 wt=EVENTLOG_WARNING_TYPE; in log_vmsg() 256 wt=EVENTLOG_SUCCESS; in log_vmsg() 262 ReportEvent(s, wt, 0, tp, NULL, 1, 0, &str, NULL); in log_vmsg()
|
| /netbsd-src/games/hack/ |
| H A D | hack.mkobj.c | 201 int wt = objects[obj->otyp].oc_weight; in weight() local 202 return (wt ? wt * obj->quan : (obj->quan + 1) / 2); in weight()
|
| H A D | hack.c | 419 int wt; in pickup() local 492 wt = inv_weight() + obj->owt; in pickup() 493 if (wt > 0) { in pickup() 535 if (wt > -5) in pickup() 933 int wt = (u.ugold + 500) / 1000; in inv_weight() local 947 wt += otmp->owt; in inv_weight() 950 return (wt - carrcap); in inv_weight()
|
| H A D | def.objects.h | 162 #define WEAPON(name,prob,wt,ldam,sdam) { name, NULL, NULL, 1, 0 /*%%*/,\ argument 163 WEAPON_SYM, prob, 0, wt, ldam, sdam, 0 }
|
| H A D | hack.pager.c | 442 child(int wt) in child() argument 472 if (wt) in child()
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | varied.script | 5 0 string/wt #!\ a 15 0 string/wt #!\ /usr/bin/env a
|
| /netbsd-src/games/snake/snake/ |
| H A D | snake.c | 605 int w, i, wt[8]; in chase() local 625 wt[i] = 0; in chase() 639 wt[i] = i == w ? loot / 10 : 1; in chase() 641 wt[i] += loot / 20; in chase() 644 w += wt[i]; in chase() 647 if (vp < wt[i]) in chase() 650 vp -= wt[i]; in chase() 654 while (wt[i] == 0) in chase()
|
| /netbsd-src/external/gpl2/gmake/dist/glob/ |
| H A D | fnmatch.c | 338 wctype_t wt; local 368 wt = IS_CHAR_CLASS (str); 369 if (wt == 0) 373 if (__iswctype (__btowc ((unsigned char) *n), wt))
|
| /netbsd-src/external/gpl3/binutils/dist/gprofng/src/ |
| H A D | FileData.h | 135 addWriteEvent (hrtime_t wt, int64_t nb) in addWriteEvent() argument 137 writeTime += wt; in addWriteEvent() 256 void setWriteStat (hrtime_t wt, int64_t nb);
|
| H A D | FileData.cc | 325 FileData::setWriteStat (hrtime_t wt, int64_t nb) in setWriteStat() argument 327 if (wSlowestBytes < wt) in setWriteStat() 328 wSlowestBytes = wt; in setWriteStat()
|
| /netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/ |
| H A D | FileData.h | 135 addWriteEvent (hrtime_t wt, int64_t nb) in addWriteEvent() argument 137 writeTime += wt; in addWriteEvent() 256 void setWriteStat (hrtime_t wt, int64_t nb);
|
| H A D | FileData.cc | 325 FileData::setWriteStat (hrtime_t wt, int64_t nb) in setWriteStat() argument 327 if (wSlowestBytes < wt) in setWriteStat() 328 wSlowestBytes = wt; in setWriteStat()
|
| /netbsd-src/sys/arch/bebox/conf/ |
| H A D | majors.bebox | 16 device-major wt char 10 block 3 wt
|
| /netbsd-src/sys/arch/prep/conf/ |
| H A D | majors.prep | 16 device-major wt char 10 block 3 wt
|
| /netbsd-src/external/gpl2/xcvs/dist/lib/ |
| H A D | fnmatch_loop.c | 248 wctype_t wt; in FCT() local 278 wt = IS_CHAR_CLASS (str); in FCT() 279 if (wt == 0) in FCT() 287 if (_ISCTYPE ((UCHAR) *n, wt)) in FCT() 290 if (ISWCTYPE (BTOWC ((UCHAR) *n), wt)) in FCT()
|
| /netbsd-src/external/gpl3/gdb/dist/gnulib/import/ |
| H A D | fnmatch_loop.c | 273 wctype_t wt; in FCT() local 301 wt = IS_CHAR_CLASS (str); in FCT() 302 if (wt == 0) in FCT() 310 if (_ISCTYPE ((UCHAR) *n, wt)) in FCT() 313 if (iswctype (BTOWC ((UCHAR) *n), wt)) in FCT()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/recipes/04-test_pem_data/ |
| H A D | dsa-threecolumn.pem | 203 wt/ 377 5wt
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/04-test_pem_reading_data/ |
| H A D | dsa-threecolumn.pem | 203 wt/ 377 5wt
|