/src/games/hack/ |
hack.potion.c | 92 if (u.ustr < u.ustrmax) { 93 u.ustr = u.ustrmax; 195 if (u.ustr >= 118) 197 if (u.ustr > 17) 198 u.ustr += rnd(118 - u.ustr); 200 u.ustr++; 201 if (u.ustr > u.ustrmax) 202 u.ustrmax = u.ustr; 373 if (u.ustr < u.ustrmax [all...] |
hack.eat.c | 150 if (u.ustr < 118) 151 u.ustr += rnd(((u.ustr < 17) ? 19 : 118) - u.ustr); 152 if (u.ustr > u.ustrmax) 153 u.ustrmax = u.ustr; 231 tmp = 10 + rn2(1 + 500 / ((int) (u.ulevel + u.ustr))); 323 if (u.ustr < u.ustrmax) 324 u.ustr++; 428 else if (newhs < WEAK && u.uhs >= WEAK && u.ustr < u.ustrmax [all...] |
hack.u_init.c | 269 u.ustr = u.ustrmax = 18; 277 u.ustr = u.ustrmax = 8; 288 u.ustr = u.ustrmax = 16; 296 u.ustr = u.ustrmax = 10; 304 u.ustr = u.ustrmax = 10; 310 u.ustr = u.ustrmax = 17; 315 u.ustr = u.ustrmax = 16; 320 u.ustr += dr; 329 while (inv_weight() > 0 && u.ustr < 118) 330 u.ustr++, u.ustrmax++ [all...] |
hack.do_wear.c | 314 u.ustr += otmp->spe; 316 if (u.ustr > 118) 317 u.ustr = 118; 354 u.ustr -= obj->spe; 356 if (u.ustr > 118) 357 u.ustr = 118;
|
hack.c | 840 if (u.ustr == 3) 842 else if (u.ustr < 6) 844 else if (u.ustr < 8) 846 else if (u.ustr < 17) 848 else if (u.ustr < 69) 850 else if (u.ustr < 118) 859 if (u.ustr < 6) 861 else if (u.ustr < 16) 863 else if (u.ustr < 18) 865 else if (u.ustr == 18 [all...] |
hack.h | 168 schar ustr,ustrmax; member in struct:you
|
hack.pri.c | 732 if (u.ustr > 18) { 733 if (u.ustr > 117) 738 "18/%02d", u.ustr - 18); 743 "%-2d ", u.ustr);
|
hack.trap.c | 437 if (u.uhunger <= 100 || u.ustr < 6) {
|
/src/tools/compat/ |
snprintf.c | 649 unsigned char *ustr = (unsigned char *)str; local in function:vsnprintf 653 state.str = ustr; 654 state.s = ustr; 655 state.theend = ustr + sz - (sz > 0);
|
/src/usr.bin/pkill/ |
pkill.c | 471 const char *ustr; local in function:usage 478 ustr = "[-Lfilnqvx] [-d delim]"; 480 ustr = "[-signal] [-Lfilnvx]"; 486 getprogname(), ustr);
|
/src/sys/fs/ntfs/ |
ntfs_subr.c | 664 ntfs_uastricmp(struct ntfsmount *ntmp, const wchar *ustr, size_t ustrlen, 671 res = (*ntmp->ntm_wcmp)(NTFS_TOUPPER(ustr[i]), 689 ntfs_uastrcmp(struct ntfsmount *ntmp, const wchar *ustr, size_t ustrlen, 696 res = (*ntmp->ntm_wcmp)(ustr[i],
|
/src/usr.bin/make/ |
var.c | 1854 const unsigned char *ustr = (const unsigned char *)str; local in function:Hash 1869 k = ((uint32_t)ustr[3] << 24) | 1870 ((uint32_t)ustr[2] << 16) | 1871 ((uint32_t)ustr[1] << 8) | 1872 (uint32_t)ustr[0]; 1874 ustr += 4; 1877 k |= (uint32_t)ustr[2] << 16; 1880 k |= (uint32_t)ustr[1] << 8; 1883 k |= (uint32_t)ustr[0];
|
/src/sys/kern/ |
kern_ktrace.c | 909 ktruser(const char *id, void *addr, size_t len, int ustr) 927 if (ustr) {
|