/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/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/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...] |
/src/sys/netatalk/ |
at_control.c | 698 * Add a route for a range of networks from bot to top - 1. 711 aa_dorangeroute(struct ifaddr *ifa, u_int bot, u_int top, int cmd) 721 if (bot > top) 731 while (bot <= top) { 733 while (((bot & ~mask1) >= bot) 734 && ((bot | mask1) <= top)) { 740 addr.s_net = htons(bot); 750 bot = (bot | mask1) + 1 [all...] |
/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/lib/libc/stdlib/ |
merge.c | 269 #define reverse(bot, top) { \ 274 tmp = *bot; *bot++ = *s; *s++ = tmp; \ 277 } while(bot < s); \
|
/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/games/hack/ |
hack.pri.c | 315 bot(); 702 /* 100 suffices for bot(); no relation with COLNO */ 714 bot(void) function in typeref:typename:void
|
extern.h | 342 void bot(void);
|
hack.eat.c | 420 bot();
|
hack.main.c | 441 bot();
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
aspeed-bmc-ibm-everest.dts | 530 label = "cablecard-c01-cxp-bot"; 596 label = "cablecard-c02-cxp-bot"; 662 label = "cablecard-c03-cxp-bot"; 826 label = "cablecard-c04-cxp-bot"; 892 label = "cablecard-c05-cxp-bot"; 958 label = "cablecard-c06-cxp-bot"; 1024 label = "cablecard-c07-cxp-bot"; 1103 label = "cablecard-c08-cxp-bot"; 1169 label = "cablecard-c09-cxp-bot"; 1235 label = "cablecard-c10-cxp-bot"; [all...] |
/src/usr.bin/vmstat/ |
vmstat.c | 871 pct(u_long top, u_long bot) 875 if (bot == 0) 877 ans = (long)((quad_t)top * 100 / bot); 881 #define PCT(top, bot) (int)pct((u_long)(top), (u_long)(bot))
|