/src/sys/lib/libsa/ |
bootp.c | 66 static satime_t bot; variable in typeref:typename:satime_t 139 if (!bot) 140 bot = getsecs(); 292 bp->bp_secs = htons((u_short)(getsecs() - bot));
|
/src/usr.bin/checknr/ |
checknr.c | 626 int top, bot; /* boundaries of bin search, inclusive */ local in function:binsrch 629 bot = 0; 630 while (top >= bot) { 631 mid = (top+bot)/2; 639 bot = mid + 1; 643 slot = bot; /* place it would have gone */
|
/src/usr.bin/sort/ |
msort.c | 308 int mid, top = ttop, bot = 0, cmpv = 1; local in function:insert 310 for (mid = top / 2; bot + 1 != top; mid = (bot + top) / 2) { 333 bot = mid; 340 if (bot != 0) { 341 memmove(flist, flist + 1, bot * sizeof(MFILE *)); 342 flist[bot] = rec; 349 if (bot == 0 && cmpv != 0) { 356 bot = -1; 358 bot++ [all...] |
/src/games/hack/ |
hack.pri.c | 315 bot(); 702 /* 100 suffices for bot(); no relation with COLNO */ 714 bot(void) function in typeref:typename:void
|
/src/lib/libc/time/ |
strftime.c | 524 int bot; local in function:_fmt 534 bot = ((yday + 11 - wday) % 540 top = bot - 550 if (yday >= bot) { 551 w = 1 + ((yday - bot) /
|
/src/lib/libcurses/ |
refresh.c | 1557 int n, target, cur_period, bot, top, sc_region; local in function:quickch 1580 for (bot = __virtscr->maxy - 1; bot >= 0; bot--) { 1581 if (__virtscr->alines[bot]->flags & __ISDIRTY && 1582 (__virtscr->alines[bot]->hash != curscr->alines[bot]->hash || 1583 !lineeq(__virtscr->alines[bot]->line, 1584 curscr->alines[bot]->line, 1588 __virtscr->alines[bot]->flags &= ~__ISDIRTY [all...] |