| /mirbsd/src/lib/libocurses/ |
| D | refresh.c | 447 int n, target, cur_period, bot, top, sc_region; local 466 for (bot = win->maxy - 1; bot >= 0; bot--) 467 if (win->lines[bot]->flags & __FORCEPAINT || 468 win->lines[bot]->hash != curscr->lines[bot]->hash 469 || memcmp(win->lines[bot]->line, 470 curscr->lines[bot]->line, 474 win->lines[bot]->flags &= ~__ISDIRTY; 483 if (bot < win->maxy - 1) 498 for (bsize = bot - top; bsize >= THRESH; bsize--) { 499 for (startw = top; startw <= bot - bsize; startw++) [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | block.c | 78 int bot, top, half; in blockvector_for_pc_sect() local 95 bot = 0; in blockvector_for_pc_sect() 98 while (top - bot > 1) in blockvector_for_pc_sect() 100 half = (top - bot + 1) >> 1; in blockvector_for_pc_sect() 101 b = BLOCKVECTOR_BLOCK (bl, bot + half); in blockvector_for_pc_sect() 103 bot += half; in blockvector_for_pc_sect() 105 top = bot + half; in blockvector_for_pc_sect() 110 while (bot >= 0) in blockvector_for_pc_sect() 112 b = BLOCKVECTOR_BLOCK (bl, bot); in blockvector_for_pc_sect() 116 *pindex = bot; in blockvector_for_pc_sect() [all …]
|
| /mirbsd/src/usr.bin/sort/ |
| D | msort.c | 198 int top, mid, bot = 0, cmpv = 1; in insert() local 201 for (mid = top/2; bot +1 != top; mid = (bot+top)/2) { in insert() 206 bot = mid; in insert() 209 bot = mid - 1; in insert() 215 if (!bot && cmpv) in insert() 221 if (bot) in insert() 222 memmove(flist, flist+1, bot * sizeof(MFILE **)); in insert() 223 flist[bot] = *rec; in insert() 229 if (!bot && !(UNIQUE && !cmpv)) { in insert() 232 bot = -1; in insert() [all …]
|
| /mirbsd/src/lib/libncurses/src/ncurses/tty/ |
| D | tty_update.c | 1532 scroll_csr_forward(int n, int top, int bot, int miny, int maxy, NCURSES_CH_T blank) in scroll_csr_forward() argument 1536 if (n == 1 && scroll_forward && top == miny && bot == maxy) { in scroll_csr_forward() 1537 GoTo(bot, 0); in scroll_csr_forward() 1541 } else if (n == 1 && delete_line && bot == maxy) { in scroll_csr_forward() 1546 } else if (parm_index && top == miny && bot == maxy) { in scroll_csr_forward() 1547 GoTo(bot, 0); in scroll_csr_forward() 1551 } else if (parm_delete_line && bot == maxy) { in scroll_csr_forward() 1556 } else if (scroll_forward && top == miny && bot == maxy) { in scroll_csr_forward() 1557 GoTo(bot, 0); in scroll_csr_forward() 1563 } else if (delete_line && bot == maxy) { in scroll_csr_forward() [all …]
|
| D | hashmap.c | 400 _nc_scroll_oldhash(int n, int top, int bot) in _nc_scroll_oldhash() argument 408 size = sizeof(*oldhash) * (bot - top + 1 - abs(n)); in _nc_scroll_oldhash() 411 for (i = bot; i > bot - n; i--) in _nc_scroll_oldhash()
|
| /mirbsd/src/usr.bin/window/ |
| D | wwupdate.c | 47 wwupdate1(top, bot) in wwupdate1() argument 58 char *t1 = wwtouched + top, *t2 = wwtouched + bot; in wwupdate1() 67 scan_bot = bot = t2 - wwtouched + 1; in wwupdate1() 163 bot = scan_bot; in wwupdate1() 171 bot = scan_bot; in wwupdate1() 191 for (i = top, touched = &wwtouched[i], upd = &wwupd[i]; i < bot; in wwupdate1()
|
| D | xx.c | 152 xxscroll(dir, top, bot) in xxscroll() argument 157 xp->arg1 == top && xp->arg2 == bot && in xxscroll() 166 xp->arg2 = bot; in xxscroll()
|
| D | ttzapple.c | 314 zz_setscroll(top, bot) in zz_setscroll() argument 318 ttputc(bot + ' '); in zz_setscroll() 320 tt.tt_scroll_bot = bot; in zz_setscroll()
|
| D | ttgeneric.c | 390 gen_setscroll(top, bot) in gen_setscroll() argument 392 tttgoto(gen_CS, bot, top); in gen_setscroll() 394 tt.tt_scroll_bot = bot; in gen_setscroll()
|
| /mirbsd/src/usr.bin/checknr/ |
| D | checknr.c | 593 int top, bot; /* boundaries of bin search, inclusive */ in binsrch() local 596 bot = 0; in binsrch() 597 while (top >= bot) { in binsrch() 598 mid = (top+bot)/2; in binsrch() 606 bot = mid + 1; in binsrch() 610 slot = bot; /* place it would have gone */ in binsrch()
|
| /mirbsd/src/sys/netatalk/ |
| D | at_control.c | 560 aa_dorangeroute(struct ifaddr *ifa, u_int bot, u_int top, int cmd) in aa_dorangeroute() argument 570 if (bot > top) return (EINVAL); in aa_dorangeroute() 579 while (bot <= top) { in aa_dorangeroute() 581 while ((( bot & ~mask1) >= bot) in aa_dorangeroute() 582 && (( bot | mask1) <= top)) { in aa_dorangeroute() 588 addr.s_net = htons(bot); in aa_dorangeroute() 598 bot = (bot | mask1) + 1; in aa_dorangeroute()
|
| /mirbsd/src/sys/lib/libsa/ |
| D | bootp.c | 56 static time_t bot; variable 82 if (!bot) in bootp() 83 bot = getsecs(); in bootp() 136 bp->bp_secs = htons((u_short)(getsecs() - bot)); in bootpsend()
|
| /mirbsd/src/lib/libc/stdlib/ |
| D | merge.c | 232 #define reverse(bot, top) { \ argument 237 tmp = *bot; *bot++ = *s; *s++ = tmp; \ 240 } while(bot < s); \
|
| /mirbsd/src/lib/libc/time/ |
| D | strftime.c | 420 int bot; local 430 bot = ((yday + 11 - wday) % 436 top = bot - 446 if (yday >= bot) { 447 w = 1 + ((yday - bot) /
|
| /mirbsd/src/usr.bin/vmstat/ |
| D | vmstat.c | 507 pct(long top, long bot) in pct() argument 511 if (bot == 0) in pct() 513 ans = (quad_t)top * 100 / bot; in pct() 517 #define PCT(top, bot) pct((long)(top), (long)(bot)) argument
|
| /mirbsd/src/share/tmac/tab/ |
| D | code.x-ecs | 248 "\001|", /*left bot of big brace*/ 250 "\001|", /*right bot of big brace*/
|
| D | code.300 | 250 "\001|", /*right bot*/ 254 "\001|", /*left floor (left bot of big sq bract)*/
|
| D | code.xerox | 250 "\001|", /*right bot*/ 254 "\001|", /*left floor (left bot of big sq bract)*/
|
| D | code.aj833 | 248 "\001\200|\201\306`\241\346", /*left bot of big brace*/ 250 "\001\200|\306\241'\201\346", /*right bot of big brace*/
|
| D | code.itoh | 252 "\001\342\033\0436\b\304?\033\044\342\b", /*right bot*/ 256 "\001\342\033\0436\b\304:\033\044\342\b", /*left floor (left bot of big sq brkt)*/
|
| D | code.nec | 248 "\001|", /*left bot of big brace*/ 250 "\001|", /*right bot of big brace*/
|
| /mirbsd/src/usr.bin/less/ |
| D | screen.c | 2027 short bot, right; in clear_eol() 2035 _gettextwindow(&top, &left, &bot, &right); in clear_eol() 2046 _settextwindow(top, left, bot, right); in clear_eol()
|
| /mirbsd/src/lib/libncurses/src/ncurses/ |
| D | curses.priv.h | 1130 extern NCURSES_EXPORT(void) _nc_scroll_oldhash (int n, int top, int bot);
|
| /mirbsd/src/gnu/usr.bin/binutils/gas/doc/ |
| D | c-m68hc11.texi | 146 brclr *bot #8 foo
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/config/djgpp/ |
| D | fnchange.lst | 313 @V@/readline/config.h.bot @V@/readline/config.h-bot
|