Symbol: bot
games/hack/extern.h
342
void bot(void);
games/hack/hack.eat.c
420
bot();
games/hack/hack.main.c
441
bot();
games/hack/hack.pri.c
315
bot();
lib/libc/stdlib/merge.c
269
#define reverse(bot, top) { \
lib/libc/stdlib/merge.c
274
tmp = *bot; *bot++ = *s; *s++ = tmp; \
lib/libc/stdlib/merge.c
277
} while(bot < s); \
lib/libc/time/strftime.c
524
int bot;
lib/libc/time/strftime.c
534
bot = ((yday + 11 - wday) %
lib/libc/time/strftime.c
540
top = bot -
lib/libc/time/strftime.c
550
if (yday >= bot) {
lib/libc/time/strftime.c
551
w = 1 + ((yday - bot) /
lib/libcurses/refresh.c
1588
int n, target, cur_period, bot, top, sc_region;
lib/libcurses/refresh.c
1611
for (bot = __virtscr->maxy - 1; bot >= 0; bot--) {
lib/libcurses/refresh.c
1612
if (__virtscr->alines[bot]->flags & __ISDIRTY &&
lib/libcurses/refresh.c
1613
(__virtscr->alines[bot]->hash != curscr->alines[bot]->hash ||
lib/libcurses/refresh.c
1614
!lineeq(__virtscr->alines[bot]->line,
lib/libcurses/refresh.c
1615
curscr->alines[bot]->line,
lib/libcurses/refresh.c
1619
__virtscr->alines[bot]->flags &= ~__ISDIRTY;
lib/libcurses/refresh.c
1630
for (i = top + 1, j = 0; i < bot; i++) {
lib/libcurses/refresh.c
1647
if (bot < __virtscr->maxy - 1)
lib/libcurses/refresh.c
1665
for (bsize = bot - top; bsize >= THRESH; bsize--) {
lib/libcurses/refresh.c
1666
for (startw = top; startw <= bot - bsize; startw++)
lib/libcurses/refresh.c
1667
for (starts = top; starts <= bot - bsize; starts++) {
lib/libcurses/refresh.c
1691
bsize, THRESH, starts, startw, curw, curs, top, bot);
lib/libcurses/refresh.c
1701
if (bot < curs)
lib/libcurses/refresh.c
1702
bot = curs - 1;
lib/libcurses/refresh.c
1806
sc_region = bot - top + 1;
lib/libcurses/refresh.c
1810
for (j = top; j <= bot; j++) {
lib/libcurses/refresh.c
1820
|| target > bot)
lib/libcurses/refresh.c
1826
(n < 0 && target <= bot && target > bot + n))
lib/libcurses/refresh.c
1880
scrolln(starts, startw, curs, bot, top);
lib/libcurses/refresh.c
1888
scrolln(int starts, int startw, int curs, int bot, int top)
lib/libcurses/refresh.c
1923
top > 3 || bot + 3 < __virtscr->maxy) &&
lib/libcurses/refresh.c
1926
tputs(tiparm(change_scroll_region, top, bot),
lib/libcurses/refresh.c
1930
__mvcur(0, 0, bot, 0, 1);
lib/libcurses/refresh.c
1939
__mvcur(bot, 0, 0, 0, 1);
lib/libcurses/refresh.c
1947
__mvcur(oy, ox, bot, 0, 1);
lib/libcurses/refresh.c
1962
__mvcur(oy, ox, bot, 0, 1);
lib/libcurses/refresh.c
1970
__mvcur(top, 0, bot - n + 1, 0, 1);
lib/libcurses/refresh.c
1980
__mvcur(bot - n + 1, 0, oy, ox, 1);
lib/libcurses/refresh.c
1993
bot + 3 < __virtscr->maxy) && scroll_reverse != NULL)))
lib/libcurses/refresh.c
1995
tputs(tiparm(change_scroll_region, top, bot),
lib/libcurses/refresh.c
2016
__mvcur(oy, ox, bot + n + 1, 0, 1);
lib/libcurses/refresh.c
2017
if (parm_rindex != NULL && bot == __virtscr->maxy)
lib/libcurses/refresh.c
2030
bot == __virtscr->maxy)
lib/libcurses/refresh.c
2040
__mvcur(bot + n + 1, 0, top, 0, 1);
sys/lib/libsa/bootp.c
139
if (!bot)
sys/lib/libsa/bootp.c
140
bot = getsecs();
sys/lib/libsa/bootp.c
292
bp->bp_secs = htons((u_short)(getsecs() - bot));
sys/lib/libsa/bootp.c
66
static satime_t bot;
sys/netatalk/at_control.c
711
aa_dorangeroute(struct ifaddr *ifa, u_int bot, u_int top, int cmd)
sys/netatalk/at_control.c
721
if (bot > top)
sys/netatalk/at_control.c
731
while (bot <= top) {
sys/netatalk/at_control.c
733
while (((bot & ~mask1) >= bot)
sys/netatalk/at_control.c
734
&& ((bot | mask1) <= top)) {
sys/netatalk/at_control.c
740
addr.s_net = htons(bot);
sys/netatalk/at_control.c
750
bot = (bot | mask1) + 1;
usr.bin/checknr/checknr.c
626
int top, bot; /* boundaries of bin search, inclusive */
usr.bin/checknr/checknr.c
629
bot = 0;
usr.bin/checknr/checknr.c
630
while (top >= bot) {
usr.bin/checknr/checknr.c
631
mid = (top+bot)/2;
usr.bin/checknr/checknr.c
639
bot = mid + 1;
usr.bin/checknr/checknr.c
643
slot = bot; /* place it would have gone */
usr.bin/sort/msort.c
308
int mid, top = ttop, bot = 0, cmpv = 1;
usr.bin/sort/msort.c
310
for (mid = top / 2; bot + 1 != top; mid = (bot + top) / 2) {
usr.bin/sort/msort.c
333
bot = mid;
usr.bin/sort/msort.c
340
if (bot != 0) {
usr.bin/sort/msort.c
341
memmove(flist, flist + 1, bot * sizeof(MFILE *));
usr.bin/sort/msort.c
342
flist[bot] = rec;
usr.bin/sort/msort.c
349
if (bot == 0 && cmpv != 0) {
usr.bin/sort/msort.c
356
bot = -1;
usr.bin/sort/msort.c
358
bot++;
usr.bin/sort/msort.c
359
memmove(flist + bot + 1, flist + bot, (ttop - bot) * sizeof(MFILE *));
usr.bin/sort/msort.c
360
flist[bot] = rec;
usr.bin/vmstat/vmstat.c
871
pct(u_long top, u_long bot)
usr.bin/vmstat/vmstat.c
875
if (bot == 0)
usr.bin/vmstat/vmstat.c
877
ans = (long)((quad_t)top * 100 / bot);
usr.bin/vmstat/vmstat.c
881
#define PCT(top, bot) (int)pct((u_long)(top), (u_long)(bot))